Advertisement
idsystems

CPP_RAD_Ejercicio14

May 18th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. /* Ej14_TablaVistaGrid
  2. Ejemplo para mostrar el control de tabla */
  3. #include <radc++.h>
  4.  
  5. Form form1("TableView example - RAD C++ 1.2");
  6. TableView t2("tbv",AUTO_ID,0,0,250,200,form1);
  7.                
  8. rad_main()
  9.     t2.addColumn("Name");
  10.     t2.addColumn("Email");
  11.     t2.addColumn("Age");
  12.    
  13.     t2.addRow("Ali Imran");
  14.     t2.addCell(1,0,"support@radcpp.com");
  15.     t2.addCell(2,0,"29");
  16.    
  17.     t2.addRow("Otro Cliente");
  18. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement