Using GoRight() and GoToCol() methods I noticed that the first columns of the browse are sometimes shifted left and no more visible even if there are plenty of space for them.
Any workaround?
EMG
Using GoRight() and GoToCol() methods I noticed that the first columns of the browse are sometimes shifted left and no more visible even if there are plenty of space for them.
Any workaround?
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oBrw
USE CUSTOMER
DEFINE WINDOW oWnd
@ 0, 0 XBROWSE oBrw ALIAS "CUSTOMER"
oBrw:CreateFromCode()
ACTIVATE WINDOW oWnd;
ON INIT ( oWnd:SetSize( 850, 600 ),;
oWnd:oClient := oBrw,;
oBrw:GoToCol( 4 ) )
CLOSE
RETURN NIL#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oBrw
USE CUSTOMER
DEFINE DIALOG oWnd
@ 0, 0 XBROWSE oBrw ALIAS "CUSTOMER"
oBrw:CreateFromCode()
ACTIVATE DIALOG oWnd;
ON INIT ( oWnd:SetSize( 850, 600 ),;
oBrw:AdjClient(),;
oBrw:GoToCol( 4 ) )
CLOSE
RETURN NIL#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oBrw
USE CUSTOMER
DEFINE WINDOW oWnd
@ 0, 0 XBROWSE oBrw ALIAS "CUSTOMER"
oBrw:CreateFromCode()
ACTIVATE WINDOW oWnd;
ON INIT ( oWnd:SetSize( 850, 600 ),;
oBrw:SetSize( 10000, 10000 ),;
oWnd:oClient := oBrw,;
oBrw:GoToCol( 4 ) )
CLOSE
RETURN NIL