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
Post a Comment