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 SkipVought 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: JAES
  • Order by date
  1. JAES

    Print Report from Multiple Combo Boxes and tables

    Thanks, I actually haven't used junction forms before so I have some reading to do before I can finish this part of the database. I've been working on other areas and will get back to this next week. Thank you again for all your help.
  2. JAES

    Print Report from Multiple Combo Boxes and tables

    The forms only need to be done annually. If it is done during the fall season then it carries over into winter and spring. By making the tForms table like you suggested that took care of trying to carry it forward. It's either done or it isn't. I have a table, tAllSportsList that has Sports...
  3. JAES

    Print Report from Multiple Combo Boxes and tables

    Thanks dhookom, I'm changing over the structure as you suggested. On a subform I show the status of the forms, which I have, and the sport they are playing under Fall, Winter and Spring label headings. I would like this to be where the assistants enter the sports they are playing. I'm not sure...
  4. JAES

    Print Report from Multiple Combo Boxes and tables

    I tried to send you a copy of the current sub form that uses the tActivities table. I'm not sure how to attach it to this message.
  5. JAES

    Print Report from Multiple Combo Boxes and tables

    Not too late at all, thanks. So tActivity would hold only the sports they are participating in and tForms would hold the information on the status of the forms, etc. The forms only have to be completed once a year so tForms would only have one row per athlete? Can I still use the combo boxes and...
  6. JAES

    Print Report from Multiple Combo Boxes and tables

    I’m having problems printing a report from a set of combo boxes. I don’t know if it is even possible with the current table structure. Table tActivities have columns that include StudentID, FallSport, WinterSport, SpringSport, ConcussionForm, ActivityForm (this particular report shows the...
  7. JAES

    Almost Embarrassed to Ask Insert Questino

    Thanks Duane and Andy. I had changed the value of StudentID to String but didn't change the declare statement. The latest code works great by changing the declare to string. It's amazing how much you lose not doing this for 7 years. Hopefully this will wake up some memory cells! Thank you again.
  8. JAES

    Almost Embarrassed to Ask Insert Questino

    I don't know what t say. Here is the code. It is the click event for closing the form. I need to populate the other three tables with only the StudentID. This code does that. If something goes terribly wrong later I will know where to look! Private Sub Command116_Click() Dim StudentID As...
  9. JAES

    Almost Embarrassed to Ask Insert Questino

    OK, all of a sudden this works - DoCmd.RunSQL "INSERT INTO tActivities (StudentID) VALUES (StudentID)". My StudentID was 7 digits long and I had them formatted as Integer. One of the few things I did was change them to Text.
  10. JAES

    Almost Embarrassed to Ask Insert Questino

    Run-Time error '3134' Syntax error on Insert Into Statement. I'm trying different tables and different fields and the result is the same. But the Me. statement always has the data I'm trying to insert.
  11. JAES

    Almost Embarrassed to Ask Insert Questino

    Thanks Duane, It still has an error and the line is highlited. The Me.StudentID has the correct value though. The table I'm working with currently is named tActivities. Once I get it working I will use is other places. Private Sub Command116_Click() DoCmd.RunSQL "INSERT INTO tActivities...
  12. JAES

    Almost Embarrassed to Ask Insert Questino

    I've been away from Access for years and simple things seem to baffle me. DoCmd.RunSQL "INSERT INTO tStudents (StudentID) VALUES (StudentID) " The Student ID is an Integer. As I close the current form I want to insert the StudentID value into the table tStudents Column StudentID Any help is...
  13. JAES

    variable name for report header

    Sorry, I was away for the first part of the week. Yes, all filters are vEvent??. When the volunteers fill out a form they check which areas they can volunteer in. For the reports I use the vEvent?? in my where clause. A table would be the best way to go now that you mention it. Unless you have...
  14. JAES

    variable name for report header

    I'm having some problems understanding the SELECT...CASE structure. I've tried a few code lines in the header format event from examples but I'm just guessing. If the field vEvent1 is yes in table tabVolunteers I would like the title (test box or ?) of the report (rptVolunteerByCatagory)to say...
  15. JAES

    variable name for report header

    OK Thanks. I'm reading up on the Select Case function and I'll see if I can figure it out. Just another feature I didn't know about!
  16. JAES

    variable name for report header

    I have a generic report that prints from a form. On the form I have multiple command buttons that print the report based on a criteria. I want to add a report name in the header based on which button is clicked. Can I add it somewhere in the command line. In the example below if vevent23=-1 then...
  17. JAES

    Export Outlook file from 32bit to 64bit

    OK thanks. I just tried to export my contacts from outlook 2007 withing windows 7 and it gave me the same error. Must be something in my outlook installation. Thanks for keepinig me from heading off in the wrong direction.
  18. JAES

    Export Outlook file from 32bit to 64bit

    I've upgraded Vista to Windows 7 and can't seem to export and import my pst file. I'm using Outlook 2007 in both applications but the Windows 7 installation is 64 bit and the Vista is 32 bit. Could this be my problem?
  19. JAES

    Phone number input mask

    Sometimes you get looking to far into the problem to see the obvious! Thanks....
  20. JAES

    Phone number input mask

    How do I change the phone number input mask to have a fixed area code. Most of my area codes are the same but I want the ability to change one if needed upon entry. Thanks

Part and Inventory Search

Back
Top