Zum Hauptinhalt gehen

Suche

Suche

Data entry hold all data from previous print job until "Cancel" is selected on data entry form

Kommentare

2 Kommentare

  • Avatar
    Hanna Showers

    Here is my script currently as is:

    Dim userchoice
    userchoice = MsgBox ("Selecting No will clear all data fields", 4, "Would you like to continue printing labels?")
    Format.NamedSubStrings("Quantity").Value = ""
    if userchoice = 7 Then
      Format.NamedSubStrings("CustomerName").Value =  ""
      Format.NamedSubStrings("CustomerPartNumber").Value = ""
      Format.NamedSubStrings("LotNumber").Value = ""
      Format.NamedSubStrings("PartDescription").Value = ""
      Format.NamedSubStrings("Revision").Value = ""
      Format.NamedSubStrings("UnitofMeasure").Value = ""
     
      
    End If

     

    The values listed above CustomerName, LotNumber etc.. those are values entered by the operator at print time. I cannot figure out how to reference the database in a similar fashion.

     

    Thank you for any help!

    0
  • Avatar
    Peter Thane

    I think the Database query is the only one you cannot set to remember. 

    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.