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 biv343 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: *

  1. MrPiccolo

    Option Group or Combo Box to filter a Report

    Hi, The reason I've gone with the 'option group' layout is that these 2 reports are just the beginning; it's very likely that there may be 10 - 12 different reports (all producing different output from diffrent query sources); this layout allows me to have a 'neat' list of reports on the left...
  2. MrPiccolo

    Option Group or Combo Box to filter a Report

    Hi, I have a form which has two option groups, and a command button; form: Report1 ------------- OptionGroup1 OptionGroup2 [] Report_name1 [] PreView (current) Report [] Report_name2 [] Print (current) Report {Commandbutton} The user selects report1 or report2 and...
  3. MrPiccolo

    query to select data from 3 tabes using <> parameter

    thanks PHV, you've cracked it!! ;-) mrP.
  4. MrPiccolo

    query to select data from 3 tabes using <> parameter

    I still have a problem! Thre are 75 courses listed in my course table; It would save a lot of time if I can prompt the user to type the course [criteria] name (into the query) instead of having 75 separate queries; so far my SQL code looks like this but this doesn't quite work, please could...
  5. MrPiccolo

    query to select data from 3 tabes using <> parameter

    we're nearly there, but still having problems!!; I've amended the SQL to use the classNAME (rather than the ClassID) as the identifier, but the query still finds 3 students who have attended the course "critcare3". Is the studentID being pulled from the correct table I wonder? Also could the...
  6. MrPiccolo

    query to select data from 3 tabes using <> parameter

    Hi folks, i'm having a mental-block day. I have a query which holds 3 tables [from an education database]. Table 1. [courses] ClassID Classname Table 2. [course_dates] CourseDatesID ('uniqueid') ClassID ('linked to classID in table 1.') DateOfCourse Table 3. [students_and_courses]...
  7. MrPiccolo

    Deleting records from one table based on records in another.

    Thanks PH, Your alternative method solved the problem nicely! Mucho Gracias MrP
  8. MrPiccolo

    Deleting records from one table based on records in another.

    Hi Geoff, The problem seems lie in the fact that there are two tables (linked by a 1-2-1 join), in the QBD; which causes the delete query to throw up the error message "specify the table to delete from" when a run query is initiated. mrP
  9. MrPiccolo

    Deleting records from one table based on records in another.

    Hi folks, maybe i'm being dense(?!), but i need to delete 596 records from table #A using a list of corresponding record id's held in table #B as the criteria. So far Access won't allow me to run a delete query to perform the task. (In other words both tables have identical record id formats...
  10. MrPiccolo

    Importing Time fields from Dbase4 Table

    Hi folks, I know this is probably an old chestnut; but could somebady please suggest a way of converting a time field in a Dbase 4 table (in the format "nnnnn" eg 16590) into an access time format of 15:22hrs? Ie I'm importing a Dbase4 table into an Access 2003 database using the "get External...
  11. MrPiccolo

    3 linked forms record navigation problem..

    Hi Ken, I've tried both code lines but both return the following error code; Microsoft Access can't find the field 'VisitDetailsSubform' referred to in your expression. Any ideas? MrPiccolo
  12. MrPiccolo

    3 linked forms record navigation problem..

    I've looked at the FAQ solutions but have not found a suitable answer for the following problem. please help! I have 2 tables; table 1. "Patients" patientID (Pk) other fields.. table 2. "Visits" 'shows visit data about each patient' VisitID (Pk) PatientID 'long integer, linked to "Patients"...
  13. MrPiccolo

    Making a combo Visible dependant upon another Combo

    Hi Guys, we’re nearly there! Thanks for all your hard work. Bill, here are the main subroutines I have for my mainform and subform in my database that records data on Patients presenting to hospital with Abdominal Pain. Please see my question at the end of the code listings: “Frm_visits”...
  14. MrPiccolo

    Making a combo Visible dependant upon another Combo

    Thanks Bill, However still got 2 problems! 1) The second cbo doesn't hide if the first cbo is changed back to 0 (instead of 1). 2) There are 6 pairs of linked cbo's on this subform; how do I hide all (6) dependant boxes using the on_current event line of the subform? MrPiccolo
  15. MrPiccolo

    Making a combo Visible dependant upon another Combo

    Hi Guys, I have a subform that has 2 combo boxes on it; I want to be able to make the second combo box visible AND active when the first cbo has a value of 1. The before update event for the first cbo looks like the following; Private Sub RadiationRecorded_BeforeUpdate(Cancel As Integer) If...

Part and Inventory Search

Back
Top