Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tonyflavell

  1. tonyflavell

    Change fixed url to a relative/dynamic url

    I'm using a PageViewerWebPart to show a document when we have to edit it's properties. However I can't get to the document itself, only the library it's in. So the part shows the library, not the document. It would be nice to see the document, via embedded viewer, in that webpart, when...
  2. tonyflavell

    Day/date functions

    If a query for a report returns "Friday" in a field, can someone tell me how do get it to display the day before in the report printout. ie "Thursday" or "Wednesday" in the query shows as "Tuesday" in the report.
  3. tonyflavell

    A form that synchonizes two tables.

    Why use an invisible form? Why not create and compare recordsets, or have I misunderstood what you are trying to do? Regards Tony
  4. tonyflavell

    Sequential Numbers in a multi-user application

    Glad to have helped! Regards Tony
  5. tonyflavell

    Autonumber as rank field ?

    As long as it works - what the hell!! Regards Tony
  6. tonyflavell

    Print job to Specific Network Printer

    Hi there Open the report in design mode, Goto File, Page Setup, select the "Page" tab, select "Use Specific Printer", selct the printer you want the report to go to. This will associate that printer with the report. Just a thought! Kind regards Tony
  7. tonyflavell

    Sequential Numbers in a multi-user application

    Fingers crossed. Thanks for the feedback, I appreciate it! Regards Tony
  8. tonyflavell

    Autonumber as rank field ?

    The only thing I can think is that the autoincrement is reset to the last record + 1 if the database is compacted. Could it be that records are removed from the table, which is then compacted, thereby changing the stored incremental number. Regards Tony
  9. tonyflavell

    Autonumber as rank field ?

    So what happens? Tony
  10. tonyflavell

    Autonumber as rank field ?

    Hi there Sorry, maybe I misread your original question. Do you mean that "item" is grouped, with "amount" sorted? Regards Tony
  11. tonyflavell

    Autonumber as rank field ?

    Hi there Surely your main sort should be on "item" and a subsort on "amount"? Regards Tony
  12. tonyflavell

    Distribution List in Access

    Hi there I use the following code to add a new contact to Outlook. I'm sure it can be modified to do what you want with the inclusion of a loop through the table of names. Declarations Public golApp As Outlook.Application Public golNameSpace As Outlook.NameSpace Initialise Outlook Function...
  13. tonyflavell

    Grand Total Sum at the end of a query

    Hi there Just an idea but say you had an [InvoiceDate] field in your query, you could create a field (say [Total]) in your query with the expression DSum("[FieldToSum]","Domain", "[Invoice Date] < " & Now()) This would create a running total in the "Total" field for every record as the...
  14. tonyflavell

    Sequential Numbers in a multi-user application

    Hi Look forward to your report! Regards Tony
  15. tonyflavell

    How to copy a form +usubform data

    Hi there What is copied and where it is pasted depends where the focus is at the time of processing the code. Presumably your main form has the focus after the "SelectRecord" command so it is the main form record which is copied, not the related subform record. You need to add code to give the...

Part and Inventory Search

Back
Top