Hi I was reading and practicing the grid function and when I read this function
count = Grid.GetRowCount("Grid1");
I thought this was to get some info to see if grid if empty or not:
I didn't get any result when data is in instead the empty status. If empty displays grid does not have any data but wether its some data in the grid does not call to the dialog okay! Am I missing something?
count = Grid.GetRowCount("Grid1");
I thought this was to get some info to see if grid if empty or not:
Code:
count = Grid.GetRowCount("Grid1"); if count < 0 then Dialog.TimedMessage("Please Wait...", "okay!", 2000, MB_ICONINFORMATION); else Dialog.TimedMessage("Please Wait...", "This grid does not have any data", 2000, MB_ICONINFORMATION); end
Comment