read my last post, technically correct but may be confusing to some users.
should have been
select table1
set order to date &&must have this index
scan for date={01/01/2002} &&or some other statement
scatter memvar
insert into table2 from memvar
endscan
set the order on the origin table first
select table1
set order to date &&must have this index
scan for date={01/01/2002} &&or some other statement
insert into table2
endscan
I create different exe's all the time. I use it when I have a new version of my program that needs to go out for the next day. I place the new file (program and newprogram) in the same directory as the old version and I have a script that runs after office hours to change the rename both (old...
this doesn't have anything to do with the query but if a customer moves and changes their phone number you will have a problem. Better off assigning a customer id to each customer.
try this
select [origintable]
set order to
scan for inlist(jobno,"NM7000","NM7001")
scatter memvar
if jobno=,"NM7000"
insert into NM7000 from memvar
tableupdate() &&if buffered
else
insert into NM7001 from memvar
tableupdate() &&if buffered...
The textboxes will always have a value showing unless your pointer is setting on a blank record (assuming the controlsource are the fields in a table).
There are ways around this, one method is setting the controlsource to M.[fieldname] then using scatter memvar and thisform.refresh to populate...
try
IF EMPTY(THIS.VALUE) OR THIS.VALUE>DATE()-7
RETURN 1
ELSE
Messagebox("INVALID DATE: Date Recieved cannot be More than 7 days prior to today.",0, "Error")
RETURN 0
ENDIF
The executable will always look for the tables in relation to where it was compliled. compile the exe on c drive the copy it to the destination drive. as long as your data structure is the same as your c drive it will work just fine there.
If you are in the project manager,
1. Drop a control on a blank form..Example textbox
2. Format the control as desired..Example change font
3. Make sure the control is selected
4. Go to File> Save as class
5. Save the selected control to the desired folder in your project (I always have an empty...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.