Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ej04_ArgumentosCmd
- En este ejemplo veremos como pasar argumentos desde la linea
- de comando a la forma que estamos creando */
- #include <radc++.h>
- Form form1("Argumentos Linea de Comando - RAD C++ Ejemplo");
- //applciation argyments must be separated by tab key (\t char 9) not space
- rad_main()
- int totalArguments = Application.arguments.length;
- String arg1Value = Application.arguments[0];
- form1.msgBox(arg1Value, "Total "+str(totalArguments) + " argumentos");
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement