Hello out there,
I need some help. I have made an application for my company using Paradox for Windows v1. It works more or less good on Windows Xp, however, I want to use Paradox 9 due to WYSIWYG problems. The major part of the application is executable in Paradox 9, except one thing (at leats at this time being). In some of the forms I use pop-up menus that get data from tables, using arrays. When I try to open a form that use such pop-up menu I get an error message reading "The number of menu items has exceeded the limit set". That is the var I use:
Var
ClientPU PopUpMenu
fldVal anyType
tc TCursor
ClientArray Array[] String
endVar
and the method itself:
method addClientPopUp()
ClientPU.empty()
ClientArray.empty()
tc.open(":accounts:clients.db")
scan tc:
tc.fieldValue("clientname", fldVal)
ClientArray.addLast(fldVal)
endScan
ClientPU.addStaticText("Frequent Clients")
ClientPU.addSeparator()
ClientPU.addArray(ClientArray)
tc.close()
endmethod
This works in Pdox1, but I can't figure out how should I solve this in Pdox9. Can you help me please? and sorry if it was too long.
Thanks,
guesswho@axelero.hu