B Bill Yin Jun 22, 2004 #1 I want transmit a parameter to a winform. How should I do? How receive the parameter in open's window?
I want transmit a parameter to a winform. How should I do? How receive the parameter in open's window?
S SP Jun 22, 2004 #2 Bill Yin said: I want transmit a parameter to a winform. How should I do? How receive the parameter in open's window? Click to expand... Add parameters to the forms constructor and pass them to the form when you instansiate it. PS
Bill Yin said: I want transmit a parameter to a winform. How should I do? How receive the parameter in open's window? Click to expand... Add parameters to the forms constructor and pass them to the form when you instansiate it. PS
I Ignacio Machin \( .NET/ C# MVP \) Jun 22, 2004 #3 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,
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,