Recent content by wwiSports

  1. W

    Text boxes on form show Time, should be blank

    No default values are set
  2. W

    Text boxes on form show Time, should be blank

    The fields are not locked, and they are able to get focus. I have realized that the invoice section on the form is based on a query--and that may be why it does not save the information...because the query does not allow it. But, that shouldn't effect the fact that the fields are showing...
  3. W

    Only view label on form if text box is not null

    I Got it working!!!!!! I put the code: If IsNull(Me.Notes1) Then Me.lblSeeNotes.Visible = False Else Me.lblSeeNotes.Visible = True End If In the On Current Event as well as my "PopulateFields" code since the form is unbound, and now it operates correctly. Unfortunantly there is still...
  4. W

    Text boxes on form show Time, should be blank

    Allow Edits is set to yes. And all the fields in this form are unbound. According to the code it should be showing up as 0. The field property in the table does not show anything. I'm at a loss
  5. W

    Only view label on form if text box is not null

    I am having a problem. I changed the code to "", but this is the new issue: 1. lblSeeNotes is now showing up---but at all times--not just when the Notes1 field has something in it. 2. In order for that code to work, I had to put a text box called "notes1" on the form. When in all...
  6. W

    Text boxes on form show Time, should be blank

    I have an unbound form called "Orders", which has about 5 Text Boxes (ShipDt1, ShipDt2, etc...). I have set the format as ShortDate on the form. My issue is that when I have someone's order up--if we have shipped their item to them,the date appears correctly, but in all of the other "ShipDt"...
  7. W

    Only view label on form if text box is not null

    I have two forms, one is the "Orders" form and the other is the "Notes" form. I have put a lable called lblSeeNotes on the Orders form and set it's visible property to No. I have also put a text box called "Notes1" that is based on the notes form and set it's visible property to no. I have put...
Back
Top Bottom