Search:
Type: Posts; User: raghupathys
Search :
Search took 0.01 seconds.
December 12th, 2005 02:15 AM
Have'nt really noticed anything out of the ordinary.
Codeguru seems pretty fast, both at work and at home. (I use Firefox).
December 11th, 2005 07:53 AM
hmm redirect the output with a redirection filter?
am i missing something here?
December 10th, 2005 07:28 PM
Arjay> You are right, signalling the thread to return is the best way to end a thread. But in this situation, his thread proc consists of just one method call to some arbitrary code
UINT...
December 10th, 2005 05:53 AM
Oh! So that was you??? :wave:
That was a really long running series of comments! And pretty interesting reading too!
December 10th, 2005 04:18 AM
In your case you could also move your cleanup code into a separate function. Then you would only have multiple function calls - not duplicate code.
December 10th, 2005 04:16 AM
If you are a C programmer, you can use setjmp / longjmp.
Win32 SEH has the __try / __except / __finally semantics, which would solve your problem. Only problem being, they are meant for C again...
December 10th, 2005 04:08 AM
Strings? I suppose you mean threads?
December 10th, 2005 04:07 AM
Arjay > His method seems to be a shallow wrapper around some arbitrary function. So there doesnt seem to be much to gain by using any kind of signalling mechanism.
Yiannakop> When you use...
November 23rd, 2005 07:08 AM
If you have not loaded the dll explicitly using loadlibrary it means either
a. You have loaded it implicity - run dumpbin on your binaries and check for references to msoe.dll
b. You are using...
November 23rd, 2005 04:38 AM
Call FreeLibrary() with the module handle of the dll which you wish to unload.
You can get the module handle by calling GetModuleHandle with the name of the module as a parameter.
November 21st, 2005 02:55 AM
Not sure I understand your question.
Your already using MFC. So in your CDlgVoyageAttributes ( Which I assume is derived from CDialog) class edit the message macros, and add message handlers (with...
November 17th, 2005 10:03 AM
Try using UMDH and AppVerifier. These tools are available free of cost from Microsoft.
Check out
http://www.microsoft.com/whdc/devtools/debugging/default.mspx
and...
November 17th, 2005 09:48 AM
You will need the message loop, when you marshal the interface pointer, and then unmarshal and use it in a different thread. This is because the proxy and stub communicate via windows messages.
If...
November 17th, 2005 09:32 AM
P.S. If you need to support Win NT / 9X / ME as well, your in a world of trouble!!! :)
All the best, and be sure to publish it if you get it working on those platforms! :thumb:
November 17th, 2005 09:24 AM
Not sure if your control is a windowless control or not.
Also not sure for what OS you are developing.
If it is for Win2k+, try the UpdateLayeredWindow method
and also look at dilascia's...
Hi,
I'm a total newbie to XML / XSl, and I've been stuck with this problem.
Would be grateful for any suggestions / pointers
The problem -
Assuming I have an xml file
<root>
<students>
February 16th, 2005 05:44 AM
Just curious,
But you have placed a pointer ( not an object ) in a shared data segment.
So all process which map your dll can have a look at the pointer ( and the value will be the same since it is...
December 13th, 2004 11:11 PM
could i have a look at your .rgs file?
December 13th, 2004 01:29 AM
your component needs to implement the IDTExtensibility2 intrerface as well.
December 10th, 2004 02:16 AM
my two pennies worth...
http://www.codeguru.com/Cpp/COM-Tech/atl/misc/article.php/c7387/
December 10th, 2004 01:23 AM
I'm not very sure about this, but when you launch the dialog with CDialog::DoModal(), the message loop is being run by windows. So any wm_command messages are routed thru CDialog. CWinApp doesnt come...
December 2nd, 2004 03:05 AM
Simplest way would be to run net share <your params> using shellex.
December 1st, 2004 10:44 PM
I just checked, in both debug and release builds.
char code[6] = {'H','E','L','L','O',0}; // Does not show up in a hex editor (Release or debug build).
char code[6] = "HELLO"; // Shows up in a...
December 1st, 2004 06:48 AM
For SQL Server(or any other app) to access the remote file, you would need to have a drive$ share.
Let us say on machine m1, i have a file on d:\Folder1\mydata.bkp
if i need to access this data...
December 1st, 2004 06:30 AM
You could try it this way
char code[6] = {'H','E','L','L','O',0};
String table would still show under a hex editor
Click Here to Expand Forum to Full Width