Waitting.....

  • Thread starter Thread starter Bill Yin
  • Start date Start date
B

Bill Yin

I want transmit a parameter to a winform.
How should I do?
How receive the parameter in open's window?
 
Bill Yin said:
I want transmit a parameter to a winform.
How should I do?
How receive the parameter in open's window?

Add parameters to the forms constructor and pass them to the form when you
instansiate it.

PS
 
Are you refering to an already open windows or a window in another
application?
If so you can use SendMessage API call ,

If you are creating a new winform you can use a constructor parameter or a
public property.

Cheers,
 
Back
Top