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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jplum
  • Order by date
  1. jplum

    swapping subforms - general protection error

    Without seeing your database it's a little hard....but maybe instead of having that 3rd subform (the no data form), you could just create a field on your main form with default text of "No Data" and visible set to no. Then if there is no data for your other two subforms you could set...
  2. jplum

    Repairing/getting into a seriously corrupted database

    Can you open it while holding the shift key down? Another thing you might want to try is to create a brand new blank database, and then try to import all of the tables, forms, etc.. from the corrupt database into the blank database.
  3. jplum

    I am having trouble with my report. Access 2000

    It sounds like all your calculations are being done on the form, which is the way it should be done. What this means though, is that you will have to recreate those calculations on the report as well because the calculations are not being saved in the table. You should just create your report...
  4. jplum

    querydef

    Thanks so much. That worked great!
  5. jplum

    querydef

    I have some code that creates a querydef, runs an export with the newly created query and then deletes the querydef. What I'd like to do is check to see if the querydef already exists before I try and create it, but I cannot figure out the code for this. Thanks!
  6. jplum

    Printing from an array

    Thanks! I guess there is no easy way to do this.
  7. jplum

    Printing from an array

    I'm am trying to figure out how to print from an array to the printer. Is there an easy way to do this?? Thanks
  8. jplum

    Tabbing through fields

    Yes that is what I meant. I have both text boxes and NumericUpDown boxes on my form and neither of them work like that. Once you put the text boxes on your form did you have to set any particular property for them or did they just automatically work like that? Thanks!
  9. jplum

    Tabbing through fields

    Is there a property that needs to be set in order for the value of the field you are tabbing to, to be selected? So that you can tab to a field that already has a value in it and just start typing, which will over write the current value. This is a bit hard to explain. Thanks Jennifer
  10. jplum

    Form Height

    Thanks!
  11. jplum

    Form Height

    No, I never did figure it out so I just used additional forms.
  12. jplum

    Reading a Text File

    Is there a way to read a text file in field by field? I have a text file with multiple records, each record is made up of multiple fields which have quotes around them and are separated by commas. One thought is to read the whole record in and then search for the commas to read the fields in...
  13. jplum

    Form Height

    This sounds pretty basic, but I cannot figure it out. I am trying to make my form longer than one screen. I have AutoScroll set to True, but the height will not go beyond 612. Thanks.
  14. jplum

    Forms and updating tables

    Is there some action that the users takes (ex: a button that the users hits) before you want those fields to populate? Jennifer
  15. jplum

    Printing Current Records From a Form

    I am assuming that DEMProjectID is the Primary Key in your table and that it is the name of the field on your form. I am going to call your report button cmdPrint (you can just replace the word cmdPrint with the real name of your button) Private Sub cmdPrint_Click() Dim intProjectId as...
  16. jplum

    Carry value over to tabbed subforms

    Is DocNo the Primary Key? Is PartyDocNo the Primary Key?
  17. jplum

    Display on Form Only

    I am assuming that the fields are unbound. You would have to write some code to do this. The code would have to go to the table(s) where the other data is stored, find the record that matches the users selection in the drop down box and then populate the other fields with it. Are all the...
  18. jplum

    Clearing Checkbox when Entering Text

    Can you send me your database or at least your form so I can take a look at it? plumj@calib.com Jennifer
  19. jplum

    Carry value over to tabbed subforms

    If the first field on the subform is different than the field that you want to "carry the value over from the main form", then you could put code in the After Update event of that first field. The code could populate the other field with the value from the main form -...
  20. jplum

    Clearing Checkbox when Entering Text

    How about me.checkbox = null?

Part and Inventory Search

Back
Top