see this image :
I only made this:
- Code: Select all Expand view
#define EVENT_SIP 224
oDlgClient:bSettingChange := {|uVal| PocketEvent( uVal,oDlgClient ) }
...
ACTIVATE DIALOG oDlgClient;
ON INIT ( DlgFullScreen( oDlgClient:hWnd ), oDlgClient:SetMenu( DialogBar(oDlgClient,oLbx) ) )
*----------------------------------
STATIC FUNCTION PocketEvent( uVal,oDlg )
*----------------------------------
DO CASE
CASE uVal == EVENT_SIP ; Dimensiona(oDlg)
ENDCASE
RETU NIL
*---------------------------
STATIC FUNCTION Dimensiona(oDlg)
*---------------------------
IF SipInfo()
MoveWindow( oDlg:hWnd, 25, 0, 240, 185 )
ELSE
DlgFullScreen( oDlg:hWnd )
// MoveWindow( oDlg:hWnd, 28, 10, 220, 260 )
ENDIF
oDlg:Refresh()
RETU NIL
the problem I cannot see the listbox bottom scroll .... where is it ?