Recent content by tbochman

  1. T

    Why is my form locking up my computer?

    It still isn't working... In the name of the form in the Directory_name field. Is this possibly a problem because Me.name is something in access that puts the name of the form in? Should I change the label on my name field to something else? Thanks for the help Tim
  2. T

    Why is my form locking up my computer?

    Whenever I open my form my computer goes into some kind of a loop and I have to force access to close. The problem I think is in the following code... Private Sub name_Change() If IsNull(Form![directory Name]) Then Me![directory Name] = Me![name] End Sub What I want to do is when the value...
  3. T

    Help with vb command to open a report

    Thanks a bunch that was exactly what I needed. Tim
  4. T

    Help with vb command to open a report

    I am trying to open a report when a user clicks on the button and sue a query to display the results between 2 dates on a form. What I can't figure out is the VB line to open the report. I have "DoCmd.OpenReport stDocName, acPreview, report_sort_by_date" and it gives me a compiler error...
  5. T

    assigning a macro to an F Key

    I have a macro in my database that I would like to assign to run every time I press the F4 key on my keyboard. Is it possible to do this? If so how can I do it? Thanks for your help Tim
  6. T

    popup calendar

    I have access 2000. I looked in that directory and I could not find it. Is there a place where I can download it? Tim
  7. T

    popup calendar

    I have a from with two dates on it that will filter a report between those tow dates I would like to have the ability to have a calendar pop up by clicking on a button by each of the date fields on my form. How can I do this I have an activex control thing for creating a calendar but how do I...
  8. T

    Copy selective fields from one form to another

    I have 2 forms with identical field names and I would like to be able to go to any field in one form and hit some button or a key on the keyboard and copy that value into the same field in a new record in the 2nd form. How can I do this? The fields that need to be copied will vary every time...
Back
Top Bottom