Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. int success = QC_SendMessageW(HandleSend, "AccountCompany", 1);
  2.  
  3. protected override void WndProc(ref Message m)
  4. {
  5. // See if a new message is available for collection using QC_GetMessages4()
  6. if (m.Msg == 1024 && m.WParam.ToInt32() == 1234 && m.LParam.ToInt32() == 5678)
  7. {
  8. //get the pending message
  9. ReceivedMessages = QC_GetMessages4(HandleReceive);
  10.  
  11. string  AccountName();
  12.  
  13. public string AccountCompany()
  14. {
  15. int success = QC_SendMessageW(HandleSend, "AccountCompany", 1);
  16.  
  17. // string s = wait for the receive message to show up in the WndProc method and bring it here
  18.  
  19. return s;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement