Search results

  1. S

    Making Combo Box ASPX

    <P> <form runat="server"> Has Customer been Contacted? <asp:dropdownlist id="list1" runat="server"> </asp:listitem>Yes</asp:listitem> </asp:listitem>No</asp:listitem> <asp:dropdownlist> </form> I thought about using a drop list...but I'm unsure as...
  2. S

    Making Combo Box ASPX

    Greetings I'm currently trying to determine how to make a combo box which is connected to the data I queried using SqL Command object. I want to learn how to make a combo box in which the user will be able to choose either "true" or "false" in doing so it will show they desire. Currently I was...
  3. S

    Verify first 2 digit of zip code

    Thank you so much for your help Wayne Ryan!
  4. S

    Verify first 2 digit of zip code

    Private Sub Postal_Code_BeforeUpdate(Cancel As Integer) If IsNull([Postal Code]) Then strMsg = "You must enter a Zip Code" strTitle = "Zip Code Required" MsgBox strMsg, vbOKOnly, strTitle Cancel = True Else If Not Left([Postal Code], 2) = "73" And Not Left([Postal Code], 2) = "74" And Not...
  5. S

    Verify first 2 digit of zip code

    Thank you for your help KernelK I was confused with the question in the beginning as I was wondering if you had to create an event procedure for the State in order to verify the zip code for TX. I was wondering if there were any good site on where I could learn on how to define range of numbers...
  6. S

    Verify first 2 digit of zip code

    Question: You need to create an event procedure to verify the value entered for Postal Code textbox. If a user does not enter any value for postal code, a message box will open to alert the user that the field is required. If the state for the customer is TX, verify that the first two digits of...
Back
Top Bottom