Click here to Skip to main content
15,913,055 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: number of affected rows Pin
Dave Kreskowiak19-Jan-06 7:41
mveDave Kreskowiak19-Jan-06 7:41 
GeneralRe: number of affected rows Pin
ecentinela19-Jan-06 7:46
ecentinela19-Jan-06 7:46 
GeneralRe: number of affected rows Pin
Dave Kreskowiak19-Jan-06 8:29
mveDave Kreskowiak19-Jan-06 8:29 
GeneralRe: number of affected rows Pin
ecentinela19-Jan-06 9:16
ecentinela19-Jan-06 9:16 
GeneralRe: number of affected rows Pin
Dave Kreskowiak19-Jan-06 9:23
mveDave Kreskowiak19-Jan-06 9:23 
QuestionHow can i see the content of a sql database in a datagrid in a smartdeviceapplication made in vb.net 2005? Pin
MagureanuMarius19-Jan-06 6:32
MagureanuMarius19-Jan-06 6:32 
QuestionHow to get WM_PASTE message of the windows system? Pin
dyh222219-Jan-06 5:21
dyh222219-Jan-06 5:21 
AnswerRe: How to get WM_PASTE message of the windows system? Pin
Dave Kreskowiak19-Jan-06 7:39
mveDave Kreskowiak19-Jan-06 7:39 
Are you saying that your trying to intercept the WM_PASTE message system wide? No matter what application the message is sent to?

You can't do it using PeekMessage. It'll only return messages that were sent to your application. The only way to get system-wide notification of messages is to implement a system-wide WH_GetMessage hook procedure. Any application that calls PeekMessage or GetMessage will force windows to send the message to your hook procedure first, you do whatever you want with it, then the message is sent to the application that called PeekMessage or GetMessage.

This is not for the faint of heart! Your hook procedure code must be tight...really tight! This is because your code is going to get called A LOT and any bottle neck in your hook proc code is going to slow down the entire system!

You can find out more by Googling for VB.NET WH_GetMessage[^].


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: How to get WM_PASTE message of the windows system? Pin
dyh222220-Jan-06 7:00
dyh222220-Jan-06 7:00 
QuestionFree Disk Space function and Array Initialization Problem Pin
Devraj Raut19-Jan-06 5:19
Devraj Raut19-Jan-06 5:19 
AnswerRe: Free Disk Space function and Array Initialization Problem Pin
Dave Kreskowiak19-Jan-06 7:15
mveDave Kreskowiak19-Jan-06 7:15 
AnswerRe: Free Disk Space function and Array Initialization Problem Pin
Dave Kreskowiak19-Jan-06 7:23
mveDave Kreskowiak19-Jan-06 7:23 
Questionmodule Pin
shobhit srivastava19-Jan-06 4:52
shobhit srivastava19-Jan-06 4:52 
AnswerRe: module Pin
Dave Kreskowiak19-Jan-06 7:12
mveDave Kreskowiak19-Jan-06 7:12 
AnswerRe: module Pin
Joshua Quick19-Jan-06 7:56
Joshua Quick19-Jan-06 7:56 
QuestionCrystal report in VB 6.0 Pin
Tyler4519-Jan-06 4:37
Tyler4519-Jan-06 4:37 
Questionset and new Pin
bonosa19-Jan-06 3:32
bonosa19-Jan-06 3:32 
AnswerRe: set and new Pin
hmklakmal19-Jan-06 4:14
hmklakmal19-Jan-06 4:14 
GeneralRe: set and new Pin
ns19-Jan-06 5:44
ns19-Jan-06 5:44 
AnswerRe: set and new Pin
Dave Kreskowiak19-Jan-06 7:09
mveDave Kreskowiak19-Jan-06 7:09 
AnswerRe: set and new Pin
Joshua Quick19-Jan-06 8:12
Joshua Quick19-Jan-06 8:12 
GeneralRe: set and new Pin
shiroamachi19-Jan-06 14:52
shiroamachi19-Jan-06 14:52 
GeneralRe: set and new Pin
Joshua Quick19-Jan-06 16:00
Joshua Quick19-Jan-06 16:00 
GeneralRe: set and new Pin
shiroamachi19-Jan-06 16:57
shiroamachi19-Jan-06 16:57 
GeneralRe: set and new Pin
Steve Pullan19-Jan-06 17:39
Steve Pullan19-Jan-06 17:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.