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 SkipVought 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. twomblml

    Applying security setting by default when saving PDF

    Is there anyway in Acrobat 7.0 to apply a security policy by default when someone goes to File->Save? I want all PDF files that leave the office to have a certain security policy applied to them. I have set the default printing preferences for the Adobe PDF printer to the security policy I...
  2. twomblml

    VBS SendTo copy file path to clipboard

    PHV I owe you big time for all your help on this board! That is exactly what I was looking for. As you could see from my code before I was trying to use % as my replacement but it was not working. %20 is exactly what I needed. Thanks so much! -Matt
  3. twomblml

    VBS SendTo copy file path to clipboard

    I have created a script that enables users to right click a file name and choose SendTo -> Email Link. This creates a new Outlook message and pastes the files UNC path into the HTML body of the new message. (Formats the UNC path into an HTML tag <a href=....). My users loved this so much...
  4. twomblml

    Inserting formatted text into Word Document

    I have been able to get this to work by storing some items in a 2d array and running a sort on the array. Thanks for all the help.
  5. twomblml

    Inserting formatted text into Word Document

    The formatting is working properly now. The only thing that has me fumbling around is I need to paste portions of text in order. Whenever I past text into a bookmark multiple times it puts the latest text in the top of the bookmark instead of at the bottom. I can't put multiple bookmarks...
  6. twomblml

    Inserting formatted text into Word Document

    1DMF thanks for the suggestion. I am using a bit of your suggestion in my code. I am copying one bookmark to another but its not holding the formatting when inserted into the new document. Any ideas? Thanks
  7. twomblml

    Inserting formatted text into Word Document

    Brilliant PHV! The spec on this monster keeps changing, I don't know if I'll be able to continue the copy paste routines because I need to paste more text into different locations on the document. PHV is there a better way to do this?
  8. twomblml

    Inserting formatted text into Word Document

    1DMF I guess I don't really understand your method above. Yes the bookmark.select was not working but it is working great now. I could be pasting multiple snippets to this document and I want each snippet to be pasted into the document at the end. Thanks for all the suggestions so far!
  9. twomblml

    Inserting formatted text into Word Document

    PHV was correct it wasn't selecting. To many changes this morning before coffee. Now I have it selecting, copying and pasting into the correct document. However it pastes at the beginning of the document. I want it to past at the end of the document. How can I specify this? I don't want a...
  10. twomblml

    Inserting formatted text into Word Document

    Based on 1DMF's inspiration I have decided to go the route of using bookmarks. So I have a main document with a bookmark for each snippet. I copy the snippet depending on what bookmark I want and I'm trying to paste the contents into another document that already has text. I would like to...
  11. twomblml

    Inserting formatted text into Word Document

    Looking for advice here... I am trying to build some functionality into Access for users to select snippets of formatted text to insert into a Word document. I would like to present the user with a selection form to click checkboxes for what text to include on the document. Once checked...
  12. twomblml

    cannot update field on subform

    I got it. Forgive me for being so blind. To create my subform I have a button on my parent that runs a SQL command. I didn't have that particular field in my SQL. I don't have the field showing on the subform so I never thought of putting it in the SQL. All is good now. Thanks for the...
  13. twomblml

    cannot update field on subform

    I can't update any property on the control. I get "can't find the field 'ProjectNum' referred to in your expression" original linked tblPlanRevisions fields: Master_Key PlanNum PlanName Changes Draftperson RevisionDate RevisionsPending Rack new fields added to linked tblPlanRevisions...
  14. twomblml

    cannot update field on subform

    Bizzare... I have a subform where I'm updating two fields on the Before_Insert on the form. One field updates without issue. Here is the weird thing: I created the table with a couple fields on it. One of the fields is called Master_Key. This is the field that updates properly on the...
  15. twomblml

    AfterInsert want to insert a value into a field on the current record

    I have even tried using a recordset in the afterinsert event and its not saving the value when I click on Close or Save. Dim db As DAO.Database, rs As DAO.Recordset Set db = CurrentDb Set rs = db.OpenRecordset("tblbidders", dbOpenDynaset) rs.Edit rs![test_key] = "u"...
  16. twomblml

    AfterInsert want to insert a value into a field on the current record

    Yes it is bound to the table. I want to do the AfterInsert because I need the value of an autonumber field to concatenate with another value to make up this text field. So I need to know the value of the autonumber field for that record before I can insert the value of my new field. Thanks
  17. twomblml

    AfterInsert want to insert a value into a field on the current record

    Should be easy enough, it was working at one point in time but I changed some things around and its not working. I am trying to insert a value into a text field on the current record on the AfterInsert event of a form and it is not working properly. I have tried adding the field to the form...
  18. twomblml

    Selecting records from a search form to insert records into a table

    I was able to achieve this using a continuous form placing an unbound check box for each record with a command button on the top. Writing code in the background, essentially showing the check box when the command button was clicked. Then I added a text box on the form for the job number...
  19. twomblml

    Selecting records from a search form to insert records into a table

    That is what I started out with but I was trying not to force my users to do the ctl click thing and put a check box in there to make it more user friendly. I'm working on another solution right now. I'll report back with the results. Thanks

Part and Inventory Search

Back
Top