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...
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
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...
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...
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
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?
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!
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...
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...
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...
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...
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...
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...
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"...
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
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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.