about finding forms
-
who can tell me how to active FormB from FormA, A(MainForm) and B(has been minimized) are in one application,but are not parent and child. If FormA and FormB are belong to diffent applicaions what should i do to achieve the same goal? thanks! ^_^
-
who can tell me how to active FormB from FormA, A(MainForm) and B(has been minimized) are in one application,but are not parent and child. If FormA and FormB are belong to diffent applicaions what should i do to achieve the same goal? thanks! ^_^
First to activate Maximize or Minimize form from another one windows forms has property called WindowState so code somthing like this
anotherForm.WindowsState=FormWindowState.Normal
MCAD -
First to activate Maximize or Minimize form from another one windows forms has property called WindowState so code somthing like this
anotherForm.WindowsState=FormWindowState.Normal
MCADif form B has existed, how could i know, and how to find it. thanks!
-
if form B has existed, how could i know, and how to find it. thanks!
what do you mean by form is existed? MCAD
-
if form B has existed, how could i know, and how to find it. thanks!
as you dont answer my question if you want to search for a window in windows use FindWindow API which will give you the handel of the form MCAD
-
as you dont answer my question if you want to search for a window in windows use FindWindow API which will give you the handel of the form MCAD
Windows API is what i need . Thank u for your patience. ^_^
-
Windows API is what i need . Thank u for your patience. ^_^
this will give you only handle to maxmize or minimize you nedd to change windows style set like WS_MAXIMIZE Note: there are another version of FindWindow named FindWindowEx MCAD