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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. LJtechnical

    Page Number on Report

    Hi All, I have a report where depending on a form value I may or may not have the report footer.visible set to true. The problem I have is that when set to false the report displays 1 less than it should for the built in [Pages] function. The following highlights my problem: If actual Report...
  2. LJtechnical

    Hyperlink in Report print to PDF

    Hi All, I have a successful report which lists products in a quotation entered via a form. This report can then be printed automatically to PDF format and hence emailed to customers. I would really like the report to include hyperlink information to the product information sheets on our...
  3. LJtechnical

    Use Control Key To Open Different Report

    Thanks for that. I was just using the wrong event it would seem. Still worthy of a star though.
  4. LJtechnical

    Use Control Key To Open Different Report

    Hi, I have a button which outputs a report to pdf, all works perfectly. Now I would like to enable the user to hold down the control key and click the same button to have the report out put to word. I'm fine with the output to word bit, but not so sure how or where to code the control key bit...
  5. LJtechnical

    Rename Report for Print to PDF

    Hi All, I am trying to make a report print to PDF automatically using a record no: for the file name. The following code does the job quite well, by utilising the Rename command twice. stQuoteNum = Me![QuotationNo] stDocName = "QuotePDFUK" DoCmd.Rename stQuoteNum, acReport...
  6. LJtechnical

    Delete Record Event Causes Warning

    I think you have hit upon the problem, though it seems strange to me. It is the main form that is causing the warning the delete query works fine and produces no errors. For the main form record I have used both DoCmd.RunCommand acCmdSelectRecord DoCmd.RunCommand acCmdDeleteRecord And...
  7. LJtechnical

    Delete Record Event Causes Warning

    Hi All, I have a form with a subform. On the main form I have delete button which runs an on click event as follows: a delete query to delete the asociated records of the subform. Select and Delete main record. Now this all seems to work fine but after the event has completed I get a message...
  8. LJtechnical

    Updating Subform using recordset

    Hi All, I have a form - subform etc, I want to update the unit price on the continuos subform for each record when the currency is changed. The following After Update procedure changes only the record which is selected, yet when I step through the loop it seems to carry out the correct number...
  9. LJtechnical

    Size dividing lines in detail section.

    Thanks Michael, Had thought is was as you say the order in which things occur, unfortunately the search engine is down at the moment so can't delve any deeper, will try later. LJTechnical
  10. LJtechnical

    Size dividing lines in detail section.

    Hi All, I have a report, for quoting products with usual fields in the detail section, item number, description quantity etc. I want it to look like a table so I have lines between fields which works fine. However I have an additional field which may or may not contain information depending...
  11. LJtechnical

    Copy Form Record and Subform Records Problem

    Thanks Phil, Unfortunately there is a mass of fields, which as you say makes the procedure slightly long winded. In the end I simply created two append queries with the quote number as the criteria. One query for the main form and another for the subform, works like a charm, I always overlook...
  12. LJtechnical

    Copy Form Record and Subform Records Problem

    Hi All, I have a form "Quotes" and Subfom "Quote Content" I am trying to set up a method of revising the quotation i.e. copying the record to a new rec and changing the unique quote number(suffixing with R1 etc). The latter is quite simple, its the copying record bit thats causing me a...
  13. LJtechnical

    Format ? on ListBox Ctrl Source

    Hi Tom In the decimal places properties change from auto to 0. LJT
  14. LJtechnical

    Copy Form Record NOT Calculated Fields

    Hi All, I have a form "Quotes" and Subfom "Quote Content" I am trying to set up a method of revising the quotation i.e. copying the record to a new rec and changing the unique quote number(suffixing with R1 etc). The latter is quite simple, its the copying recod bit thats causing me a headache...
  15. LJtechnical

    Linking to Subform

    Thanks Mr Ken Reay, A case of having stared at the problem so long, I couldnt see the woods for the trees. The main form had two controls displaying the quote number, one very small one barely visible to the naked eye, honestly! Thanks again
  16. LJtechnical

    Linking to Subform

    Hi, I have had a Quotation form with a linked subform which has until now been linked via the quote number(Number Field) I now need to change the quote number to a text field. This I have done successfully, but I just cant get the two forms to now link on this field. When the the subform tries...
  17. LJtechnical

    Mouse Over Colour Change

    I guess you are using a newer version of Access. I'm using Access 97 and have not come across a MOUSE OUT event.
  18. LJtechnical

    Mouse Over Colour Change

    Hi All I have a mouse move event that changes the colour of a control when moused over. This is reset when the background (form detail) is moused over. The problem is if you move the mouse pointer quickly over all the controls it is possible to have them all stay in the moused over colour...
  19. LJtechnical

    Specify Table Name for Make Table Query

    Hi, Can anyone tell give me an idea of how to run a make table query from a form thet gives the table the name from the contents of a field on a form. At present it overwrites the table each time I run, but I want to create a range of tables dependant on the query results. Have found...
  20. LJtechnical

    Automate Header Footer Manipulation

    Thanks to both of you! Between you, you sorted it out for me, just combined Gerrys well explained use of Section(#) with Bookmarks and had the perfect results. As follows: ActiveDocument.Sections(1).Headers_(wdHeaderFooterPrimary).Range.Bookmarks_("BookmarkName").Range.Text = "Text String"...

Part and Inventory Search

Back
Top