Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Prac01.cpp
- Crear un programa que pida el nombre del usuario y luego muestre
- el saludo con una ventana de dialogo de mensaje */
- #include <radc++.h>
- Form frmForma("Practica 01",10,10,300,200);
- Label lblHola("Cual es tu nombre?",AUTO_ID,10,10,100,20,frmForma );
- TextBox txtNombre(" ",AUTO_ID,10,30,200,20,frmForma);
- Button cmdSaludo("Saludo",AUTO_ID, 10,60,100,20,frmForma);
- FormProcedure procedure1(FormProcArgs) {
- ON_CLOSE(){
- Application.close();}
- ON_COMMAND_BY(cmdSaludo) {
- frmForma.msgBox("Saludos: " + txtNombre.text,"Aviso" );
- }
- return 0;
- }
- rad_main()
- //main program code goes here
- frmForma.procedure = procedure1;
- frmForma.center();
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement