winforms - Visual C++ 2010 Express use command line arguments -


i'm new visual c++ 2010, i'm getting it. used wizard create winform project main , form1 section. far program running perfect. i'd use command line arguments when starting application.

the wizard created main code:

;using namespace hvbackup2012;  [stathreadattribute]  int main(array<system::string ^> ^args)  {     // aktivieren visueller effekte von windows xp, bevor steuerelemente erstellt werden     application::enablevisualstyles();     application::setcompatibletextrenderingdefault(false);       // hauptfenster erstellen und ausführen     application::run(gcnew form1());     return 0; } 

but dont know, how handle args , hand form1 process it? can not find main construct @ internet @ all, must default? don't unterstand the

(array<system::string ^> ^args). 

thanks help

lex


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -