Search results for query: *

  1. M

    Question Opc and vb.net

    Thank you..
  2. M

    Question Opc and vb.net

    Hello, Any one can give me suggestion about how to make a communication from vb.net to OPC server? an example will be really appreciated.. I have tried to google it around but end with OPC Control.net is there anyway to make a communication without any 3rd party library? I am hoping to use...
  3. M

    Question detect F2 keypress on any control

    Thanks BlackByte, thanks JohnH..
  4. M

    Question detect F2 keypress on any control

    Help.. with this code, when I put a panel, it wont work.. i have may panels in this form.. how to do this?? thanks..
  5. M

    Question detect F2 keypress on any control

    Solved Nevermind.. i got it.. in form load For Each COntrol as COntrol In Me.Controls AddHandler Control.KeyDown, AddressOf ControlKeyDown Next Make ControlKeyDown Private Sub ControlKeyDown (ByVal sender as Object, ByVal e as System.Windows.Forms.KeyEventArgs) If e.KeyValue = 113 Then...
  6. M

    Question detect F2 keypress on any control

    Hi, I want to detect F2 keypress as a shortcut to show something.. this is like F1 to show help in vb.net.. thanks..
Back
Top