Advertisement
idsystems

CPP2_Practica06_CiclosFor

Aug 5th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.05 KB | None | 0 0
  1. /* prac06
  2. Ciclos For. Basado en Ejercicio 19 */
  3. #include <radc++.h>
  4.  
  5. Form frmForma("Ciclos For",86,100,324,426,RCP_SIMPLE);
  6. Label   lblInfo("Este programa muestra una lista de numeros indicando cuales son multiplo de 3",AUTO_ID,14,14,271,25,frmForma);
  7. TableView   tableNum("",AUTO_ID,7,49,159,277,frmForma);
  8. Button  cmdStart("Comenzar",AUTO_ID,175,63,100,25,frmForma);
  9.  
  10.  
  11. FormProcedure frmForma_Procedure(FormProcArgs) {
  12.     ON_CLOSE() {
  13.         /* [X] Code when form is closed . */
  14.         Application.close(); //remove this line if it is not main form of application
  15.     }
  16.  
  17.  
  18.     ON_COMMAND_BY(cmdStart) {
  19.         /* Code when button is clicked. */
  20.         int i;
  21.         int j=0;
  22.         tableNum.addColumn("Num");
  23.         tableNum.addColumn("Multiplo 3");
  24.         for (i=1; i<=15; i++)
  25.         {
  26.            tableNum.addRow();
  27. //         frmForma.caption = str(i);
  28.            tableNum.addCell(0,j,str(i));
  29.            if (i % 3 == 0)
  30.            tableNum.addCell(1,j,"Si");
  31.           else
  32.            tableNum.addCell(1,j,"No");
  33.            j++;
  34.         }
  35.            
  36.        
  37.     }
  38.  
  39.     return 0;
  40. }
  41.  
  42. rad_main()
  43.  
  44.     frmForma.procedure=frmForma_Procedure;
  45.  
  46. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement