Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

C++ and WinAPI | Forum profile

Forum profile page for C++ and WinAPI on http://www.codeguru.com. This report page is the aggregated overview from a single forum: C++ and WinAPI, located on the Message Board at http://www.codeguru.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "C++ and WinAPI" on the Message Board at http://www.codeguru.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions - C++ and WinAPI (site profile, domain info codeguru.com)
Title: C++ and WinAPI
Url: http://www.codeguru.com/forum/forumdisplay.php?...
Users activity: 2 posts per thread
Forum activity: 37 active threads during last week
 

Posting activity on C++ and WinAPI:

  Week Month 3 Months
Threads: 37 133 357
Post: 65 258 727
 

C++ and WinAPI Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Igor Vartanov
9
user's latest post:
Help with keypresses
Published (2009-11-12 05:19:00)
Quote: Originally Posted by ranrod I can get my parent window, which I create with the CreateWindowEx command to capture WM_KEYDOWN, but if the user has the focus on the listbox, that won't work. The listbox off course doesn't capture WM_KEYDOWN by default. The child window containing the listbox and a couple of buttons is created using the CreateDialog command . Well, considering the first said, I'd say this would be enough:...
MasterDucky
7
user's latest post:
EM_GETLINE with vector
Published (2009-11-06 00:35:00)
Perfect! Thank you very much Codeplug!
Zaccheus@Work
5
user's latest post:
(Cryptography) CPImportKey function
Published (2009-11-11 15:00:00)
D'oh, of course! Thank you!
ardavirus
4
user's latest post:
Multiple SetDlgItemText to...
Published (2009-11-05 11:48:00)
Thank you, for your help hoxsiew! Woks fine!
Sh@dow
3
user's latest post:
Problem with dialog box in VS2005
Published (2009-11-04 15:07:00)
fixed. Dialog procedure must return false value by default: default: return FALSE; Thanks.
Snoopy07
3
user's latest post:
GUI in C++
Published (2009-11-04 11:54:00)
const char g_szClassName[] = "myWindowClass"; I think the problem is here try changing it to char g_szClassName[] = TEXT("myWindowClass");
hoxsiew
3
user's latest post:
(Cryptography) CPImportKey function
Published (2009-11-11 12:25:00)
Use CryptImportKey.
Alexz003
3
user's latest post:
Help with a guide
Published (2009-11-11 16:17:00)
Yea, i have that book but some of the stuff on there is different from what other people say. I have heard people say that it was a bad idea to follow the guide in that book. BTW, I too found it using googling...
Peter_APIIT
2
user's latest post:
The Procedure entry point...
Published (2009-11-06 02:14:00)
I link with the MSVCR.dll but i just renamed it to MSVCRD.dll. I compile in debug version.
MrViggy
2
user's latest post:
The Procedure entry point...
Published (2009-11-04 15:49:00)
Quote: Originally Posted by Peter_APIIT Hello to all, i have developed an application that required this dll must resize along the exe. When i execute the exe, it pop out a error message like the _malloc_dbg could not be located. I wonder what is .lib for this dll. AFAIK, there must be some export library file that need to used together with dll. Please help. Thanks. Did you compile the "Release" version of the EXE? Judging...
 

Latest active threads on C++ and WinAPI::

CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 15 hours ago (2009-11-12 01:00:00)  by bitshifter420
I have done it by subclassing the control. You can then filter the messages that its hidden WndProc gets. There maybe other ways?
Thread:  Show this thread (3 posts)   Thread info: Help with keypresses Size: 145 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with keypresses :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 11 hours ago (2009-11-12 04:57:00)  by Igor Vartanov
All your suppositions look fantastic. Writing value to a particular address has nothing to do with threads and their stacks. It'd be better to see your code snipped or (much better!) a compilable sample that reproduces your problem.
Thread:  Show this thread (2 posts)   Thread info: thread variable update issue Size: 232 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: thread variable update issue :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 1 year, 3 months ago (2008-08-06 14:33:00)  by TwangGuru
Does anyone know where the error return values for the EM_STREAMIN message might be documented? Here's a snippet of code from an application which uses EM_STREAMIN to load an RTF file... this snippet inherits a file name, szFileName, and a file handle, hFile: /* condition sf_flags for insert */ DWORD dwFlags = SF_RTF | SFF_SELECTION; /* Initialize EDITSTREAM ...
Thread:  Show this thread (4 posts)   Thread info: EDITSTREAM dwError values Size: 4,048 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "EDITSTREAM dwError values :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 3 days, 3 hours ago (2009-11-11 13:09:00)  by Igor Vartanov
What about this book ? BTW, found by ordinary googling...
Thread:  Show this thread (3 posts)   Thread info: Help with a guide Size: 195 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with a guide :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 3 days, 1 hour ago (2009-11-11 15:18:00)  by _Superman_
You can use MFC to build the UI. You have to enumerate USB devices to identify your device. Look at the usbview sample in the Windows Driver Kit. Finally you need excel automation to output to excel.
Thread:  Show this thread (3 posts)   Thread info: From USB Multimeter to Excel table Size: 236 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: From USB Multimeter to Excel table :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 3 days, 4 hours ago (2009-11-11 12:25:00)  by hoxsiew
Use CryptImportKey.
Thread:  Show this thread (3 posts)   Thread info: (Cryptography) CPImportKey function Size: 19 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: (Cryptography) CPImportKey function :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 1 week, 4 days ago (2009-11-03 15:36:00)  by MrViggy
Post your code. That should work (if I remember my syntax correctly). Viggy
Thread:  Show this thread (6 posts)   Thread info: I have a question on extern "C" Size: 91 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: I have a question on extern "C" :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 4 days, 8 hours ago (2009-11-10 08:27:00)  by gsmurthy30
one more way of blocking your window capture... When you sense that mouse action is with MOUSE_DOWn, and MOUSE_DRAG kind of attributes, simply draw your window extents lying within the Dragged rectangle in Black pixels/White pixels/etc whichever suits you.
Thread:  Show this thread (5 posts)   Thread info: How to prevent screen capture? Size: 273 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to prevent screen capture? :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 3 days, 4 hours ago (2009-11-11 12:25:00)  by Igor Vartanov
Just a hint: VMM (Virtual Memory Manager) is a Windows kernel component responsible for all kind of operations with or related to virtual address spaces. As long as this is about kernel's very private mechanisms, frankly, I doubt anybody here is aware of decent details beyond what Windows Internals provides.
Thread:  Show this thread (3 posts)   Thread info: Is there anyone who can help me with ReadProcessMemory() ? Size: 427 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Is there anyone who can help me with ReadProcessMemory() ? :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
 

