Hello,
I’ve come to a point in my current project where I am stumped, I’m not sure if I’m going to right way about it or I’m trying to do stuff out of my league.
Here is my problem, I have one table that data gets pooled to now this is a lot of data that is going to need to be sorted and then displayed in grids or single values displayed in text boxes, I’m going to us indexes to filter the data and then do whiles to point to the correct record I want by doing
SELECT"epamonitor2"
GO BOTTOM
DO WHILE ALLTRIM(tagname) !="tagnamething"
SKIP -1
IF BOF()
MESSAGEBOX("Error, Could not find file.","End of File",64,1)
ENDIF
ENDDO
Now I’m not sure if this is the best way, but it seems to work in the command window… but what I need help with is displaying different values in multiple text boxes on the same page, I I’m not sure if this is simple and I’m just making more work for my self, but I’ve spent all week on this now and I feel like I’m going crazy.
Thanks for any help you can give me and sorry if this is hard to understand.
I’ve come to a point in my current project where I am stumped, I’m not sure if I’m going to right way about it or I’m trying to do stuff out of my league.
Here is my problem, I have one table that data gets pooled to now this is a lot of data that is going to need to be sorted and then displayed in grids or single values displayed in text boxes, I’m going to us indexes to filter the data and then do whiles to point to the correct record I want by doing
SELECT"epamonitor2"
GO BOTTOM
DO WHILE ALLTRIM(tagname) !="tagnamething"
SKIP -1
IF BOF()
MESSAGEBOX("Error, Could not find file.","End of File",64,1)
ENDIF
ENDDO
Now I’m not sure if this is the best way, but it seems to work in the command window… but what I need help with is displaying different values in multiple text boxes on the same page, I I’m not sure if this is simple and I’m just making more work for my self, but I’ve spent all week on this now and I feel like I’m going crazy.
Thanks for any help you can give me and sorry if this is hard to understand.