Advertisement
idsystems

CPP2_Practica01_HolaMundo

Aug 5th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. /* Prac01.cpp
  2. Crear un programa que pida el nombre del usuario y luego muestre
  3. el saludo con una ventana de dialogo de mensaje */
  4. #include <radc++.h>
  5.  
  6. Form frmForma("Practica 01",10,10,300,200);
  7. Label lblHola("Cual es tu nombre?",AUTO_ID,10,10,100,20,frmForma );
  8. TextBox txtNombre(" ",AUTO_ID,10,30,200,20,frmForma);
  9. Button cmdSaludo("Saludo",AUTO_ID, 10,60,100,20,frmForma);
  10.  
  11. FormProcedure procedure1(FormProcArgs) {
  12.   ON_CLOSE(){
  13.             Application.close();}
  14.   ON_COMMAND_BY(cmdSaludo) {
  15.       frmForma.msgBox("Saludos: " + txtNombre.text,"Aviso" );
  16.   }
  17. return 0;
  18. }
  19. rad_main()
  20.  
  21.     //main program code goes here
  22.     frmForma.procedure = procedure1;
  23.     frmForma.center();
  24. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement