Search found 321 matches: msgyesno

Return to advanced search

Re: Tfolderex Tab cursor

... OF oDlg1 ; BITMAPS aBitmaps; ON PAINT TAB PaintTab( Self, nOption ); ON CHANGE ( nSavePage := oFld1:nOption, ; IF( nOption == 5, If( MsgYesNo( "Do you want exit??" ), ; oDlg1:End(), ( ::SetOption( nOldOption ), ::Refresh() ) ), ) ) ; ON PAINT TEXT( If( nOption == ::nOption ...
by ukoenig
Fri Apr 01, 2016 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tfolderex Tab cursor
Replies: 4
Views: 924

Re: Algo parecido a MSGYESNO

Podrias usar el código de MemoEdit() de FWH:

FWH\source\function\memoedit.prg

y hacer que el GET sea READONLY y añadir los botones que necesites
by Antonio Linares
Wed Mar 30, 2016 9:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo parecido a MSGYESNO
Replies: 3
Views: 525

Re: Algo parecido a MSGYESNO

Antonio:

Varias líneas. De hecho serían varios párrafos.

Gracias por contestar.

LORENZO.
by Loren
Wed Mar 30, 2016 8:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo parecido a MSGYESNO
Replies: 3
Views: 525

Re: Algo parecido a MSGYESNO

Lorenzo,

El texto tiene que mostrarse en una línea ó en múltiples líneas ?

Es muy sencillo redimensionar un diálogo:

oDlg:SetSize( nAncho, nAlto )
by Antonio Linares
Wed Mar 30, 2016 8:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo parecido a MSGYESNO
Replies: 3
Views: 525

Algo parecido a MSGYESNO

... "SI" "NO" y "más...", y este dialog debe redimensionarse según la cantidad de texto a mostrar. Algo parecido a MSGYESNO pero con otro botón más. ¿Puedo modificar la clase? ¿Hay algo parecido ya construido? ¿Es complicado redimensionar el Dialog según la longitud ...
by Loren
Wed Mar 30, 2016 8:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo parecido a MSGYESNO
Replies: 3
Views: 525

Re: dialogo o ventana pantalla completa

... @ 3, 16 BUTTON "&Cancel" SIZE 40, 12 ACTION oDlg:End() ACTIVATE DIALOG oDlg CENTERED on init(ConfiguraDialogPrincipal(odlg)) ; VALID MsgYesNo( "Do you want to end ?" ) return nil static procedure ConfiguraDialogPrincipal( oDialog ) oDialog:maximize() oDialog:center() return
by MGA
Fri Jan 29, 2016 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: dialogo o ventana pantalla completa
Replies: 12
Views: 1278

Re: New FTDN September/Septiembre 2015 (FWH 15.09)

... fixed excess release of font when font clause is used. * Enhancement: Unicode support for common messageboxesm MsgInfo(), MsgAlert(), MsgStop(), MsgYesNo(), MsgNoYes(), MsgRetryCancel(), MsgAbout(), MsgRun, MsgWait(). MsgText and Title can be any combination of UTF8/ANSI. Buttons are shown in ...
by Antonio Linares
Thu Oct 15, 2015 2:57 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14989

Re: Mi primer programa Fivetouch para crear usuarios

... WITH cId,; FIELD->USR_NAME WITH cName,; FIELD->USR_DATE WITH CTOD(dDate),; FIELD->USR_ACTIVE WITH lActive COMMIT // USE IF !MsgYesNo("Desea Agregar Otro Usuario") oDlg:End() ENDIF FOR I=1 TO LEN(aVars) if Empty(&(aVars[I])) cMsg:=cMsg+IF(Empty(cMsg),"",CRLF)+aSay[I] ...
by xfood
Mon Oct 12, 2015 3:52 pm
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2364

New FTDN September/Septiembre 2015 (FWH 15.09)

... fixed excess release of font when font clause is used. * Enhancement: Unicode support for common messageboxesm MsgInfo(), MsgAlert(), MsgStop(), MsgYesNo(), MsgNoYes(), MsgRetryCancel(), MsgAbout(), MsgRun, MsgWait(). MsgText and Title can be any combination of UTF8/ANSI. Buttons are shown in ...
by Antonio Linares
Sat Sep 26, 2015 8:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14989

Re: Connect to Advantage Database

... msgbox.c:(.text+0x2f6): riferimento non definito a "gtk_widget_destroy" ./../lib/libfivec.a(msgbox.o): nella funzione "MsgYesNo": msgbox.c:(.text+0x312): riferimento non definito a "gtk_window_list_toplevels" msgbox.c:(.text+0x31b): riferimento non definito ...
by giuliano
Thu Aug 06, 2015 10:43 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Connect to Advantage Database
Replies: 31
Views: 11249

Re: problems with radio and radioitem

Before calling:

msgyesno()

Try this:

oDlg:Disable()

and after the msgyesno():

oDlg:Enable()
by Antonio Linares
Wed Jul 15, 2015 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problems with radio and radioitem
Replies: 10
Views: 1684

Re: problems with radio and radioitem

I found the problem.

after while ... ENDDO have a msgyesno (), taking this msg () does not happen the problem, the logfiile shows only once passing within the function.

what to do?
by aferra
Wed Jul 15, 2015 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problems with radio and radioitem
Replies: 10
Views: 1684

Re: Avances con FiveTouch

... WITH cId,; FIELD->USR_NAME WITH cName,; FIELD->USR_DATE WITH CTOD(dDate),; FIELD->USR_ACTIVE WITH lActive COMMIT // USE IF !MsgYesNo("Desea Agregar Otro Usuario") oDlg:End() ENDIF FOR I=1 TO LEN(aVars) if Empty(&(aVars[I])) cMsg:=cMsg+IF(Empty(cMsg),"",CRLF)+aSay[I] ...
by jnavas
Sat Apr 04, 2015 11:48 am
 
Forum: FiveTouch
Topic: Avances con FiveTouch
Replies: 16
Views: 7266

Re: Inspector de Objetos

... WITH cId,; FIELD->USR_NAME WITH cName,; FIELD->USR_DATE WITH CTOD(dDate),; FIELD->USR_ACTIVE WITH lActive COMMIT // USE IF !MsgYesNo("Desea Agregar Otro Usuario") oDlg:End() ENDIF FOR I=1 TO LEN(aVars) if Empty(&(aVars[I])) cMsg:=cMsg+IF(Empty(cMsg),"",CRLF)+aSay[I] ...
by jnavas
Sat Apr 04, 2015 5:15 am
 
Forum: FiveTouch
Topic: Inspector de Objetos
Replies: 1
Views: 813

Mi primer programa Fivetouch para crear usuarios

... WITH cId,; FIELD->USR_NAME WITH cName,; FIELD->USR_DATE WITH CTOD(dDate),; FIELD->USR_ACTIVE WITH lActive COMMIT // USE IF !MsgYesNo("Desea Agregar Otro Usuario") oDlg:End() ENDIF FOR I=1 TO LEN(aVars) if Empty(&(aVars[I])) cMsg:=cMsg+IF(Empty(cMsg),"",CRLF)+aSay[I] ...
by jnavas
Fri Apr 03, 2015 4:47 am
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2364
PreviousNext

Return to advanced search