Home > database >  What meaning ah, who send function about
What meaning ah, who send function about

Time:10-02

KEY event in a window has the following procedures:
Graphicobject gb
Gb=getfocus ()
If the key=keyenter! Then
Send (handle (w_main), 256,9,0)
End the if
Look not to understand the send function, couldn't understand what does it do this

CodePudding user response:

Wrong
The program is like this:
KEY event in a window has the following procedures:
Graphicobject gb
Gb=getfocus ()
If the key=keyenter! Then
Send (handle (gb), 256,9,0)
End the if
Look not to understand the send function, couldn't understand what does it do this

CodePudding user response:

Windows issued a notice, tells the application a happened

CodePudding user response:

256: Windows key down
9: the TAB key

CodePudding user response:

Send the message function!
Send (handle (w_main), 256,9,0)
This is the enter triggered when a TAB

CodePudding user response:

Send the message function!
Send (handle (w_main), 256,9,0)
This is the enter triggered when a TAB message
Upstairs is a connoisseur

CodePudding user response:

To enter into a TAB key, press enter to the system at the time of a TAB key message, press the TAB key to system to deal with,

CodePudding user response:

I'm here to learn, the building Lord give some points

CodePudding user response:


As is the realization of the function of the TAB in the data window on the enter key

CodePudding user response:

Pick up points

CodePudding user response:

points

CodePudding user response:

Pick up points

CodePudding user response:

Learning, JF, by the way

CodePudding user response:

Send a message to the main window and tell to perform an action. Such as:
Send (Handle (the Parent), 273, 0, Handle (cb_OK))
Cb_OK. TriggerEvent (Clicked!
  • Related