
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 10:18 AM
Believe it or not, today's the first time I've needed to use Dependency Walker (on Windows 10)
I've tested it on a few DLL's here but each one...
0 replies | 76 view(s)
-
March 17th, 2023, 06:33 AM
Is it possible to highlight all rows in listbox between two index values?
If it possible how is it done?
0 replies | 255 view(s)
-
March 13th, 2023, 08:47 PM
I use C# language, I'm looking for Thread example about my case
2 replies | 233 view(s)
-
March 13th, 2023, 11:14 AM
Yes, direct access to any window created in the main thread form any other thread is not allowed.
In a multithreaded C++/VC++ application in...
2 replies | 233 view(s)
-
March 12th, 2023, 10:06 PM
Cross-thread operation not valid: Control 'gridControl' accessed from a thread other than the thread it was created on.
string sPath = "";...
2 replies | 233 view(s)
-
March 12th, 2023, 01:35 PM
2kaud,
Awesome! That worked! Thank you so much!!!
6 replies | 526 view(s)
-
March 12th, 2023, 05:38 AM
You are using RegQueryValue() incorrectly. The first param is the key to be used (already opened), the second is the value to be retrieved, the 3rd...
6 replies | 526 view(s)
-
March 11th, 2023, 02:59 PM
Try:
char szPath;
LONG cbValue=sizeof(szPath);
LSTATUS errorCode = RegQueryValue(HKEY_CURRENT_USER,...
6 replies | 526 view(s)
-
March 11th, 2023, 02:36 PM
Thank you for your replies.
2kaud, I actually have tried RegGetValue() but have issues using it. I also tried RegQueryValue() with limited success....
6 replies | 526 view(s)
-
March 11th, 2023, 06:20 AM
Also RegGetValue()
https://learn.microsoft.com/en-us/windows/win32/api/winreg/nf-winreg-reggetvaluea
6 replies | 526 view(s)
-
March 11th, 2023, 03:19 AM
Have a loo at RegEnumKey and RegEnumValue functions.
6 replies | 526 view(s)
-
March 10th, 2023, 11:37 PM
Registry - Check for key or value
Hello,
I am trying to check for the existance of a key or value in the registry.
I know how to write the...
6 replies | 526 view(s)
-
March 7th, 2023, 11:15 PM
Dear codeguru,
I have been reading both https://openjdk.org/groups/build/doc/building.html and I have found this tutorial incomplete
and...
0 replies | 546 view(s)
-
March 7th, 2023, 02:51 AM
First of all, there's no BN_CLICK message identifier defined in Windows headers. Unless you are defined your own, you've probable referred to...
4 replies | 898 view(s)
-
March 6th, 2023, 08:52 AM
I need a team of 4-5 engineers for the project. Would you recommend spending time screening and selecting each candidate individually, or hiring a...
0 replies | 339 view(s)
-
March 3rd, 2023, 04:29 AM
As I said, probably because the SendMessage is waiting for completion which doesn't happen. PostMessage doesn't wait for completion.
There might...
4 replies | 898 view(s)
-
March 2nd, 2023, 11:49 PM
if I make one of them postmessage, the sendmessage on other would work. Or, if I make both postmessage, then they each work too.
If I keep both...
4 replies | 898 view(s)
-
March 1st, 2023, 10:24 PM
because you didn't follow Google's guidelines.
3 replies | 1032 view(s)
-
March 1st, 2023, 11:49 AM
It's been too long since I've programmed Win32 in earnest. However, the difference between SendMessage() and PostMessage() is that SendMessage() only...
4 replies | 898 view(s)
-
March 1st, 2023, 11:26 AM
Another approach is to convert the number to a std::string and then check that this is a palindrome. Consider:
bool...
2 replies | 774 view(s)
|
Click Here to Expand Forum to Full Width
|