Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Ej14_TablaVistaGrid
- Ejemplo para mostrar el control de tabla */
- #include <radc++.h>
- Form form1("TableView example - RAD C++ 1.2");
- TableView t2("tbv",AUTO_ID,0,0,250,200,form1);
- rad_main()
- t2.addColumn("Name");
- t2.addColumn("Email");
- t2.addColumn("Age");
- t2.addRow("Ali Imran");
- t2.addCell(1,0,"support@radcpp.com");
- t2.addCell(2,0,"29");
- t2.addRow("Otro Cliente");
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement