Search results

  1. S

    Hide a field

    No problem. Im not very good with vb but Im beginning to think that just like windows, there seems to always be atleast two ways of doing something.
  2. S

    !!Addition in Unbound text box causes lock up

    Try put the calc in code instead like this: Me.BalDue =Me.[INVC_AMTDUE] - Me.[INVC_AMTPAID] - Me.[INVC_AMTWO]
  3. S

    Create folders on network using Access db

    I got this to make the 1st folder but cant figure out how to make sub folders to the one I just created. I'll post the sample db if anyone cant lend a hand...
  4. S

    Hide a field

    Have you tried: Me.Address.ColumnHidden =True
  5. S

    Full screen Report view

    On the reports OnActivate use DoCmb.Maximize
  6. S

    Using a tab control

    Are you trying to delete an entire record? Do you have enforce referential integrity & cascading delete set in your relationships?
  7. S

    Transfer Total Field in Report A to Report B

    Are both reports open at the same time? I believe they would need to be in order to get the data from one to another....
  8. S

    print report problem

    You are missing that field in your query I believe.... or you have reference name wrong. You should not use "/" in a field name, if anything use SN or S_N and change the label for that field to whatever you wish the user to see!
  9. S

    Create folders on network using Access db

    Has anyone used Access to create folders on a drive? I have a db where if someone creates a new project I was hoping to have Access create a new project folder on the drive and give it the location to create it and a name based on one field from the form the user just created!
  10. S

    requery

    Try something in the after update of the one that your changing, the vbNullString clears out the old data... Private Sub YourCombo_AfterUpdate() Me.YourCombo2 = vbNullString Me.YourCombo2.Requery End Sub
  11. S

    GoTo Records help

    I gave it a try but it only returns a blank record. Is there a different method to do this?
  12. S

    GoTo Records help

    I have this code on a popup form. The user selects from the Combo2 then clicks find. This code works but it returns all records having data in either CatCode or CatCode2 fields or my Main form. I want it to search those 2 fields and return only records that match the value of Combo2 on my popup...
  13. S

    Duplicate Fields

    post your sql statement here for a look...
  14. S

    Many To Many DB Report with Sub Report Duplication Problem

    That was just step one of 16 queries to get to the final data!
  15. S

    Many To Many DB Report with Sub Report Duplication Problem

    Glad you got it.... Usally it something simple if it runs....One can get blinded by the amount of text in big queries!
  16. S

    Many To Many DB Report with Sub Report Duplication Problem

    Right off I see you have this: TBL_Contacts.Contact_First_Name, TBL_Contacts.Contact_Last_Name And this: [TBL_Contacts.Contact_First_Name] & " " & [TBL_Contacts.Contact_Last_Name] AS FullName If all you want is "FullName" you should be able to remove the 1st part I'm assuming thats what...
  17. S

    Many To Many DB Report with Sub Report Duplication Problem

    Post your sql qry for the sub report and I will look...
  18. S

    Duplicates

    I have 3 tables. 1 has a field "itemNumber" only. The other "tblGovEst" has 8-9 fields, one of which has a cbo based on the tbl "itemNumber". It also has a field called "ID". The 3rd "tblMain" has many fields, one of which has a PK called "ID" When I use my main form, (source=tblMain), I link...
  19. S

    Show last Pay Estimate on a Report

    If your subfrm is based on a query and the tbl or source has a date field, then, add MAX to the date fields group by in the query.... now if these contractor invoice records can have the same date more than once you'll have to do the query differently.....
  20. S

    Automatic Report in Email

    I have a simular situation where I have a db that can assign tasks to a project. Ive seen threads about sending out emails but cant figure out how to do this..... Im posting a striped down sample of my main form w/ a subfrm that users enter the tasks..... There is 2 cbo's that the user...
Back
Top Bottom