Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
my req is i want see all 100 table names ?
how?
add a listbox with
$Table
Hi manojqlik,
you can use the NoOfTables() function to loop through all the tables in RAM (after you have executed the BINARY LOAD), like this
LET nooftab=NoOfTables();
for i = 1 to $(nooftab)
let a= TableName(0);
NEXT i
Then you can append the TAbleName() in every iteration to a little Dummy_Table (that you have to initiate before you start that loop)
HTH
Best regards,
DataNibbler