samflex
08-14-2004, 05:55 PM
Hello all,
I am a first time visitor.
We currently have an access application that we need to transform to web application.
So far, several of the tasks have been successfully completed.
There is a functionality that I seem very stumped with.
We have a field called PRINTED. It has a value of true or false.
On the access application, a database is queried.
Once a hit is made, the user is given the option to print that screen.
If the screen is printed, a value of True is stored on the database.
By default, the value is false (if that record has not been printed before)
Essentially, when the database is queried and there is a hit, if that record has been printed before, there is a checkmark on the checkbox indicating it has been printed.
Can someone please give me a suggestion of this could be implemented with asp?
A sample code or link to one would be great.
This was not coded in access database.
I believe there was a built-in access database macro used to accomplish this task.
BTW: I am not even sure this is possible.
So far, the only thing I can think of is to create an sql update statement that says something like:
UPDATE table SET table.PRINTED = True
WHERE table.PRINTED = False;
I am just having problem coming up with an asp script that will put a checkmark on the PRINTED field when a record/records has/have been printed.
Thanks in advance.
I am a first time visitor.
We currently have an access application that we need to transform to web application.
So far, several of the tasks have been successfully completed.
There is a functionality that I seem very stumped with.
We have a field called PRINTED. It has a value of true or false.
On the access application, a database is queried.
Once a hit is made, the user is given the option to print that screen.
If the screen is printed, a value of True is stored on the database.
By default, the value is false (if that record has not been printed before)
Essentially, when the database is queried and there is a hit, if that record has been printed before, there is a checkmark on the checkbox indicating it has been printed.
Can someone please give me a suggestion of this could be implemented with asp?
A sample code or link to one would be great.
This was not coded in access database.
I believe there was a built-in access database macro used to accomplish this task.
BTW: I am not even sure this is possible.
So far, the only thing I can think of is to create an sql update statement that says something like:
UPDATE table SET table.PRINTED = True
WHERE table.PRINTED = False;
I am just having problem coming up with an asp script that will put a checkmark on the PRINTED field when a record/records has/have been printed.
Thanks in advance.