Search results

  1. L

    Make a copy of a table and rename

    Really :banghead: haha well in that case i dont understand the second piece of code you showed
  2. L

    Make a copy of a table and rename

    Same mdb file (database)
  3. L

    Make a copy of a table and rename

    I mean multiple tables in one mdf file. sorry for the confusion thanks
  4. L

    Make a copy of a table and rename

    Hey, Thanks for the help... im not sure what to put as the paths.. all the databases are in one .mdb file if that helps sorry if i was being unclear.
  5. L

    Make a copy of a table and rename

    I have a selection of databases that the combobox chooses from. the user will need to select the database using the combobox then simply press the command7 button (labelled Archive) and it will make a copy of that database and rename it with the date so that the original database can be re-used...
  6. L

    Make a copy of a table and rename

    Sorry i think i was unclear.. when i say i want to rename a table i ment a database e.g. CP001 when they press Command7 i want it to copy CP001 database and rename it with the contents of Text18 added.. e.g. CP001/2012 Thanks again for the help
  7. L

    Make a copy of a table and rename

    I have a button that is supposed to Archive the tables as they get changed every year. the button is called "Command7" i have a combobox "Combo16" which selects which table to archive. I also have "Text18" which the user will put the date into. The archived table will be the orignal table...
  8. L

    Open Report using template and write too it

    I am looking how to create a button that will create a report from the chosen table in the format of my template. one of the table is called CP001 Field and Plant and the template is called CP Field and Plant Template I would also like an archive button which would save the databases with...
  9. L

    Help with Form Fields from access to Word

    Below is my code, which works perfectly... Private Sub WorksReport_Click() Dim LWordDoc As String Dim oApp As Object Dim MWordDoc As String MWordDoc = "Z:\WorksReport\V" & Me.VisitNumber & ".docx" 'Path to the word document LWordDoc = "Z:\WorksReport\V" &...
  10. L

    Insert field continue on new line

    Ive been using the Insert Field button on microsoft word. My access database writes to the word document. the probem is when the words are longer than the field it pushed everything down instead of starting on the next blank line. is there any way of setting it so that it starts on the next...
  11. L

    Export information into a word document

    Can anyone help?
  12. L

    Export information into a word document

    Hi thanks for the help, ive tried adding the library you have mentioned but it gave me an error. After searching the error i found that it isnt needed in 2010 so thats not the problem.
  13. L

    Export information into a word document

    Ive searched the internet and this link http://www.techrepublic.com/blog/msoffice/how-do-i-fill-word-form-fields-with-access-data/164 best describes what im trying to achieve. Unfortunately ive tried following but the code gives me an error as in the first line... Dim appWord As Word.Document...
  14. L

    Export information into a word document

    Thanks for any help in advanced. What i want to achieve is i have a form with combo boxes thats show.. Visit Number Date of Work Quote Number Type Of Work Enigneer Name Customer Name I have a template of a visit sheet, and if possible would like for when the user presses the button on the form...
  15. L

    Filter code not working as it should

    Its not that i dont think i need it, i dnt know how to link them together so when the user chooses a name, the Id is automatically selected
  16. L

    Filter code not working as it should

    Because there isnt customer ID on the report and the report is what im filtering
  17. L

    Filter code not working as it should

    Yes. but i want it to filter by the customer name not the customer ID
  18. L

    Filter code not working as it should

    the problem i have is i select the name, when it filters however it filters by ID, i want it to filter by name.
  19. L

    Filter code not working as it should

    either way would work, whats the simplest way ?
  20. L

    Filter code not working as it should

    is there any way of searching for the customer name as apose to the id? Alterntively make a box so that when the customer name is shown it shows the customer id that goes with it, so i can use that to search??
Back
Top Bottom