Search found 68 matches: dialogboxes

Return to advanced search

Re: How To create a DashBoard

Vilian,

I would propose to use non modal dialogboxes for each one of the frames,
and place those non modal dialogs on top of the pages of a Control TPages.

For the left side menu you could use a listbox or a TXBrowse, and from its ON CHANGE
you will show the right page of the TPages
by Antonio Linares
Tue Feb 02, 2016 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To create a DashBoard
Replies: 41
Views: 7005

New FTDN August/Agosto 2015 (FWH 15.08)

... mode and tablet mode, on PC, Tablet, phone. This function returns .t. when the OS is Windows 10 and display is in Tablet mode. * Fix: Non modal dialogboxes (or resources and from memory template) were not properly working with FWH Unicode FW_SetUnicode( .T. ). Now it is ok. * Enhancement: Updated ...
by Antonio Linares
Wed Sep 09, 2015 9:12 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2015 (FWH 15.08)
Replies: 12
Views: 3465

Re: Version 13.05 unstable ?

... ) to the beginning of samples/fivedbu.prg and: CheckRes() as the last line before return nil. And after opening many child windows, using browses, dialogboxes and reports preview, this is all I got inside checkres.txt 13/06/2013 23:42:08: BRUSH,-1257235400,TCOMBOBOX:SETCOLOR(2540)->TCOMBOBOX:NEW(207)->TPREVIEW:BUILDWINDOW(511)->TPREVIEW:NEW(136)->RPREVIEW(1634)->(b)TREPORT_NEW(187)->TREPORT:ACTIVATE(883)->TXBROWSE:REPORT(7005)->(b)EDIT(957)->TBTNBMP:CLICK(466)->TBTNBMP:LBUTTONUP(657)->TCONTROL:HANDLEEVENT(1719)->TBTNBMP:HANDLEEVENT(1446)->_FWH(3180)->WINRUN(0)->TMDIFRAME:ACTIVATE(993)->MAIN(70) ...
by Antonio Linares
Thu Jun 13, 2013 9:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Version 13.05 unstable ?
Replies: 18
Views: 5309

Re: Version 13.05 unstable ?

Tim,

Please check if there are error.log files so we can check what kind of errors are going on.

I am going to check resources consume with FiveDBU which uses dialogboxes, browses and buttonbars
by Antonio Linares
Thu Jun 13, 2013 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Version 13.05 unstable ?
Replies: 18
Views: 5309

Re: runadoc - generador de informes

Here it is:
https://code.google.com/p/fivewin-contributions/downloads/detail?name=RUNADHOC.zip

I get several dialogboxes but finally no report is shown. Silvio, could you post some screenshots ? thanks
by Antonio Linares
Wed Apr 24, 2013 9:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: runadoc - generador de informes
Replies: 8
Views: 1498

Re: Behaviour of GET on TMDIChild differs from TDialog

... Resources editors, as the one provided in PellesC or the Borland Resources Workshop, always use dialog units. Those editors only allow to design dialogboxes, not windows. To place a control on a window we usually use: @ nRow, nCol <CONTROL_NAME> ... OF <Container_Window> SIZE nWidth, ...
by Antonio Linares
Tue May 15, 2012 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Behaviour of GET on TMDIChild differs from TDialog
Replies: 7
Views: 1437

Re: Behaviour of GET on TMDIChild differs from TDialog

Josep,

Also keep in mind that dialogboxes use "dialog base units" meanwhile the MdiChild windows use pixels:

viewtopic.php?p=119360#p119360
by Antonio Linares
Mon May 14, 2012 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Behaviour of GET on TMDIChild differs from TDialog
Replies: 7
Views: 1437

New FTDN April/Abril 2012 (FWH 12.04)

... * Fix: Ownerdraw ListBoxes and Comboboxes were not properly setting theor bitmaps size when using non modal dialogboxes. Now it is ok: http://forums.fivetechsupport.com/viewtopic.php?p=127827#p127827 * Fix: Minor fix in Class TBtnBmp for horizontal painting ...
by Antonio Linares
Sun Apr 29, 2012 3:41 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2012 (FWH 12.04)
Replies: 0
Views: 1408

Re: Nuevo build de FiveMac disponible

Nuevo build disponible:

* Enhancement: GETs now support the clause PASSWORD. Please review samples\login.prg.
Thanks to Manuel Alvarez!

* Enhancement: DialogBoxes are non reasizable, same behavior as in Windows.
by Antonio Linares
Sun Jul 04, 2010 9:36 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Nuevo build de FiveMac disponible
Replies: 15
Views: 3667

Re: New FiveMac build available

New build available:

* Enhancement: GETs now support the clause PASSWORD. Please review samples\login.prg.
Thanks to Manuel Alvarez!

* Enhancement: DialogBoxes are non reasizable, same behavior as in Windows.
by Antonio Linares
Sun Jul 04, 2010 9:35 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: New FiveMac build available
Replies: 16
Views: 6788

Re: Dialog controls are flickering when resized..

Frances,

My mistake, I missed to remember that dialogboxes are not (Windows) subclassed so there is no a valid ::nOldProc.

We may need to subclass the dialog calling Method ::Link(). But we need to find the right place to call it.
by Antonio Linares
Sun Jun 06, 2010 7:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog controls are flickering when resized..
Replies: 34
Views: 9123

Re: Dialog controls are flickering when resized..

Frances,

In order to avoid the flickering of a dialog, double buffer painting technique has to be used.

FWH currently does not implement double buffer painting in dialogboxes, though we could easily implement it. Basically all is needed is to redefine the Method Paint()
by Antonio Linares
Sat Jun 05, 2010 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog controls are flickering when resized..
Replies: 34
Views: 9123

Re: Hide controls in a dialog before activating it.

Hi. dialogboxes don't exist until they are created and running. That is the point ! In my conception, if something do not exists and I will create it, I would inspect each of it´s components and create them according they current ...
by concentra
Fri May 28, 2010 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide controls in a dialog before activating it.
Replies: 20
Views: 3492

New FTDN May/Mayo 2010 (FWH 10.5)

... build. * New: Class TBitmap Method MouseLeave() and new DATA bMLeave. Thanks to Lailton! * New: Class TSkin to set user defined skins to your dialogboxes! Please review samples\skin1.prg and samples\skin2.prg. Thanks to Lailton! Skins used bitmaps are located in folder samples\blue_skin, black_skin, ...
by Antonio Linares
Thu May 27, 2010 9:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2010 (FWH 10.5)
Replies: 2
Views: 2124

Re: Hide controls in a dialog before activating it.

James,

It is the way Windows API does it: windows are created since the very first moment, but dialogboxes have a different behavior and they don't exist until they are created and running.
by Antonio Linares
Thu May 27, 2010 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide controls in a dialog before activating it.
Replies: 20
Views: 3492
Next

Return to advanced search