Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Blondie96

  1. Blondie96

    Form/Subform creation

    I wanted this in a form, not a report. Does the same function exist there? Thanks, Tamra
  2. Blondie96

    Form/Subform creation

    I have a form which shows information about a request for scheduling a room type. The user can schedule multiple days @ differing times with the same request. That part is done in a different form & process.These are tied to a tracking # I want a summary form which shows all the info in the...
  3. Blondie96

    Can I use same event procedures?

    I will give you a specific example. This same code is used to validate the cboendHour3 field. I would like to modify it so that I can call it for cboendHour1,cboendHour2,cboendHour3,cboendHour4 ...cboendHour10. How could I do that? Private Sub cboEndHour3_Exit(Cancel As Integer) If Not...
  4. Blondie96

    Looping thru recordset

    Thanks PHV, There's a lot I need to learn about the VBA editor & Access
  5. Blondie96

    Looping thru recordset

    I have a module. It is supposed to get a list of avail Rooms (it does this). Then take a request, compare that request to a schedule. Looping thru each room in the available list & checking the schedule to see if a record exists for that room, date, & hour. Problem is, even my debug.print...
  6. Blondie96

    Requiring unbound field entry

    This just reminds me, How much I love to hate programming. I remember years ago, a colleague working in cobol kept getting an error something like "expecting variable name found ," They were dealing with communications & declared variables: comma.....pic x(3).. commb.....pic x(3) or however...
  7. Blondie96

    Requiring unbound field entry

    Thank you PHV, When I changed that, I found Office = 0. so I added an Or to the test & it works correctly now. Thanks, Tamra
  8. Blondie96

    Requiring unbound field entry

    I have a form which requires an office name(cbobox). I want it required. I took a function from the MS resource scheduler which allows one to double click on that field and enter an office where it doesn't already exist. This part works. If I tab past "Office" when I first enter the form, it...
  9. Blondie96

    Form allowing null entry in field

    Oh, Ok. That's why I had it in the On_exit event. I want it to fail and not go past that field if nothing is entered. Any more ideas?
  10. Blondie96

    Form allowing null entry in field

    I commented out the on_exit, & placed your code in the before update Results: Without the on_Exit() code it passes the field w/o data entirely, even if it goes to the dblclick code
  11. Blondie96

    Form allowing null entry in field

    If I remove the code from the Sub Office_DblClick, it will not allow a new office to be entered if the user dblclicks the office field. it does that now, & I want it to. What I don't want is for it to bypass the office field if nothing is entered at all. If it goes thru the dblclick code &...
  12. Blondie96

    Form allowing null entry in field

    I can't set the required property in the table. If I do, the dblclick to enter a new office will not work. I tried that before.
  13. Blondie96

    Form allowing null entry in field

    I have a form which requires an office name(cbobox). I want it required. I took a function from the MS resource scheduler which allows one to double click on that field and enter an office where it doesn't already exist. This part works. If I tab past "Office" when I first enter the form, it...
  14. Blondie96

    General Question about ACCESS table handling

    I have a mainform/subform. The main form requests some of the data that is associated with initially requesting scheduling of a room. ie type of room, division requiring use, POC... The subform requests multiple days/hours, non contiguous usage stuff. There is more information that goes with...
  15. Blondie96

    Activation/non Activation of subform

    It is an unbound field, so it isn't linked to a table. It is the OnExit event code that is causing this.

Part and Inventory Search

Back
Top