Search found 321 matches: msgyesno

Return to advanced search

Re: Crea LIB (xa)Script, un sueño

Antonio, amigos: Trato de compilar \Samples\Scripts.prg con xMate y me reclama varias funciones: Unresolved external '_HB_FUN_TWINDOW' referenced from Script.Obj Unresolved external '_HB_FUN_TBAR' referenced from Script.Obj Unresolved external '_HB_FUN_TBTNBMP' referenced from Script.Obj Unresolved ...
by Armando
Tue Feb 03, 2015 4:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crea LIB (xa)Script, un sueño
Replies: 17
Views: 2371

WinUser() or another way to get Windows User

... function MESSAGEBOX Warning W8065 C:\Compiladores\FWH(10.6)\source\winapi\msgbox.c 80: Call to function 'hb_parni' with no prototype in function MSGYESNO Warning W8065 C:\Compiladores\FWH(10.6)\source\winapi\msgbox.c 90: Call to function 'hb_parni' with no prototype in function MSGNOYES Warning ...
by sambomb
Fri Jan 23, 2015 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WinUser() or another way to get Windows User
Replies: 4
Views: 1544

Re: problem with report

... := oCursorHand } ) DEFINE MESSAGE BAR OF oWnd TITLE FWCOPYRIGHT ; NOINSET DATE CLOCK KEYBOARD ACTIVATE WINDOW oWnd ; VALID ! lPreview .and. MsgYesNo( "Want to exit ?" ) return nil function BuildMenu() local oMenu MENU oMenu MENUITEM "&Generate Report" ACTION DoReport() ...
by davor0501
Fri Jan 23, 2015 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with report
Replies: 5
Views: 929

Getting the current active window handle

... "FiveWin.ch" function Main() local n,hwnd n:=Seconds() do while .t. sysrefresh() if seconds()>n+20 hWnd:=GetActiveWindow() if msgyesNo("Active Window handle is "+str(hWnd,10)+" Finish test ?") exit endif n:=Seconds() endif enddo ----
by Marco Turco
Tue Dec 09, 2014 11:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Getting the current active window handle
Replies: 11
Views: 1453

Valid firing twice

... xharbour but have found a problem with a valid firing twice - the problem does not occur with xharbour. The last valid after selecting YES in the MsgYesNo - saves the invoice but the MsgYesNo re appears    REDEFINE GET oInvc:subtotal ID EditSubTtl      of oDlg UPDATE   ...
by Colin Haig
Sat Nov 01, 2014 12:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Valid firing twice
Replies: 5
Views: 1108

Xbrowse ADO

... ; MENU BuildMenu() ; BRUSH oBrush DEFINE BUTTONBAR oBar OF oWnd DEFINE BUTTON FILENAME "..\bitmaps\Exit.bmp" OF oBar ; ACTION If( MsgYesNo( "Do you want to End ?", "Please, Select" ), oWnd:End(), ) ; MESSAGE "End this session" DEFINE BUTTON FILENAME ...
by brewster
Fri Oct 10, 2014 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 4
Views: 1127

Minha colaboração

... oRs:ActiveConnection := "Provider=VFPOLEDB.1;Data Source=c:\bazevani\loc.tmp;Mode=Read;Extended Properties=DBASE IV" catch If MsgYesno("Erro no acesso ao OLEDB Visual FoxPro, deseja baixa-lo agora? ","Drive VFP") ShellExecute( 0, "open", "http://www.bazevani.com.br/atualizacao/VFPOLEDBSetup.msi" ...
by ronaldo
Thu Aug 07, 2014 6:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Minha colaboração
Replies: 0
Views: 449

Re: Help to create a method

... ) ACTION oSelf:BuildDialog( oView, dDateFrom, dDateTo, nTimeFrom, nTimeTo ) if ! lNew MENUITEM "Delete appointment" ACTION If( MsgYesNo( "Are you sure?" ), oView:oCalex:DelCalInfo(), ) endif MENUITEM "Today" ACTION ( oView:SetDate( date() ), If( oView:IsKindOf( ...
by Silvio.Falconi
Sat Jun 14, 2014 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to create a method
Replies: 6
Views: 1234

Re: Como controlar de no agregar elemento vacio ARRAY TXBrowse..

... // SysRefresh() RETURN .T. STATIC Function DelReg( aTrabajo, oBrw1, TotVal, oDlg ) *------------------------------------------------------ IF MsgYesNo( "Atención: ¿Está seguro de querer borrar?","Verificar!" ) ADel( aTrabajo, oBrw1:nArrayAt ) ASize( aTrabajo, Len( aTrabajo ...
by jbrita
Tue Apr 22, 2014 4:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como controlar de no agregar elemento...SOLUCIONADOooo
Replies: 24
Views: 5102

Re: fwh 14.2 print preview issue with win xp

... oDlg:End() oWndC:Center() // ACTIVATE DIALOG oDlg NOWAIT RESIZE16 VALID iif(!GetKeyState( 27 ), oWndC:End(), .F.) ACTIVATE WINDOW oWndC VALID MsgYesNo( "Want to close it ?" ) return nil
by Antonio Linares
Sat Apr 19, 2014 6:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh 14.2 print preview issue with win xp
Replies: 18
Views: 4986

Re: fwh 14.2 print preview issue with win xp

... ACTION oDlg:End() oWndC:Center() ACTIVATE DIALOG oDlg NOWAIT RESIZE16 VALID iif(!GetKeyState( 27 ), oWndC:End(), .F.) ACTIVATE WINDOW oWndC VALID MsgYesNo( "Want to close it ?" ) return nil //----------------------------------------------------------------------------// function DoReport() ...
by davor0501
Fri Apr 18, 2014 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh 14.2 print preview issue with win xp
Replies: 18
Views: 4986

Message Timer

Is there a function to display a Message box with a timer? What I would like to do is display a box like MsgYesNo() but one that will time out after xx seconds. It will be used for an auto quit routine but I need to give the user the option to keep the program running. If they ...
by Jeff Barnes
Wed Mar 26, 2014 1:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Message Timer
Replies: 9
Views: 2783

Re: msgyesno boton 2 por defecto

gracias
by goosfancito
Mon Feb 24, 2014 1:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: msgyesno boton 2 por defecto
Replies: 2
Views: 321

Re: msgyesno boton 2 por defecto

MsgNoYes Boton No por defecto
MsgYesNo Boton Yes por defecto
by carlos vargas
Mon Feb 24, 2014 12:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: msgyesno boton 2 por defecto
Replies: 2
Views: 321

msgyesno boton 2 por defecto

Hola.
el MsgYeNo por defecto tiene el boton 1, se puede cambiar al 2? o sea al "No"?

gracioas.
by goosfancito
Sun Feb 23, 2014 11:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: msgyesno boton 2 por defecto
Replies: 2
Views: 321
PreviousNext

Return to advanced search