Rats! Can't figure why this fails?
The query doesn't run. The pop up data entry window (Xdate) doesn't open.
Knowing me its got to be something stupid!
Any ideas . . . ?
Thanks much . . . Rick
The query doesn't run. The pop up data entry window (Xdate) doesn't open.
Knowing me its got to be something stupid!
Any ideas . . . ?
Thanks much . . . Rick
Code:
method action(var eventInfo ActionEvent)
var;----------------Declare Variables-------------
OCDownloadLND table
QueryAddToLand table
q query
i longint
endVar;-------------End Variable List-------------
addAlias("MYDIR","Standard","D:\\DownloadData")
;-------------------------------------------------
Xdate = "Enter the Date Range"
Xdate.view("OFFMARKETDATE")
q=query
Query
ANSWER: :Pdoxwin7\\WORK:QueryAddToLand.DB
D:\DownloadData\OCDownloadLND.DB | STREETNUM | STREETNAME | CITY |
| CheckPlus | CheckPlus | CheckPlus |
D:\DownloadData\OCDownloadLND.DB | LISTPRICE | SALESPRICE |
| CheckPlus | CheckPlus |
D:\DownloadData\OCDownloadLND.DB | OFFMARKETDATE | OFFICELIST |
| CheckPlus ~Xdate | CheckPlus |
D:\DownloadData\OCDownloadLND.DB | PRPOFFICENAME | OFFICESELL |
| CheckPlus | CheckPlus |
D:\DownloadData\OCDownloadLND.DB | OFFICESELL_OFFICENAME | LISTSTATUS |
| CheckPlus | closd or CLOSD |
EndQuery
if not q.executeQbe()then
errorShow()
return
endif
Message("Finished Land Query Parsing Your Eminence . . . ")
endMethod