Search results

  1. Elana

    How to create a report that includes all data entered since the last print?

    Take a look at this MS Knowledge Base article on maintaining a print log for reports (article no. 154894) http://support.microsoft.com/default.aspx?scid=kb;en-us;154894 HTH
  2. Elana

    Combo boxes and subforms

    I don't think I can help you unless I see what you're talking about. Can you post your db?
  3. Elana

    How to create a report that includes all data entered since the last print?

    Here's an idea: Create a table to hold information re: the date/time a report is printed. Each time the report is printed, use code to programatically add a record to this table. Then have the report only print those records posted after the last date/time entered in the table mentioned...
  4. Elana

    Combo boxes and subforms

    Be sure you are referring to the subform correctly - check out this MS Knowledge Base article http://support.microsoft.com/default.aspx?scid=kb;en-us;209099 HTH Elana
  5. Elana

    Datasheet AutoInsert

    Here's the answer to your question - MS Knowledge Base Article 271607 HTH E
  6. Elana

    2 Column Report - Group Header Help (easy I'm sure)

    Hi - I solved the problem with this code placed in the On Format event: If Me.Left > (3.5 * 1440) Then Me.txtSalesperson.Visible = False Else Me.txtSalesperson.Visible = True End If Can't remember where I found that code - believe it was on the MS Knowledge Base tho. HTH E
  7. Elana

    Cascading Combo Box muddle

    I think this MS Knowledge Base article will give you some help here: http://support.microsoft.com/default.aspx?scid=kb;en-us;208866 HTH Elana
  8. Elana

    How to take Quotes out of Criteria in a Query

    :o Sorry, I spaced out that you were attempting to use multiple criteria here. I don't know off the top of my head how to solve the problem you are experiencing. Hope someone else can help -
  9. Elana

    How to take Quotes out of Criteria in a Query

    it should be placing brackets around it. Try placing brackets: =[forms]![frmTowns]![Text1] E
  10. Elana

    How to take Quotes out of Criteria in a Query

    Have you placed an equal sign = in front of the criteria?: =forms!frmTowns!Text1
  11. Elana

    Display message when no records found?

    Looks good to me - if it's working, that means you did it right! E
  12. Elana

    Display message when no records found?

    Here is the db:
  13. Elana

    Display message when no records found?

    Okay, here is the code that I placed on the OnOpen event of the main form. Plus, I disassociated the subform label so it will always display. Plus, I added a text box behind the subform to display the text you want when there are no records. Dim dbs As Database Dim rst As Recordset Set dbs...
  14. Elana

    Display message when no records found?

    If you can post your database, I can take a look at it and perhaps give you another idea how to solve the problem.
  15. Elana

    Display message when no records found?

    Let's experiment and see if I can help you without actually looking at your app: Let's try to work with just one of the subforms right now, and if you get this to work, you can adapt it to the other 2 subforms. On one of your subforms, insert a textbox whose control source says ="This service...
  16. Elana

    Custom Dialog Box to Open A Form

    You need to filter the form to open to a specific record. Behind the click event of a button on your dialogbox form, place code like this: Dim strWhere As String strWhere = "[RecordIDNameOnFormyouareopening]=" & "forms!yourdialogboxformname!RecordIDThatmatchestheRecordonthe otherform"...
  17. Elana

    Selecting text in a field

    You can change the behavior entering a field by going to the Tools/Options/Keyboard tab and selecting which behavior you want. But, this will affect all fields. I don't know how to isolate just one field, though. Maybe someone else can point you in the right direction.
  18. Elana

    parameter query.. Urgent, pl help

    Use VBA code behind your form to perform this check, something like: Select Case formfield1 Case 2 perform some action and don't look at the other field Case Else select case formfield2 case (whatever value you want to check for) perform some action...
  19. Elana

    Formatting values for time

    Check out "Format Property - Date/Time data type" in Access help. For example - to show the hour of the current time, place this in the control source of your field =Format(Time(),"hh") You can play with adding and subtracting from there. HTH
  20. Elana

    Combo Box Update ... after user input!

    I'm working off the assumption that for every project, there will be more than one invoice - true?
Back
Top Bottom