Hi,
I need to create a single dialog with more than 128 object, i CANNOT use folders.
Is it a limit of FWH ?
Tks
#include "FiveWin.ch"
function Main()
local oDlg, n, aValues := Array( 150 )
local nRow, nCol
for n = 1 to Len( aValues )
aValues[ n ] = Str( n, 3 )
next
DEFINE DIALOG oDlg TITLE "More than 128 controls" FROM 2, 2 TO 30, 48
n = 1
for nRow = 1 to 15
for nCol = 1 to 10
TGet():New( nRow - 0.5, nCol * 2 - 0.7, GenBlock( aValues, n++ ) )
next
next
ACTIVATE DIALOG oDlg CENTERED
return nil
function GenBlock( aValues, n )
return bSETGET( aValues[ n ] )
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: Natter and 58 guests