Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
wndproc
- Page 1
Help with WndProc Mapping
Programming
Software Development
15 Years Ago
by dalcocer
… // Redraw On Size, And Own DC For Window. wc.lpfnWndProc = (
WNDPROC
)
WndProc
; //
WndProc
Handles Messages wc.cbClsExtra = 0; // No Extra Window Data wc… DefWindowProc return DefWindowProc(hWnd,uMsg,wParam,lParam); } LRESULT CALLBACK GameManager::
WndProc
(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { // Recover …
hWnd/WndProc query
Programming
Software Development
12 Years Ago
by Chicktopus
…(WNDCLASSEX); m_wc.style = 0; m_wc.lpfnWndProc = (
WNDPROC
)GLWindow::StaticWndProc; m_wc.cbClsExtra = 0; m_wc.cbWndExtra =…)m_this); m_this->g_hWnd = p_hWnd; return m_this->
WndProc
(p_hWnd, p_uMsg, p_wParam, p_lParam); } } return DefWindowProc(…
WinGui C Problem (WndProc not recognized?)
Programming
Software Development
17 Years Ago
by Floh85
… eigener Funktionen BOOL InitApplication(); BOOL InitInstance(int); LRESULT CALLBACK
WndProc
(HWND, UINT, WPARAM, LPARAM); // Der Programm Einstiegspunkt …wc.style = CS_HREDRAW | CS_VREDRAW; // Fensterstile wc.lpfnWndProc = (
WNDPROC
)
WndProc
; // Fensterprozedur wc.cbClsExtra = 0; //Hier kann zusätzlicher Speicher…
Calling DoInput from WndProc - call to non-static function
Programming
Game Development
15 Years Ago
by JustSuds
…; method built up. When I try to call it from
WndProc
like this: [CODE] switch (message) { case WM_CLOSE: { g_bDone = true; PostQuitMessage…: return DefWindowProc(hWnd, message, wParam, lParam); } return 0;[/CODE] (Entire
WndProc
body there). I get a "[iCODE]Error 1 error…
TreeView and WndProc
Programming
Software Development
13 Years Ago
by PoovenM
… any other [icode]WM_NOTIFY [/icode]message? [CODE] protected override void
WndProc
(ref Message m) { if (m.Msg == 0x004E) //WM_NOTIFY taken from… I know if the message is a TVN_GETDISPINFO notification? } base.
WndProc
(ref m); } [/CODE] Thank you for reading my post. Any…
What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by Mr.M
Hi DW. Anyone know what/which type of
WndProc
Windows Message is raised when someone is burning a CD? What I mean here is that if I'm using a software like Nero which is a well known CD burning software. My question is that what type of
WndProc
Message this software produce when its performing this type of work? Thanks guys.
Re: Calling DoInput from WndProc - call to non-static function
Programming
Game Development
15 Years Ago
by JustSuds
Problem solved! I just made a global variable WPARAM wPara, and in my
WndProc
I set wPara to wParam. Calling DoInput with my wPara value from a generic update method.
Windows API - Another WndProc callback
Programming
Software Development
15 Years Ago
by daveoffy
Hello, I have a program where after you login, I need it to re-design the whole window. Is there a way I can change the
WndProc
to make the code cleaner. Thanks. I have a case for the login if successful, so it will be put in there.
Lambda to WNDProc Invalid Cast
Programming
Software Development
12 Years Ago
by triumphost
…(HWND, uint32_t, WPARAM, LPARAM)>' > > to > > '
WNDPROC
{aka long long int (*)(HWND__*, unsigned int, long long unsigned…
Lambda to WNDProc Invalid Cast
Programming
Software Development
12 Years Ago
by triumphost
…(HWND, uint32_t, WPARAM, LPARAM)>' > > to > > '
WNDPROC
{aka long long int (*)(HWND__*, unsigned int, long long unsigned…
How to debug a WndProc function with multiple dynamic listviews ?
Programming
Software Development
7 Years Ago
by dongtrien
…://www.mediafire.com/file/weab5ppsb355kc1/out_WndProc.doc protected override void
WndProc
(ref Message m) { Debug.Print("out if: " + m…
Re: WM_CHAR stops working after WM_COMMAND in wndproc
Programming
Software Development
15 Years Ago
by Frederick2
… you found out. As I mentioned, your
WndProc
() wasn't getting the keyboard activity, the
WndProc
() of the button control was. However…, its possible to 'hook' the button
WndProc
() using the SetWindowLong() function, and in that manner receive the…
Re: Help with WndProc Mapping
Programming
Software Development
15 Years Ago
by Kyle Wiering
Looking for something unrelated and found your unresolved issue. Replying in case someone else bumps into it, or you still have the issue from many months ago. Essentially, the problem is where you are declaring your variables. In the GameManager.h, you are declaring them inside of the private member of the class GameManager. In the …
Re: WinGui C Problem (WndProc not recognized?)
Programming
Software Development
17 Years Ago
by Ancient Dragon
InitApplication() references a function names WinProc. You have to add that function to your program before it will link successfully. That function will probably be explained a little further on in your book, or you can study [URL="http://www.winprog.org/tutorial/"]this tutorial[/URL].
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by rproffitt
I think you need to reveal more about what your goal is. That is, in my app I didn't see any new messages when I had CDBURNERXP make a CD or DVD. So messages appear to only be in each app's message system. If such messages were system wide in Windows, I fear this OS would be even less secure than it is.
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by Mr.M
So you mean it is not possible to get notification when another app is performing this action? But I think there should be a way of knowing. I'm not sure but I think there is no event that can happen on a computer which doesn't have an OS message map, but as I've said I'm not sure but according to what I once saw especially with Windows OS is …
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by rproffitt
I think you need to try what you wrote in your last message about registering and see what you get. Here I did not do that step (no reason to) and did not see any messages outside of what my app would generate. I did ask what your goal was but didn't get a good answer. Sometimes folk want to lock down the PC to stop use of USB sticks, control …
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by Mr.M
My goal is to get notification when these request accures. I want to also get its parameters data which will have the data that is to be written to the disc, the data location. I need to work with the data before it is written to the disc so what I want to do is to get notifications when there is a software attempting to burn a disc.
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by rproffitt
That's a partial answer to my questions. No one I know has tried to tinker with the data in such a way. For decades I prepare what I want to burn before I click burn (or record, copy.) Good luck in your endeavor but I worry that your app would be too specific to the burning app and would not work if I went with ISOBurn, FreeBurn, CDBURNERXP or…
Re: What WndProc Windows Message for this
Programming
Software Development
7 Years Ago
by xrjf
You must develope and install a driver. Search for MS' DDK, driver deveopment kit.
Re: Windows API - Another WndProc callback
Programming
Software Development
15 Years Ago
by William Hemsworth
Post code so I see what you mean? When I have multiple window processes, I sometimes seperate them into different header files to stay organised.
Re: Windows API - Another WndProc callback
Programming
Software Development
15 Years Ago
by strmstn
You shouldn't have several CALLBACKs for the same window. Maybe write a function that takes care of this specific case?
Re: How to debug a WndProc function with multiple dynamic listviews ?
Programming
Software Development
7 Years Ago
by ddanbe
First, if you got an answer to your question, you should mark it as solved. Second, no sure what you are trying to achieve here. Guess you are using Visual Studio. It has a most wonderful debugger. Debug.Print etc. is very 'old style', just set breakpoints in your code and watch your variables.
Re: How to debug a WndProc function with multiple dynamic listviews ?
Programming
Software Development
7 Years Ago
by nullptr
Check your spelling on line 4, it should be `WM_NOTIFY`
Re: How to debug a WndProc function with multiple dynamic listviews ?
Programming
Software Development
7 Years Ago
by dongtrien
if debug what but how do I know if the m.Msg variable is a listview message ?
HELP! C++ DirectX programming: Win32 application compiling problems with Platform SDK
Programming
Software Development
16 Years Ago
by Clawsy
… referenced in function "long __stdcall
WndProc
(struct HWND__ *,unsigned int,unsigned int,long)" (?
WndProc
@@YGJPAUHWND__@@IIJ@Z) b.obj b… referenced in function "long __stdcall
WndProc
(struct HWND__ *,unsigned int,unsigned int,long)" (?
WndProc
@@YGJPAUHWND__@@IIJ@Z) b.obj b…
Problems with compiling in VS10 Express Beta2
Programming
Software Development
15 Years Ago
by FrozenSnake
….h> const char gClassName[] = "TibiaTimer"; LRESULT CALLBACK
WndProc
(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg… msg; wc.cbSize = sizeof(WNDCLASSEX); wc.style = 0; wc.lpfnWndProc =
WndProc
; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hInstance; wc…
Problem with DataGridView quick filter
Programming
Software Development
15 Years Ago
by SamTheDevGuru
…OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.
WndProc
(Message& m) at System.Windows.Forms.NativeWindow.DebuggableCallback(…OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.
WndProc
(Message& m) at System.Windows.Forms.NativeWindow.DebuggableCallback(…
Customize windows scroll bar in combobox
Programming
Software Development
12 Years Ago
by NidhiSree
… case Win32.WM_NCMOUSELEAVE: { base.
WndProc
(ref message); Win32.SendMessage(parent…case Win32.WM_NCLBUTTONUP: { base.
WndProc
(ref message); Win32.SendMessage(parent…
Recall Registry Values
Programming
Software Development
16 Years Ago
by jmumby
…Message& m) at System.Windows.Forms.Form.
WndProc
(Message& m) at System.Windows.Forms.…amp; m) at System.Windows.Forms.Control.ControlNativeWindow.
WndProc
(Message& m) at System.Windows.Forms.NativeWindow…amp; m) at System.Windows.Forms.Control.ControlNativeWindow.
WndProc
(Message& m) at System.Windows.Forms.…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC