How can i send a message to Windows
-
How can i send a WM_LBUTTONDOWN to the windows os? I have tried SendMessage(hWnd, WM_LBUTTONDOWN, 0,0); but it did not work. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
-
How can i send a WM_LBUTTONDOWN to the windows os? I have tried SendMessage(hWnd, WM_LBUTTONDOWN, 0,0); but it did not work. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
Umm... it should be in your MSDN cds you get with Visual Studio 6.0 . How are you using it? I've never seen your way before. If you're trying to make it react to something just type in the windows message handler: case WM_LBUTTONDOWN: whatever you want break; You probably already knew that.:) "The world doesn't care about your self esteem. The world expects you to get something done BEFORE you feel good about yourself." ~ Bill Gates
-
How can i send a WM_LBUTTONDOWN to the windows os? I have tried SendMessage(hWnd, WM_LBUTTONDOWN, 0,0); but it did not work. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
Remember: for programming questions use the forums, not the lounge. -- LuisR -------- Luis Alonso Ramos Chihuahua, Mexico www.luisalonsoramos.com
-
Remember: for programming questions use the forums, not the lounge. -- LuisR -------- Luis Alonso Ramos Chihuahua, Mexico www.luisalonsoramos.com
I know but, it didn't get answered. I am tring to emulate a LButton event. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
-
I know but, it didn't get answered. I am tring to emulate a LButton event. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
Well heck, if it doesn't get instantly answered in the _appropriate_ forum then by all means take your question wherever you feel like asking it. ;P -- Eric
-
I know but, it didn't get answered. I am tring to emulate a LButton event. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
Note to Chris Maunder, here's a suggestion to get people's dev questions answered more or at least offer more visibility so that they can possibly get answered: 1) On the left-hand side, where the bright orangey bar is, there's a huge amount of space there (at least when viewing messages in the lounge). You could use the same script that you use on the home page and place it on the left side there. And perhaps rotate between different forums on the left side. 2) Another tip to get programming questions posted to the correct place, try switching the Lounge and Questions sections on the home page, making the Questions section more visible by placing it on the top of the right column.
-
How can i send a WM_LBUTTONDOWN to the windows os? I have tried SendMessage(hWnd, WM_LBUTTONDOWN, 0,0); but it did not work. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
I suspect that this is what you are looking for. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/hh/winui/buttons\_1dpn.asp Hope it helps. /Mike
-
How can i send a WM_LBUTTONDOWN to the windows os? I have tried SendMessage(hWnd, WM_LBUTTONDOWN, 0,0); but it did not work. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
-
I think the function you're looking for is mouse_event or SendInput on windows NT. MSDN has pretty good docs on them.
ok thanks Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
-
I know but, it didn't get answered. I am tring to emulate a LButton event. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com
Didn't get it answered? You used the same phrase I gave you, i.e. SendMessage(hWnd, WM_LBUTTONDOWN, 0, 0)!!!