Search found 455 matches: nowait

Return to advanced search

Re: Browse of my ADO Class

... ] )   //hb_threadQuitRequest( aThreads[ nPos ] )   RETURN Nil  Remember that: - Dialogs are modal by default (for a dialog to be non-modal, the NOWAIT clause is used in the ACTIVATE, for example those used by TFolder and TFolderEx in each tab) - Once the threads are launched, we have no control ...
by cnavarro
Sun Oct 06, 2024 3:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browse of my ADO Class
Replies: 43
Views: 2086

Re: Usar dos monitores, mostrar cosas diferentes

... en otro dialogo para el segundo monitor, y al activarlo, debes calcular donde moverlo..... oApp:n2monitor := TestMonitores() ACTIVATE DIALOG oDlg2 NOWAIT ON INIT (oDlg2:Move(3, oApp:n2monitor + 4 ,,,.t.), https://i.ibb.co/0mx8BxP/2monitores.jpg //------------------------------------------------------------------------------------------------------------------------------------------ ...
by Willi Quintana
Fri Oct 04, 2024 4:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Usar dos monitores, mostrar cosas diferentes
Replies: 8
Views: 503

Re: FWH64 : ERROR SE SALE DEL SISTEMA

... := cCaption nWidth := oWait:nRight - oWait:nLeft ACTIVATE DIALOG oWait CENTER ; ON PAINT oWait:Say( 1, 0, xPadC( oWait:cMsg, nWidth ) ) ; NOWAIT SysRefresh() return (lVal) al cerrar el dialogo de sale el sistema ahora comente el uso de ambas funciones en mi proceso y la no ocuerre en esa ...
by CARLOS ATUNCAR
Tue Aug 20, 2024 2:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH64 : ERROR SE SALE DEL SISTEMA
Replies: 33
Views: 4399

Re: Change the window type

Do you mean a window or a dialog ?

You can disable other windows, so the non-modal becomes modal.

From modal to non-modal is better to close it and ACTIVATE it as NOWAIT (non modal)
by Antonio Linares
Mon Jul 08, 2024 9:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the window type
Replies: 1
Views: 231

Re: FWH 3.10 - problem with positioning dialog box

Dear Michel,

Do you use this ? Maybe you wrote ON MOVE by mistake:

ACTIVATE DIALOG ArcLeg RESIZE16 NOWAIT ON MOVE ArcLeg:Move(aRect[1],aRect[4],,,.T.)

or

ACTIVATE DIALOG ArcLeg RESIZE16 NOWAIT ON INIT ArcLeg:Move(aRect[1],aRect[4],,,.T.)
by Antonio Linares
Thu Nov 16, 2023 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 3.10 - problem with positioning dialog box
Replies: 3
Views: 378

IMPRESION ARCHIVOS PDF

... Facturas en PDF" FROM 1,1 TO 3,40 @0,2 SAY oText PROMPT xsay OF oIndex COLOR CLR_HBLUE Font m->oFontFis ACTIVATE DIALOG oIndex NOWAIT CENTER do while !eof() xnum:=99->numero VTA1100PE() // Genera los pdf sele 99 skip xsay:="Socio: "+strzero(99->cliente,4)+" ...
by pedroluis
Mon Oct 02, 2023 3:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRESION ARCHIVOS PDF
Replies: 27
Views: 3354

error TXBROWSE:CARGOS

... xnaudit ), dbCloseall() , princfac:End(), oWndChild:End() ) // when xLiderAudit = xNUsuario // cancel ACTIVATE DIALOG princfac CENTERED nowait ON INIT ( princfac:Move( 0, 0 ) ) //, oRich:LoadRtf( xobserva ), oRich:PostMsg( WM_KEYDOWN, VK_HOME, 0 )) oWndChild:nWidth := princfac:nWidth ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 521

Re: Change the transparency of the window

I am interested in a non-modal (NOWAIT) window
by Natter
Sat Apr 22, 2023 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 338

Ayuda por favor con folder y listbox

... font oSegoe ID 992 OF princfac ACTION ( lsave := .f., dbCloseall() , princfac:End(), oWndChild:End() ) // cancel ACTIVATE DIALOG princfac CENTERED nowait ON INIT princfac:Move( 0, 0 ) //, oRich:LoadRtf( xobserva ), oRich:PostMsg( WM_KEYDOWN, VK_HOME, 0 )) oWndChild:nWidth := princfac:nWidth + 7 ...
by jpcavagnaro
Wed Mar 29, 2023 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda por favor con folder y listbox
Replies: 1
Views: 286

still the ordkeycount error

... @ 10, 165 GET oGet VAR cSeek...... @ 110,10 XBROWSE oBrw SIZE -10,-10 PIXEL...... @ 10, 550 COMBOBOX oBrw:oSortCbx.... ACTIVATE DIALOG oDlg CENTER NOWAIT; VALID Chiudi_Dbf(oMisura) return nil STATIC FUNCTION Chiudi_Dbf(oMisura) oMisura:Close() RETURN .t. I have tried to recreate the error many ...
by Silvio.Falconi
Tue Mar 14, 2023 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: still the ordkeycount error
Replies: 7
Views: 634

Re: nowait

Thank you
by nageswaragunupudi
Tue Mar 14, 2023 7:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nowait
Replies: 9
Views: 948

Re: nowait

Antonio Linares wrote:So glad to see you here with us Dear Rao :-)


I'm happy for Rao recovery too!
by Enrico Maria Giordano
Mon Mar 13, 2023 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nowait
Replies: 9
Views: 948

Re: nowait

https://i.postimg.cc/pX9t0QG9/KK.png CORRECT WAY    ACTIVATE DIALOG oDlg NOWAIT ;      VALID ( oDbf:Close(), .T. ) return nil  Nages, I made as you wrote me  ACTIVATE DIALOG oDlg NOWAIT ;      VALID ( oDbf:Close(), .T. )  ...
by Silvio.Falconi
Mon Mar 13, 2023 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nowait
Replies: 9
Views: 948

Re: nowait

So glad to see you here with us Dear Rao :-)
by Antonio Linares
Mon Mar 13, 2023 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nowait
Replies: 9
Views: 948

Re: nowait

nageswaragunupudi wrote:
Silvio.Falconi wrote:Image



WRONG
Code: Select all  Expand view  RUN

   ACTIVATE DIALOG oDlg NOWAIT
   oDbf:Close()
return nil
 


CORRECT WAY
Code: Select all  Expand view  RUN

   ACTIVATE DIALOG oDlg NOWAIT ;
      VALID ( oDbf:Close(), .T. )
return nil
 


WELCOME BACK AMONG US
by Silvio.Falconi
Mon Mar 13, 2023 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nowait
Replies: 9
Views: 948
Next

Return to advanced search