Hot threads for last week on C++ and WinAPI::

C++ and WinAPI
Started 4 days, 8 hours ago (2009-11-10 08:27:00)  by gsmurthy30
one more way of blocking your window capture... When you sense that mouse action is with MOUSE_DOWn, and MOUSE_DRAG kind of attributes, simply draw your window extents lying within the Dragged rectangle in Black pixels/White pixels/etc whichever suits you.
Thread:  Show this thread (5 posts)   Thread info: How to prevent screen capture? Size: 273 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to prevent screen capture? :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 1 week, 2 days ago (2009-11-05 13:07:00)  by Codeplug
>> CopyMemory(&vLines[0], &iLength, sizeof(WORD)+1); You are copying one to many bytes. Also, you'll want to copy in the same value that was passed to resize() - since that's the size of the buffer. >> vLines.push_back( '\0' ); //do i need this? Not like that. EM_GETLINE returns the number of characters copied. Just use "vLines[num_copied] = 0". Your buffer will then be a null-...
Thread:  Show this thread (3 posts)   Thread info: EM_GETLINE with vector Size: 503 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: EM_GETLINE with vector :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 3 days, 4 hours ago (2009-11-11 12:25:00)  by Igor Vartanov
Just a hint: VMM (Virtual Memory Manager) is a Windows kernel component responsible for all kind of operations with or related to virtual address spaces. As long as this is about kernel's very private mechanisms, frankly, I doubt anybody here is aware of decent details beyond what Windows Internals provides.
Thread:  Show this thread (3 posts)   Thread info: Is there anyone who can help me with ReadProcessMemory() ? Size: 427 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Is there anyone who can help me with ReadProcessMemory() ? :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 2 days, 15 hours ago (2009-11-12 01:00:00)  by bitshifter420
I have done it by subclassing the control. You can then filter the messages that its hidden WndProc gets. There maybe other ways?
Thread:  Show this thread (3 posts)   Thread info: Help with keypresses Size: 145 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with keypresses :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 3 days, 4 hours ago (2009-11-11 12:25:00)  by hoxsiew
Use CryptImportKey.
Thread:  Show this thread (3 posts)   Thread info: (Cryptography) CPImportKey function Size: 19 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: (Cryptography) CPImportKey function :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 3 days, 1 hour ago (2009-11-11 15:18:00)  by _Superman_
You can use MFC to build the UI. You have to enumerate USB devices to identify your device. Look at the usbview sample in the Windows Driver Kit. Finally you need excel automation to output to excel.
Thread:  Show this thread (3 posts)   Thread info: From USB Multimeter to Excel table Size: 236 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: From USB Multimeter to Excel table :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 3 days, 3 hours ago (2009-11-11 13:09:00)  by Igor Vartanov
What about this book ? BTW, found by ordinary googling...
Thread:  Show this thread (3 posts)   Thread info: Help with a guide Size: 195 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with a guide :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 1 week, 3 days ago (2009-11-04 01:30:00)  by Snoopy07
Hi msvcr71.dll is a process belonging to the Microsoft C Runtime Library program . msvcr71.dll is a module containing standard C library functions such as printf, memcpy, and cos. It is a part of the Microsoft C Runtime Library. _malloc_dbg requires the header <crtdbg.h>. maybe you forogot to include it.
Thread:  Show this thread (5 posts)   Thread info: The Procedure entry point _mall-c_dbg could not be located in the DLL
MSVCR71.dll Size: 370 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: The Procedure entry point _mall-c_dbg could not be located in the DLL
MSVCR71.dll :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Started 2 days, 11 hours ago (2009-11-12 04:57:00)  by Igor Vartanov
All your suppositions look fantastic. Writing value to a particular address has nothing to do with threads and their stacks. It'd be better to see your code snipped or (much better!) a compilable sample that reproduces your problem.
Thread:  Show this thread (2 posts)   Thread info: thread variable update issue Size: 232 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: thread variable update issue :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."
C++ and WinAPI
Re: GUI in C++ - 2 new posts
Started 2 weeks ago (2009-10-31 10:44:00)  by itsmeandnobodyelse
Try to switch off the UNICODE charset in the Project Properties. Open menu Projects - Your_Project Properties - Configuration Properties - General Below 'Project Defaults' change the property of 'Character Set' to 'Use Multibyte Character Set'. After that make a Rebuild.
Thread:  Show this thread (5 posts)   Thread info: GUI in C++ Size: 402 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: GUI in C++ :: C++ and WinAPI :: CodeGuru Forums - A Developer.com Community for C+..."

This page was found by:   winapi forum  winapi printer c++