Search results

  1. D

    "Click and Pick" form

    I'm creating an app to schedule people into numbered Time Slots(Each person can be scheduled in many time slots; also, each time slot can include many people). We just figured out how to structure the table to link them using an intermediate table: People->Events->Time Slots. Now I would like...
  2. D

    Tab order bizarreness

    Access 97 problem: I have a pretty ordinary form with a tabbed control containing address information. When I set the tab order of the controls, it does not keep what I set but has me jump around in a completely non-logical way. Any ideas? Thanks, Dan
  3. D

    Text export formatting problem

    I have a report that I want to export to a text file to create an address list that my users can look up using Notepad (rather than opening Access every time). Problem is, when I export it, it adds all kinds of extra spaces between lines and records. This necessitates me opening the file in a...
  4. D

    Trim Function not working in Access 2000

    I imported a DB from 97 to 2000. Some of the reports were generated by the label wizard and use the Trim function. When I run the report, Access does not recognize the Trim function, asking me to type it as if it's a parameter function, then returning #Error instead of data. What gives...
  5. D

    AfterUpdate crashes; BeforeUpdate works

    I put a simple command in the AfterUpdate event property of a form, to update a "modified date" field: Private Sub Form_AfterUpdate(Cancel As Integer) Me![txtModDate] = Date End Sub Then when I try to add or edit a record and go to the next one, I get the message "You can't go to the...
Back
Top Bottom