Search results

  1. P

    Run function in detail_format if total pages > 1

    Thanks for the reply. I'm printing a delivey confirmation note, so it is one record. But depending on the number of lines of the customer address, warehouse address, number lines of notes and other information, the report may spills over to a second plage. If I know it is going to go on to...
  2. P

    Run function in detail_format if total pages > 1

    Hi, what I to be able to do as the report as it is formating: if total number of pages is going to be > 1 then AddressSize endif Function AddressSize() Address.fontsize = 9 end function Just kind find a way of know if the report is going to be more then one page to I can to some...
  3. P

    Audit Function - One to Many Query (RowSource)

    Thank, made change so address in displayed (locked) on the contact screen, added button 'Edit Address', so address screen shows and allows edit. Seem to have solved the problem, just need to apply to everything else.
  4. P

    Audit Function - One to Many Query (RowSource)

    https://community.spiceworks.com/topic/1961724-audit-trail-for-access-database
  5. P

    Audit Function - One to Many Query (RowSource)

    It 100% not a new record, attached is screen shot of contact form and address name is populated with 'House', also screen shot of beforeupdate code showing its doing edit, and screen shot of table row showing the addnme is 'House'. I've try deleting and rebuilding the screen, deleting and...
  6. P

    Audit Function - One to Many Query (RowSource)

    I found code for creating detailed field level audit funtionality and I copied. It is really good as I can added alot of additional details about who, what & when in the audit table. However, I've spotted then the form has a Rowsource that is a One to Many Query, the functionality doesn't work...
  7. P

    Combo Box

    Excellent, Thanks for the help
  8. P

    Combo Box

    Wonder if someone can confirm if the following is possible, and if yes then how to do it. Backgroung: I've setup a table call 'Towns' to how hold list of all towns, and in the customer table the town in the customer address is a key e.g 20 which is e.g. 'Dover' in the Town table (20 = Dover)...
  9. P

    Create Table Field With Padding

    Thanks
  10. P

    Create Table Field With Padding

    When you manually create a new field in a table it is possible in the properties section are to set field size e.g. Double, and the Format where it is possible specify padding e.g. '0000000000'. I want to be able to do this using SQL or VBA? I know how to use ALTER TABLE to create the field as a...
  11. P

    Control if group visible base on page

    Thanks Simon I'll give this a try in the next couple of day and post how it went. Cheeers
  12. P

    Control if group visible base on page

    Simon, Could you explain a little more, not sure what I should be counting and how. Thanks
  13. P

    Control if group visible base on page

    Workaround is a good idea Thanks
  14. P

    Control if group visible base on page

    If it possible to change if a group is visible based on what page a different group is printed on. The report I'm working on is a Invoice and it has subtotals in one group and totals in another group. If the totals are going to print on page 1 then there is no need to print the subtotals...
  15. P

    Hide section on 1st but show on rest

    Thanks Yep, I was being lazy and just want to add a section into an old report, but sound like I might have to create a new version. Cheers:)
  16. P

    Hide section on 1st but show on rest

    I want to add a section to my report and control the visible value based on page (1st, 2nd, etc...) So: 1st page show 'Page Header' which has lots of detail, but dont show 'AccNum.Header' section. 2nd, 3rd, etc.. don't how 'Page Header' as I don't need lots of detail, but show the...
  17. P

    Sub Form - Continuous

    I have a form, which has a subform, which is a continuous form. In the footer of the subform it sums the costs and then the main form displays the sum. Pretty basic stuff 1. When the user changes a cost or enters a cost is does not change the sum on the footer until the record if complete and...
  18. P

    Email Report use outlook

    Thanks for all the replies
  19. P

    Email Report use outlook

    Thanks for the reply I actually don't want to use sendobject unless it is the only way to send a MS Access Report by email. MS Support suggest the following code http://support.microsoft.com/?kbid=209948 ... Sub SendMessage(Optional AttachmentPath) Dim objOutlook As Outlook.Application...
  20. P

    Email Report use outlook

    I have a very established DB and want to add the functionality that allows the user to email a report instead of print or preview. Have try sendobject, it works by get security 'Alloy', 'Deny' Has search the internet a lot and see the outlook can be called direct and sent this way. However...
Back
Top Bottom