Recent content by naxi

  1. N

    Close button

    Hi I have a search form. On that form I have a button which I press and get result form. Syntax is like this: DoCmd.OpenForm "ResultForm", , , strFilter, acFormReadOnly When I do this search once that's fine. But when I change criteria and press the button again it tells me that my table is...
  2. N

    How to do mail merge after applying filter

    Hi After I make filter and apply it on a ResultForm (which represent query ) I can see results like this: DoCmd.OpenForm "ResultForm", , , strFilter, acFormReadOnly or I can print report like this: DoCmd.OpenReport "MainReportForSearch", acViewPreview, , strFilter My problem is how can...
  3. N

    How to select records for printing (please...)

    Ok, First I forgot to tell you that I'm pretty new in database at all and I'm using Access 2000. Is there any way to solve this without too complex coding coding .... My problem is like this.. I have tree tables: organization->contact person->project I have a form based on a query (this...
  4. N

    How to select records for printing (please...)

    That works fine if I select records one by one. How can I select all of them (or erase all marks) in the same time?
  5. N

    How to select records for printing (please...)

    Hi, I have a query which contains three tables together: projects, contact persons and organizations. I use that query for entering information for projects (some of the fields for contact person and organization are there but I don't change them). When I want to filter data based on...
  6. N

    Cmd button and msgBox

    Actually I got error 13 . That happens only in Access 2000 not in 97. I found some discussions about that but i need some time to figure that out and make corrections.......... Thank you very much
  7. N

    Cmd button and msgBox

    Access 2000
  8. N

    Cmd button and msgBox

    Could you please write the code how to do that (I know programming but not VBA sintax......yet) Thank you
  9. N

    Cmd button and msgBox

    I made one change and now my button opens result form with controls in it which are empty (which is better than before) Now I just need a way to check if my result form is empty to get message again...... Private Sub cmdFindRecords_Click() Dim strFilter As String strFilter = vbNullString...
  10. N

    Cmd button and msgBox

    Thanks for spaces around AND ...... But the main thing is still not working. When I open my search form and don't choose anythin as a criteria I get the message, but if I put criteria and there is no mathchig records I get empty result form again (without any controls on it).......??? :(
  11. N

    Cmd button and msgBox

    Hi, I have a small database which connects projects, organizations and contact persons for organizations. My search for projects is based on many criterias. For example I need a project with scope 1, priority status 2 and it is approved, or funding year is 2002-2003 , scope is 3 and...
Back
Top Bottom