Recent content by Jaymin

  1. Jaymin

    using OR in a global variable as criteria query on a report

    hi plog, when i use your code i get an error Dim BodyParts = "Eye,Uvula,Knee,Coccyx" ' The global BodyParts variable should like like the above--all body parts seperated by commas
  2. Jaymin

    using OR in a global variable as criteria query on a report

    Thanks Plog for your quick responce, give me a couple of days i will get back if i can get it to work, plus have alot of trouble with internet, provider has gone on holidays no access.
  3. Jaymin

    using OR in a global variable as criteria query on a report

    Hi Guys, :banghead::banghead: if i type into the criteria = "face" or "hands" or "feet" the returns are OK. and if i create a global variable and use only one of the criterias eg Bodyparts = "feet" and enter it in the criteria as Bodyparts() all works OK. but if i give the Bodyparts = ""face"...
  4. Jaymin

    cascading combobox problem

    Hi Guys, thanks for your replies, this is the SQL that i entered into the form combo box SELECT DISTINCTROW tblPortfolio.IDPortfolio, tblPortfolio.PortfolioName FROM tblStaff INNER JOIN (tblPortfolio INNER JOIN tblPortfolioAllocation ON tblPortfolio.IDPortfolio =...
  5. Jaymin

    cascading combobox problem

    Hi Guys, Sorry for the delayed response but had to go out of internet access for a few days. But this is my second combo SQL view SELECT DISTINCT qryStaffPortfolioAllocation.IDPortfolio, qryStaffPortfolioAllocation.PortfolioName FROM qryStaffPortfolioAllocation WHERE...
  6. Jaymin

    cascading combobox problem

    Hi All, To me this problem should be easy but its got me at the moment. I have a form with two combo boxes, one has staff names the other has portfolios, the normal action is when you select the staff name the second combo only shows the portfolios that are associated with them. But what I want...
  7. Jaymin

    Query with combobox filter has unexpected results

    Hi All, I have found out why I had this problem, In my query fields there were "staffID", "StaffName", "yearID" The Like [Forms]![frmStaffSelection].[cboStaffSelection] & "*" was placed in the "staffID" column and the form combobox referenced the first field which was the "StaffID", so when I...
  8. Jaymin

    Query with combobox filter has unexpected results

    Guys, Thank you for a quick response, I forgot to bring the database home it is still at work and i will not be back till Friday, I will send the results to you replies then many thanks Peter :)
  9. Jaymin

    Query with combobox filter has unexpected results

    Hi all, Hope someone can explain what is going on. I have a report, that gives a result from a query which is filtered by a combo box. - Like [Forms]![frmStaffSelection].[cboStaffSelection] & "*" what happens is that the combo box has a list of names, when you do not select anything in the...
  10. Jaymin

    entering data into a table using a record field

    JBH, thank you for your reply, with a bit of research and playing around i got the recordset to work just fine. thanks foryour time and help Peter :o
  11. Jaymin

    entering data into a table using a record field

    Hi, Hope i can explain what i want to do ,I might be just having a seniors moment. I am creating a log in form, it checks the user name which is unique. if the user has entered a password, it shows only one password text box, they enter the password, if it is correct they enter the database...
  12. Jaymin

    email a report with the email address as a verable

    Thanks GinaWhip, That is what i was hoping for, thanks for your time.:)
  13. Jaymin

    email a report with the email address as a verable

    i am using vista and access 2010, what i want is to be able to email a report from access that was created by a form with DoCmd.OpenReport "ReportOrder", acViewReport. I have a button that when i click it it will send the report via email, but the email address has to be a varable so when the...
  14. Jaymin

    have a subform show all records from a query

    EternalMyrtle Thanks for your help, i will try what you said and will post to the table forum. regards
  15. Jaymin

    have a subform show all records from a query

    EternalMyrtle Hi, I have converted the database hope it works.... Below are the details of the main form, subform, and the link fields Hope this helps Thanks for your time
Back
Top Bottom