Search results

  1. K

    Question Converting to Access 2007

    I've only ever had a problem if having to go backward when working on a different machine (because why else would you back-step?) But Trevor G makes a good point - make sure you know all of the links and VBA to ensure everything is still active. I would back up somewhere seperate from the...
  2. K

    Updating a date text box from a text box

    Per the link VbaInet provided you, the syntax for the DateAdd function is: =DateAdd ( interval, number, date ) You have: dateadd ([termid], [termtype], [Date_of_last_calibration]) Check the field order. It should be: =DateAdd([TermType], [TermId], [Date_of_last_calibration]) This...
  3. K

    Question Parse Substring From Barcode with Variable Digit Count

    I'm assuming from your code indicating "integer" that when you state text field that you're just referring to the type of field property and not an alpha field. Is this a correct assumption? The data is all numeric. Would the text field property be more advantageous than the numeric? So - I...
  4. K

    Question Parse Substring From Barcode with Variable Digit Count

    I need to identify and parse (substring) a number of digits from a barcode. The barcode digit count will vary, based on the number of details included in the barcode. For example: the barcode for GS1 DataBar begins with a 4 digit code of 8110 identifying the code as GS1. The 5th digit then...
Top Bottom