Search results

  1. M

    Form viewed in "Form View" is blank! help!

    Tungkee, Please could you elaborate on what tou mean that you cant seem to do anything in the properties window. Please check if you can do these things (Pardon me if I am asking you to do some basic things but we need this in order to debug the issue).Ensure you are using a .mdb file. 1. Open...
  2. M

    Form viewed in "Form View" is blank! help!

    Tungkee, I think that you have set the visible property of your detail section to No. Set this to Yes and you should be able to see the fields. Hope this works!
  3. M

    Combo box issue

    Bob, Thanks for the quick reply. My form did have the allow edits property to No. Setting that to Yes did the trick. Once again thanks for your help. Much appreciated.
  4. M

    SQL Syntax ??

    Curtis, try this.... DELETE * FROM tblApplicant where tblApplicant .Applicantid = (SELECT tblApplicant .customer_id from tblApplicant INNER JOIN tblInterview ON tblApplicant.ApplicantID = tblInterview.ApplicantID " & _ "WHERE (((tblApplicant.ApplicantID)=" & Me.ApplicantID & ") AND...
  5. M

    Combo box issue

    Hi, I have a combo box whose rowsource is tied to a query listed below: SELECT tbl_Customer.Converted_From_ID AS Generic _ID, tbl_Customer.Customer_ID AS Regular_ID FROM tbl_Customer WHERE (((tbl_Customer.Converted_From_ID) Is Not Null)) ORDER BY tbl_Customer.Converted_From_ID; I am unable to...
Top Bottom