Advertisement
idsystems

CPP_RAD_Ejercicio04

May 17th, 2012
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. /* ej04_ArgumentosCmd
  2. En este ejemplo veremos como pasar argumentos desde la linea
  3. de comando a la forma que estamos creando */
  4. #include <radc++.h>
  5.  
  6. Form form1("Argumentos Linea de Comando - RAD C++ Ejemplo");
  7.  
  8. //applciation argyments must be separated by tab key (\t char 9) not space
  9.  
  10.  
  11. rad_main()
  12.  
  13.     int totalArguments = Application.arguments.length;
  14.    
  15.     String arg1Value = Application.arguments[0];
  16.  
  17.     form1.msgBox(arg1Value,   "Total "+str(totalArguments) + " argumentos");
  18.    
  19.  
  20. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement