Hi: I like to create a button for digital signature. Assume I have a table (tbl_Records) taht has 7 fields. Fields 1 to 4 are memo fields to take data entry. Field 5 is Yes/No field indicates Signed or Not. Field 6 is User name and field 7 is Password. frm_Records is the form to feed tbl_Records with same fields of tbl_Records. The idea is this:
1. In frm_Records, Users can enter data in fileds 1 to 4. After they finish, if they want to sign,they have to enter in the field of username (field 6) and password (field 7). If both fields match, the button for Signature (btn_ToSign) will become visible for user to click.
2. After the authenticated user click on the btn_ToSign, he will be prompt with a confirmation window to confirm that he wants to digital sign the record, and inform the user that after the signing process the record can not be edited any more.
3. If the user chooses to proceed and sign, the field 5 (Signed-Unsigned) will change from Unsigned to Signed. The field 5 in tbl_Records will be changed form No to Yes
(Signed).
Placing Field 6(User name) and 7(password)in the same form is just my idea, maybe it in not the best to setup in this way. The other option is to autheticate users when they login the program. Anybody who is logined can open the frm_Records to enter the data and decide to sign or not. Under this option, we won't need Field6 and 7 in frm_Records. Either way is fine with my work. Which way is better? How to do it? Please advise. Thanks.
Catty
1. In frm_Records, Users can enter data in fileds 1 to 4. After they finish, if they want to sign,they have to enter in the field of username (field 6) and password (field 7). If both fields match, the button for Signature (btn_ToSign) will become visible for user to click.
2. After the authenticated user click on the btn_ToSign, he will be prompt with a confirmation window to confirm that he wants to digital sign the record, and inform the user that after the signing process the record can not be edited any more.
3. If the user chooses to proceed and sign, the field 5 (Signed-Unsigned) will change from Unsigned to Signed. The field 5 in tbl_Records will be changed form No to Yes
(Signed).
Placing Field 6(User name) and 7(password)in the same form is just my idea, maybe it in not the best to setup in this way. The other option is to autheticate users when they login the program. Anybody who is logined can open the frm_Records to enter the data and decide to sign or not. Under this option, we won't need Field6 and 7 in frm_Records. Either way is fine with my work. Which way is better? How to do it? Please advise. Thanks.
Catty