Search found 111 matches: wndmain

Return to advanced search

Re: Newbie Question : XBROWSE

... Windows: In an application, the Window that is first activated is the Main Window. During the application, we can query this window by "oWndMain := WndMain()". Activation of the main window is always MODAL. Activation of ALL other windows are NONMODAL invariably. Dialogs: All dialogs ...
by nageswaragunupudi
Sat Nov 26, 2022 5:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1482

Re: Un pequeño "lío" con diálogos modales y NO Modales

AngelSalom wrote:
José Luis Sánchez wrote:Creo que si a cada dialogo le dices quien es el padre ya no tienes el problema, cuando crees el segundo dialogo usas OF oParent y listo.

Saludos,


No, en ese caso la ventana principal ( wndmain() ) es accesible.


Así es, solo es modal respecto a su contenedor padre pero no para el resto
by cnavarro
Fri Jul 02, 2021 12:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un pequeño "lío" con diálogos modales y NO Modales
Replies: 5
Views: 696

Re: Un pequeño "lío" con diálogos modales y NO Modales

José Luis Sánchez wrote:Creo que si a cada dialogo le dices quien es el padre ya no tienes el problema, cuando crees el segundo dialogo usas OF oParent y listo.

Saludos,


No, en ese caso la ventana principal ( wndmain() ) es accesible.
by AngelSalom
Fri Jul 02, 2021 11:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un pequeño "lío" con diálogos modales y NO Modales
Replies: 5
Views: 696

duda Ribbon

Hola: Al hacer más pequeña la ventana WndMain con una ribbon, o bien porque la resolución del usuario es menor y no caben todos los botones, ¿sería posible que el control hiciera más pequeños los bitmaps de los botones para hacer el reajuste ...
by MOISES
Thu Apr 02, 2020 6:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: duda Ribbon
Replies: 2
Views: 463

Re: F1 should open HTML file on internet

... page? Thank you in advance Otto DEFINE BUTTON FILE ".\bitmaps2\P2.bmp" OF oBar ; ACTION ; TOOLTIP { || SetHelpFile("test"), WndMain():nHelpID := "test" , cToolTip := {DIREKTHILFE,"text" } }; PROMPT "Z-Plan" Otto try command SET KEY F1 TO YourFunction()
by wartiaga
Fri Jan 31, 2020 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: F1 should open HTML file on internet
Replies: 3
Views: 694

F1 should open HTML file on internet

... page? Thank you in advance Otto DEFINE BUTTON FILE ".\bitmaps2\P2.bmp" OF oBar ; ACTION ; TOOLTIP { || SetHelpFile("test"), WndMain():nHelpID := "test" , cToolTip := {DIREKTHILFE,"text" } }; PROMPT "Z-Plan"
by Otto
Fri Jan 31, 2020 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: F1 should open HTML file on internet
Replies: 3
Views: 694

Insertar/Modificar registros en ACCESS

... oDg, "Marcas", adLockBatchOptimistic ) DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-12 DEFINE WINDOW oDlg MDICHILD OF WndMain() TITLE cTitulo @ 0,0 XBROWSE oBrw ; COLUMNS "cCodMar", "cDesMar" ; OF oDlg ; RECORDSET oRs ; AUTOSORT FOOTERS FASTEDIT ...
by juanjogascem
Tue Dec 03, 2019 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar/Modificar registros en ACCESS
Replies: 5
Views: 869

Re: Preview Window size

... OVERRIDE METHOD Activate() IN CLASS TPreview WITH Myactivatefunction return nil Function Myactivatefunction() local Self := HB_QSelf() local hWndMain if ::oWnd == nil return nil endif if ::bSetUp != nil Eval( ::bSetUp, Self, ::oWnd ) endif ACTIVATE WINDOW ::oWnd MAXIMIZED ; ON RESIZE ( ::PaintMeta(), ...
by Silvio.Falconi
Tue Oct 15, 2019 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preview Window size
Replies: 6
Views: 828

Problem with Tplan : Cargo Error

... => MAIN( 29 ) I need to insert Tplan into a Dialog this Dialog id made with ::nStyle := nOR( WS_CHILD, 4 ) because it is create on WndMain on thid Dialog I inser a Panel oPanelBook where I insert Tplan Obj as you can see on Picture I have error when I wish move the bargraph or resize ...
by Silvio.Falconi
Mon Jul 01, 2019 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Tplan : Cargo Error
Replies: 26
Views: 2827

Re: zoom and unzoom

Silvio, I wish insert a slider on bottom of window and zoom and unzoom particular section of wndmain ( and all controls are showed) I tested to zoom sections but NOT in edit-mode only viewing that works on cursorposition the area is defined with a given size from a bottom ...
by ukoenig
Sat May 04, 2019 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: zoom and unzoom
Replies: 5
Views: 1047

zoom and unzoom

I wish insert a slider on bottom of window and zoom and unzoom particular section of wndmain ( and all controls are showed)
How make it ?
by Silvio.Falconi
Sat May 04, 2019 8:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: zoom and unzoom
Replies: 5
Views: 1047

Re: Meter or Progress on Msgbar

yes of course But on Wndmain I have a Msgbar with 3 Msgitem
and I wish insert this meter on ::oMsgitem3
when I try it make error hwnd
by Silvio.Falconi
Mon Apr 15, 2019 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Meter or Progress on Msgbar - Resolved!!
Replies: 5
Views: 816

Re: Menus and Menubar Painting errors

... right, I had not seen that you were talking about the Preview menu. I was not talking about the main menu of the application. This occurs when the WndMain window is TMDIFRAME It was difficult to find and fix the bugs that had the menus in the MDI windows, and I thought that this issue was also ...
by cnavarro
Mon Apr 30, 2018 3:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Menus and Menubar Painting errors
Replies: 3
Views: 1115

Re: xbrowse to csv

WndMain()
by nageswaragunupudi
Wed Jan 24, 2018 3:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse to csv
Replies: 5
Views: 923

Forms o Ventanas abiertas

Necesito saber los Forms o Ventanas abiertas en mi aplicación.

Hay una función que me devuelva las oWnd/oDlg abiertas ???

Algo así como WndMain():aForms ...

Gracias.
by Xevi
Wed Dec 20, 2017 7:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forms o Ventanas abiertas
Replies: 4
Views: 1025
Next

Return to advanced search