I have an application that I developed last year and am upgrading.
I've moved to a pageframe control which works very well.
My problem is with a 'previous path' selection combo. this has worked for ages with the following code to populate in in the main form's init procedure
Now I only see one entry when I get to that page (page1).
I just don't know what combo property or code line could do that to me. Can anyone suggest anything to get me out of my misery?
Thanks
Bryan
I've moved to a pageframe control which works very well.
My problem is with a 'previous path' selection combo. this has worked for ages with the following code to populate in in the main form's init procedure
Code:
cTablename = "paths"
IF file(cTablename+".dbf")
IF !USED(cTablename)
USE (cTablename) in 0
ENDIF
SELECT (cTablename)
GO top
*!* COPY to temp
IF reccount() >0
SELECT myPath FROM paths INTO ARRAY aListPaths
IF VARTYPE(aListPaths) = "U"
DIMENSION aListPaths(1)
aListPaths(1) = ""
ENDIF
ELSE
DIMENSION aListPaths(1)
aListPaths(1) = ""
ENDIF
ENDIF
Now I only see one entry when I get to that page (page1).
I just don't know what combo property or code line could do that to me. Can anyone suggest anything to get me out of my misery?
Thanks
Bryan