Recent content by clarkcovey

  1. C

    Copying currency values from Access to paste into Word

    Thank you again MajP!! This gave me a big push in the right direction and with a few minor revisions, it is now working like a charm! The two changes I made were regarding the file path/name and the data source for populating the form. When our claim system generates a document from a...
  2. C

    Copying currency values from Access to paste into Word

    Thank you MajP! I will add this and let you know how it turns out.
  3. C

    Copying currency values from Access to paste into Word

    The_Doc_Man, Thank you for your suggestion. If the user has just one doc opened at the time, I can see how that might work, especially since there is usually just one grid per letter. I'll explore this.
  4. C

    Copying currency values from Access to paste into Word

    MajP, Here is a sample letter. There are approximately 12-15 different letters with payment grids and the rows per grid varies between them. Some may have 3-4 rows, whereas others could have up to 11 rows.
  5. C

    Copying currency values from Access to paste into Word

    Thank you for your response MajP; however, the Word templates are generated from a completely different system and I cannot add code to them to read from Access or any other source. Regarding Access writing to Word, would it matter if the Word document has several paragraphs of other...
  6. C

    Copying currency values from Access to paste into Word

    Our computer system has a variety of Word templates with prompts for currency values to be entered one at a time to populate a grid within the letter. The users have been using an Excel spreadsheet to calculate the values and then selected the group of cells and pasted them into the Word...
  7. C

    Convert string to object ??

    I needed this as well, setting values on checkboxes representing each US state and each US territory. Thanks!
  8. C

    I am not a programmer

    Welcome Donna! You will find a vast amount of help on this board. I use it frequently.
  9. C

    Hello From Penny Blake

    Welcome aboard Penny! I'm sure there are things we can learn from you as well. :)
  10. C

    Hello

    Welcome! Visiting Scotland is on my bucket list. If my memory serves me correctly, my grandmother researched family history and part of my heritage is from Scotland.
  11. C

    Gun laws do they work

    Perhaps one of the issues at stake is much less acceptance of personal responsibility by too many people. When behavior is being excused or justified by pointing blame at one's parents, job, traffic, computer games, media, fast food, alignment of stars, Hollywood, the taste of coffee on Tuesday...
  12. C

    Help with navigation forms in Access 2010

    You will need to reference the subform, in your case, "frmNavigationSubform" and specify the source with "SourceObject." Private Sub Command50_Click() [Forms]![Home]!NavigationButton3.NavigationTargetName = "2" DoCmd.close Forms![Home]!frmNavigationSubform.SourceObject = "2" End Sub
  13. C

    Recordset viewing/editing in forms

    During the process of developing another (initially unrelated) application, I was able to extract the users' login from Windows and build accessibility into different form functions. When I complete the new application, I'll revisit this one and add that functionality. Thank you for the...
  14. C

    How to set recordset or count to determine existing record in table

    Tamang, What are the results of your recordset when you run it? Are you receiving any type of error message? You can set a breakpoint at your "Set rs = ..." and step through the code, checking the results as you progress. One thing you may want to add after your "Set rs = ..." command...
  15. C

    Project Proposal Structure Questions

    Hello Mark, Let me start with my disclaimer: I am no expert. :) Usually, when I start a project, I find it helpful to draw out a bubble chart with the work flow and see if any data is being used in multiple areas and so to avoid redundancy, I may separate that into separate tables. You...
Top Bottom