Search results

  1. rainman89

    Split form make record current record

    Use the Combo box wizard and select "Find a record on my form...."
  2. rainman89

    Tracking contacts and calls for several entities

    I agree with coach (And now Bob) . Create one contact table then a contact type table that has businessman freelancer employee frontdesk etc.. in it. That would be a more "Normalized" approach
  3. rainman89

    Muliplte fields in SQL WHERE statement

    if cbsupplier is a combo box with a bound column, you will only need to do the one supplier code. It is not necessary to do both code and name since they are tied to each other in the table, presumably of course.
  4. rainman89

    How to Search for keywords in a Query

    You will want something like Like "*" & [Enter keyword] & "*" Of course this assumes that you type the keyword in correctly....
  5. rainman89

    Split Form Issue

    Are you using tabbed forms or overlapping windows?
  6. rainman89

    Combobox row source help with values

    so this would be RowSource = SELECT studentID, LastName + ", " + FirstName + " - " UniversityID FROM Students ORDER BY LastName; You dont see column count and column width under the format property of the combobox?
  7. rainman89

    Combobox row source help with values

    Yes it is, put the ID in the row sources, set it to be the bound column, increase your column count and set the width of the first column to be 0"
  8. rainman89

    Unmatched query problem

    I was able to do this using a few queries. First query I got the courses required with the staffID, TitleID, and CourseIDs SELECT tblStaff.StaffNumber, tblStaff.StaffName, tblTitles.titleName, tblTitleCourses.tblCourse, tblCourse.CourseName FROM tblCourse INNER JOIN ((tblTitles INNER JOIN...
  9. rainman89

    populating text box based upon list box selection

    Thanks Linq. I was close! And wow!! Long time ago! My gf's family is all sox fans so we have a good rivalry going there.. Bought a red sox shirt just so I could spray paint sucks on it!
  10. rainman89

    Sum of Hours Worked

    Yeah sorry i dont know why I thought thta would work at all Here is what ive come up with using this http://www.access-programmers.co.uk/forums/showthread.php?t=142257 Convert your time to minutes =CLng(24*60*CDate([time])) Then using this...
  11. rainman89

    Sum of Hours Worked

    cant you use sum?
  12. rainman89

    Gargantuan Minds.....

    This thread made me look back at my first posts... so funny.. I bit off way more than I could chew back then, and it shows in my posts... haha EDIT: I in no way, think that I am a gargantuan mind!! Just wanted to take a look back!
  13. rainman89

    populating text box based upon list box selection

    Its ok. I understand. Probably because you are a Sox fan!! :p<----Yanks here!
  14. rainman89

    populating text box based upon list box selection

    Are you trying to insert something larger than 256 chars? Which is the Max size for a text field?
  15. rainman89

    enabled button if date range is 15 or 16 days

    look up the dateadd or datediff functions. they should give you some idea of how to do it
  16. rainman89

    Link data from form to form?

    Base your "Tools Description and info" form off of your "Tools Description and info query" instead of the actual table and then put forms!search.text0 in the query criteria for the ID Create a button to open the "Tools Description and info" form and you are done
  17. rainman89

    What's your best/worst joke?

    That really is the worst joke ever... I'm not even sure whats going on..
  18. rainman89

    Calculate Age at time of Death

    I take no credit for it. All i did was search until I found the correct answer!
  19. rainman89

    If text box has no value then show.....

    see above!
  20. rainman89

    Hello... ello... ello... llo... lo... oo

    A Green Day album called Dookie when I was 11. Always wanted to name my dog that... But enough about that. Don't wanna re-hijack Brian's good news!
Back
Top Bottom