FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FOLDER and PIXEL
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM
FOLDER and PIXEL
Posted: Thu May 03, 2012 08:09 AM
Hello Antonio ,

The command PIXEL in the folder class doesn't work
Code (fw): Select all Collapse
 #include "fivewin.ch"

 Function Main()
 
 Local oDlg,oFld   
 Local aMonitor  := GetClientRect( GetDesktopWindow() )

 aMonitor[3] -= 60   //  TaskBAr 
 aMonitor[4] -= 10
 
 DEFINE DIALOG  oDlg FROM  aMonitor[1] ,aMonitor[2] TO aMonitor[3] ,aMonitor[4]  PIXEL TITLE 'test'  
 
  @ 0, 0 FOLDER oFld PROMPT "Folder 1", "Folder 2" PIXEL   ;
       OF oDlg     SIZE aMonitor[4] ,aMonitor[3] - 100
            
 
 ACTIVATE DIALOG  oDlg 
 
 Return nil


Regards Maurizio

Continue the discussion