|
More site info...
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.
|
|
|
|
|
Posting activity on C++ and WinAPI:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
37
|
133
|
357
|
|
Post:
|
65
|
258
|
727
|
|
|
C++ and WinAPI Posting activity graph:
|
Top authors during last week:
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:...
user's latest post:
EM_GETLINE with vector
Published (2009-11-06 00:35:00)
Perfect! Thank you very much Codeplug!
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.
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");
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...
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.
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::
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?
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.
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 ...
Started 3 days, 3 hours ago (2009-11-11 13:09:00)
by Igor Vartanov
What about this book ? BTW, found by ordinary googling...
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.
Started 3 days, 4 hours ago (2009-11-11 12:25:00)
by hoxsiew
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
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.
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.
|
|
Hot threads for last week on 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.
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-...
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.
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?
Started 3 days, 4 hours ago (2009-11-11 12:25:00)
by hoxsiew
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.
Started 3 days, 3 hours ago (2009-11-11 13:09:00)
by Igor Vartanov
What about this book ? BTW, found by ordinary googling...
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.
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.
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.
|
|