Author |
Message |
Topic: Version 0.5 |
John
Replies: 4
Views: 21101
|
Forum: Juno Posted: Wed Jun 10, 2009 9:45 am Subject: Version 0.5 |
I decided to plunge ahead and make 0.5 compatible with D 2.0. Rather than maintain two code branches, I've used version blocks (works OK, but the string mixins feel like hacks).
So it's on the wiki ... |
Topic: Version 0.5 |
John
Replies: 4
Views: 21101
|
Forum: Juno Posted: Tue Jun 09, 2009 3:39 pm Subject: Version 0.5 |
Can we still use files in the "tlbimpd 0.4" style with Juno 0.5 or did the format change?
Modules generated by tlbimpd 0.4 are compatible with Juno 0.5.
which version(s) of DMD is Juno ... |
Topic: Version 0.5 |
John
Replies: 4
Views: 21101
|
Forum: Juno Posted: Tue Jun 09, 2009 5:56 am Subject: Version 0.5 |
Juno 0.5 is now available from the wiki: http://www.dsource.org/projects/juno/wiki.
(I know I promised a 0.4.1 release, but I thought I might as well add things that had been in the works for some ... |
Topic: Code from .3 fails with .4 |
John
Replies: 11
Views: 30428
|
Forum: Juno Posted: Sat Apr 11, 2009 2:39 am Subject: Code from .3 fails with .4 |
I believe I've seen that same "(uuidofT!(IUnknown))" error message, but I wasn't able to figure out how to change the Juno source to get it to compile.
Open juno.com.core, and comment out ... |
Topic: Code from .3 fails with .4 |
John
Replies: 11
Views: 30428
|
Forum: Juno Posted: Fri Apr 10, 2009 4:47 pm Subject: Code from .3 fails with .4 |
Here's a temporary fix until 0.4.1 comes along. I messed up 0.4. Sorry.
Open juno.com.client and overwrite DispatchObject with the code below, then recompile. I've also included an Excel example th ... |
Topic: Code from .3 fails with .4 |
John
Replies: 11
Views: 30428
|
Forum: Juno Posted: Fri Apr 10, 2009 2:39 am Subject: Code from .3 fails with .4 |
Sorry for the pain, chaps! I'll release 0.4.1 in a few days, which I hope will address these issues.
John. |
Topic: DLL Help |
John
Replies: 3
Views: 19414
|
Forum: Juno Posted: Mon Oct 13, 2008 2:53 am Subject: DLL Help |
Add the following line near the top of xtranslate.d:
alias uint OLE_COLOR;
Is there any documentation that I can use to understand what you did?
It's not that different from how you'd traditi ... |
Topic: DLL Help |
John
Replies: 3
Views: 19414
|
Forum: Juno Posted: Sat Oct 11, 2008 4:30 am Subject: DLL Help |
Hi Jose,
DllImport is for calling DLL functions dynamically, not for working with COM objects.
But you imported the type library - so you're halfway there. Here's a translation of the VB code (a ... |
Topic: Version 0.4 |
John
Replies: 0
Views: 13199
|
Forum: Juno Posted: Tue Mar 18, 2008 7:50 am Subject: Version 0.4 |
The latest release is up at the [url=http://dsource.org/projects/juno]Juno Wiki.
New to this release is an XmlLite wrapper (Vista/IE7 or redistributable library required), which provides a streamin ... |
Topic: Beginner tries to compile juno |
John
Replies: 1
Views: 15488
|
Forum: Juno Posted: Mon Mar 10, 2008 7:49 am Subject: Beginner tries to compile juno |
I've never used dsss - however, it should be trivial to build.
I suspect the problem is that the Microsoft librarian is being used instead of the Digital Mars librarian. Both are named "lib.ex ... |
Topic: How to get an object already running with juno |
John
Replies: 10
Views: 31302
|
Forum: Juno Posted: Wed Feb 06, 2008 2:28 am Subject: How to get an object already running with juno |
Here's the problem line from coCreate in juno.com.core:
else static if (is(U == string)) {
I'm sure it used to work. Anyway, it should fix things if you change the line to this:
else static i ... |
Topic: How to get an object already running with juno |
John
Replies: 10
Views: 31302
|
Forum: Juno Posted: Tue Feb 05, 2008 7:53 am Subject: How to get an object already running with juno |
How can I translate this to Juno?
Have you tried yourself? Didn't it work? Why not post your own attempt instead of asking me to do all the work? Rather lazy...
As I said before, getActiveObject ... |
Topic: More Windows COM problems... :-) |
John
Replies: 16
Views: 48762
|
Forum: Juno Posted: Tue Jan 15, 2008 3:33 am Subject: More Windows COM problems... :-) |
and somehow, now it works
Hurrah! Note that "get" is a property accessor, which COM treats differently to a function call (unlike D). Your original code used "get", I notice. (I ... |
Topic: More Windows COM problems... :-) |
John
Replies: 16
Views: 48762
|
Forum: Juno Posted: Mon Jan 14, 2008 4:26 am Subject: More Windows COM problems... :-) |
The code looks OK. From the error you reported earlier, I thought you might have wrapped oDTD in DispatchObject, but you haven't. Which begs the question - why are you even getting this error:
Erro ... |
Topic: More Windows COM problems... :-) |
John
Replies: 16
Views: 48762
|
Forum: Juno Posted: Fri Jan 11, 2008 5:09 am Subject: More Windows COM problems... :-) |
Error: identifier 'IDtdSettingsFile' is not defined
Of course - silly me. Ignore that idea.
Error: no property 'vt' for type 'juno.com.client.DispatchObject'
When did oDTD become a DispatchOb ... |
|