I've see a strange behavior with ExplorerBar and a TGet: if you write in TGet and move the mouse the TGet lost the value.
Small example: write what do you want in the get and then move the mouve over the title of the panel.
Code: Select all
#include "FiveWin.ch"
PROC Main()
LOCAL cText := Space(30)
LOCAL oWnd, oExpBar, oPanel, oGet
DEFINE WINDOW oWnd TITLE "Test"
oExpBar := TExplorerBar():New( 60, 10, oWnd:nWidth, 100, oWnd )
oPanel := oExpBar:AddPanel("Panel")
oPanel:lSpecial := .T.
@ 40,10 GET oGet VAR cText OF oPanel PIXEL SIZE oPanel:nWidth - 20,18
oWnd:oClient := oExpBar
ACTIVATE WINDOW oWnd
RETURN