the values
nRutipo:=4 ,
nRUPAG:=2
on the radio controls in this dialog
WHY
PLS SEE THIS TEST
- Code: Select all Expand view
- #include"fivewin.ch"
FUNCTION TEST()
LOCAL oDlg,oFont,aGet[14],oFld
Local nRutipo:=4 , nRUPAG:=2
DEFINE FONT oFont NAME "MS Sans Serif" SIZE 0, 8
DEFINE DIALOG oDlg FROM 100, 100 TO 510,608;
TITLE "TEST" PIXEL FONT oFont
@ 12, 10 SAY "Tipo:" OF oDlg SIZE 23, 8 PIXEL FONT oFont
@ 10, 50 RADIO aGet[1] VAR nRutipo PROMPT "&Utente registrato" PIXEL SIZE 50, 12 OF oDlg UPDATE
@ 10, 104 RADIOITEM "Elenco email" RADIOMENU aGet[1] PIXEL SIZE 50, 12 OF oDlg
@ 10, 155 RADIOITEM "&Amico personale" RADIOMENU aGet[1] PIXEL SIZE 50, 12 OF oDlg
@ 10, 210 RADIOITEM "Altro" RADIOMENU aGet[1] PIXEL SIZE 40, 12 OF oDlg
@ 104,10 FOLDER oFld ;
SIZE 245, 80 ;
OF oDlg ;
ITEMS "&1","&2" ;
FONT oFont ;
PIXEL
@ 7, 10 SAY "Forma:" OF oFld:aDialogs[1] SIZE 23, 8 PIXEL FONT oFont
@ 5, 50 RADIO aGet[14] VAR nRUPAG PROMPT "&Bonifico Bancario" PIXEL SIZE 50, 12 OF oFld:aDialogs[1]
@ 5, 104 RADIOITEM "&Carta di credito" RADIOMENU aGet[14] PIXEL SIZE 50, 12 OF oFld:aDialogs[1]
@ 5, 155 RADIOITEM "&In contanti" RADIOMENU aGet[14] PIXEL SIZE 40, 12OF oFld:aDialogs[1]
@ 5, 200 RADIOITEM "&Assegno" RADIOMENU aGet[14] PIXEL SIZE 40, 12 OF oFld:aDialogs[1]
ACTIVATE DIALOG oDlg