1

(3 replies, posted in Script)

I tried what you posted but cant seem to get the message. I don't know what I'm doing wrong.

If it helps the scan does not return a serial number, it returns text. This is an example:

Jennifer Molina 05/16/1920

2

(3 replies, posted in Script)

I have 2 tables

Members                                     Excluded
Barscan     TEXT                        ScanExcluded          TEXT
Line2         TEXT                         ReturnDate               DATE


What I wish to do is that when I press the Enter button on the form with the Barscan Input text, it will search the database in the ScanExcluded field and if the same information exists it will display the message "This person is Excluded"

Thanks for the help

Thanks it worked a lot

How am i able to translate the following script for MVD.

I wish to press enter and to set focus to the next textbox.



Procedure textBox1_KeyDown(object sender, KeyEventArgs e)
    {
      if (e.KeyCode == Keys.Enter)
      {
        textBox2.Focus();
      }
    }

5

(3 replies, posted in Script)

Thank you very much. These worked really well.

6

(3 replies, posted in Script)

Looking how to create a script where the expiration datepicker automatically shows +30 days once you select the inspection datepicker on the form.
If possible the expiration can not be edited. Basically "Read Only". But, if this can't work thats ok.

table tCertificate
Inspection DATETIME
Expiration DATETIME

I'm still new with this program and sql in general. I've done sveral ways but none seem to work.