hi Enrico,
please use Sample "as it is" without "modification" to get "Problem" which i got.
what i have "comment out" are (working) Solution i found
c:\fwh\source\classes\folder.prg
c:\fwh\source\classes\tpages.prg
c:\fwh\source\classes\ttabctrl.prg
c:\fwh\source\classes\window.prg
::Create( "SysTabControl32" )
Question : what is the Difference "oTabs OF oMain" vs. "oMain:oClient = oTabs"
@ r,c TABS oTabs OF oWnd <otherClause>
oWnd:oClient := oBrw
nageswaragunupudi wrote:
- Code: Select all Expand view
oWnd:oClient := oBrw
oBrw occupies the entire client area of oWnd. When oWnd is resized, oBrw also is resized to fit inside the Parent window's client area.
Jimmy wrote:hi Enrico,
please use Sample "as it is" without "modification" to get "Problem" which i got.
what i have "comment out" are (working) Solution i found
#include "FiveWin.ch"
MEMVAR oMain, oTabs, oStatusBar
PROCEDURE Main()
LOCAL nHeight := 1024
LOCAL nWidth := 1280
PRIVATE oMain, oTabs, oStatusBar
DEFINE WINDOW oMain FROM 0,0 TO nWidth, nHeight PIXEL TITLE "FiveWin TGrid Listview Demo "
* #define working
#IFDEF working
oTabs := TFolder():New( 3, 3,{"no_1"} , , oMain, 1, , , .t.,;
.f., oMain:nRight - oMain:nLeft, oMain:nBottom - oMain:nTop )
#ELSE
oTabs := TFolder():New( 3, 3,{""} , , oMain, 1, , , .t.,;
.f., oMain:nRight - oMain:nLeft, oMain:nBottom - oMain:nTop )
oTabs:DelItemPos( 1 )
oTabs:AddItem("Grid_1")
* oTabs:AddItem("Grid_2")
#ENDIF
oTabs:SetOption( 1 )
@ 20, 10 BUTTON "blabla" SIZE 300,200 OF oTabs:aDialogs[ 1 ] PIXEL ACTION MsgInfo("blabla")
DEFINE STATUSBAR oStatusBar PROMPT "Hello World " OF oMain SIZES nWidth - 100 CLOCK
ACTIVATE WINDOW oMain CENTER
RETURN
oTabs:DelItemPos( 1 )
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 28 guests