FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour another little problem
Posts: 1091
Joined: Thu Nov 17, 2005 11:08 AM
another little problem
Posted: Fri Sep 28, 2012 11:32 AM
Please,
compile this little sample program.
Put it in background.
When the program is in background, be sure that the top is visible
To bring the application in foreground click in the headers.
The headers disappear
If You click again in a cell headers appear


Bye



Code (fw): Select all Collapse
#include "fivewin.ch"

FUNCTION MAIN()
LOCAL oDlg

USE customer

DEFINE DIALOG oDlg FROM 1 , 1 TO 400 , 400 PIXEL

 @ 1 , 1 LISTBOX FIELDS OF oDlg SIZE 150 , 150 PIXEL

   ACTIVATE DIALOG oDlg CENTER

RETURN NIL
Marco Boschi
info@marcoboschi.it
Posts: 1091
Joined: Thu Nov 17, 2005 11:08 AM
Re: another little problem
Posted: Sun Sep 30, 2012 05:34 PM

UP

Marco Boschi
info@marcoboschi.it
Posts: 117
Joined: Tue Jan 03, 2006 06:18 PM
Re: another little problem
Posted: Mon Oct 01, 2012 05:19 AM
Dear Marco,

Try this


Code (fw): Select all Collapse
#include "fivewin.ch"

FUNCTION MAIN()
LOCAL oDlg
local olistbox

USE customer

DEFINE DIALOG oDlg FROM 1 , 1 TO 400 , 400 PIXEL

 @ 1 , 1 LISTBOX olistbox FIELDS OF oDlg SIZE 150 , 150 PIXEL update
        
   ACTIVATE DIALOG oDlg CENTER ;
    on init olistbox:lKinetic:=.f.

RETURN NIL


regards,

kok
Posts: 1091
Joined: Thu Nov 17, 2005 11:08 AM
Re: another little problem
Posted: Mon Oct 01, 2012 07:01 AM

Ok,
but can you briefly explain this parameter?
Many thanks
marco

Marco Boschi
info@marcoboschi.it

Continue the discussion