G Guest Sep 8, 2005 #1 Is there a way fro me to find or get access to a Form/Control given the fact that I know its windows handle?
Is there a way fro me to find or get access to a Form/Control given the fact that I know its windows handle?
H Herfried K. Wagner [MVP] Sep 8, 2005 #2 Damian said: Is there a way fro me to find or get access to a Form/Control given the fact that I know its windows handle? Click to expand... \\\ Dim c As Control = Control.FromHandle(<handle>) /// Note that this will only work with controls which are part of your application.
Damian said: Is there a way fro me to find or get access to a Form/Control given the fact that I know its windows handle? Click to expand... \\\ Dim c As Control = Control.FromHandle(<handle>) /// Note that this will only work with controls which are part of your application.
G Guest Sep 8, 2005 #3 I knew I had bumped across this before. Thanks. Herfried K. Wagner said: \\\ Dim c As Control = Control.FromHandle(<handle>) /// Note that this will only work with controls which are part of your application. Click to expand...
I knew I had bumped across this before. Thanks. Herfried K. Wagner said: \\\ Dim c As Control = Control.FromHandle(<handle>) /// Note that this will only work with controls which are part of your application. Click to expand...