Hi Guys, Here's a problem I've run across. The following interface: [ object, uuid(bef6997d-5684-49c6-9390-a5077115e0d0) ] interface ISettingsDialog : IUnknown...
23
egroups@...
Jan 2, 2001 5:24 pm
After looking through the ATL archives, I've found out that a) The appropriate definitions for HWND do not make it into the type library due to a bug in MIDL ...
24
Sofus Mortensen
sofus@...
Jan 2, 2001 7:35 pm
Thanks for the report, Paul. The syntax errors you got are caused by a bug in tlb2h.exe (alpha 4). alpha 4 has a problem with structs/unions that have...
25
egroups@...
Jan 2, 2001 8:09 pm
Hi Guys, OK - now I've found a proper bug for you ;-) safearray.h(71) has: template<> struct sa_traits<signed char> : public basic_sa_traits<short, VT_I1> {}; ...
26
Sofus Mortensen
sofus@...
Jan 2, 2001 8:49 pm
Thanks! Best regards, Sofus Mortensen http://www.lambdasoft.dk...
27
egroups@...
Jan 4, 2001 10:59 pm
bstr.h has two minor bugs. a BSTR can be "0" as you know. However, the conversions to std::string and std::wstring do not take this into account. So currently,...
28
tlb2h@egroups.com
Jan 4, 2001 11:05 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the tlb2h group. File : /bstr.h Uploaded...
29
Sofus Mortensen
sofus@...
Jan 6, 2001 11:31 pm
Does anyone have any ideas for Comet sample projects? I am looking for an idea for a non-GUI components with some practical use. It must not be too complex in...
30
egroups@...
Jan 10, 2001 7:44 pm
Here's a problem I've found lately: The following interface: interface ICoCreateThreadFactory : IUnknown { HRESULT CoCreateInstanceThread([in] REFCLSID rclsid,...
31
Sofus Mortensen
sofus@...
Jan 16, 2001 10:18 pm
Hi, I have just uploaded Comet 1 alpha 5 at http://www.lambdasoft.dk/comet/download.htm Most remarkable addition since alpha 4 is the support implementing ...
32
Michael Geddes
mgeddes@...
Jan 18, 2001 6:56 am
Implementation of Aggregation for objects. Here're some versions of some a5 files that include a preliminary look at how comet might support aggregation of...
33
Sofus Mortensen
sofus@...
Jan 20, 2001 3:44 pm
Hi, I have released the source for tlb2h.exe. You can find on the download page: http://www.lambdasoft.dk/comet/download.htm I am slightly embarrassed over the...
34
Michael Geddes
mgeddes@...
Jan 23, 2001 12:49 am
Compiling with other compilers Helloooo Comet, (Did you guys get Comet ads over there??) Just bare with me... I have a point, and some code. I like the idea...
35
tlb2h@egroups.com
Jan 25, 2001 1:06 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the tlb2h group. File : /introduction.zip...
36
egroups@...
Jan 25, 2001 1:09 am
Hi everyone, The "Introduction to Comet" article that I wrote was quite out of date with the way that Comet works now. I've just finished revising it to be up...
37
Sofus Mortensen
sofus@...
Jan 25, 2001 5:28 pm
... Hi Michael, Could you try resending your email to me? The attachments seems to be broken. I am very interested in getting Comet working with other...
38
Michael Geddes
mgeddes@...
Jan 29, 2001 1:07 am
Sofus, I have uploaded all the files here: http://groups.yahoo.com/group/tlb2h/files/MGeddes/ <http://groups.yahoo.com/group/tlb2h/files/MGeddes/> I don't...
39
tlb2h@yahoogroups.com
Feb 26, 2001 8:09 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the tlb2h group. File :...
40
tlb2h@yahoogroups.com
Feb 26, 2001 8:09 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the tlb2h group. File :...
41
egroups@...
Feb 26, 2001 8:26 am
Hi All, I got sick of Microsoft Visual C++ 6.0 and it's template bugs the other day and downloaded the Intel 5.0 C++ compiler. So far I like what I see! It's...
42
egroups@...
Feb 26, 2001 8:28 am
Grr... You'll have better luck clicking on this link: http://groups.yahoo.com/group/tlb2h/files/PaulHollingsworth/...
43
egroups@...
Feb 27, 2001 5:53 am
Hi All, I have finished merging my Intel patches with the files uploaded by Michael Geddes. The contents of ...
44
egroups@...
Mar 5, 2001 11:07 pm
Hi everyone, Be aware that if you downloaded Comet Alpha 5 since 26th of January, there is a bug in ptr.h which means that the smart pointers do not release...
45
Sofus Mortensen
sofus@...
Mar 6, 2001 7:29 am
Thanks for cathching this one. I am puzzled how the destructor could disappear from Alpha 4 to Alpha 5. This is all very embarrassing! Expect an Alpha 6...
46
Sofus Mortensen
sofus@...
Mar 7, 2001 6:58 pm
I have just uploaded "Comet version 1 alpha 6" to: http://www.lambdasoft.dk/comet/download.htm Best regards, Sofus Mortensen Comet - Grunge free COM...
47
Mikael Lindgren
mikael.smt@...
Mar 14, 2001 12:25 pm
Hi everyone, I've uploaded a modified version of tlb2h.cpp in the MikaelLindgren directory. The code that it produce uses IDispatch's Invoke method to call any...
48
Michael Geddes
mgeddes@...
Mar 15, 2001 2:29 am
I would be very careful with this. It appears that event interfaces should never be defined as Dual Interface. They should either be a 'dispinterface' which...
49
Mikael Lindgren
mikael.smt@...
Mar 15, 2001 7:55 am
I'm not sure if Delpi handles pure vtable event interfaces. But I'll check and get back to later on. /Mikael ... From: "Michael Geddes"...
50
Mikael Lindgren
mikael.smt@...
Mar 15, 2001 9:06 am
I've checked, and Delphi doesn't support vtable (IUnknown) event interfaces at all. ... I've done a bit of the work by implement call to the event interface...
51
Michael Geddes
mgeddes@...
Mar 20, 2001 12:50 am
Mikael - I've been doing some more work on dispinterface in tlb2h.cpp - one little thing I just found is that you had the IDispatch parameters the wrong way ...