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

Recent content by Phaed

  1. Phaed

    Setting column tabs in View>Print Layout

    kinda agree w/ misscrf. pos alternative, bring in .txt, create table w/ VBA w/ col num = num of text ranges seperate by tabs; THEN grab text (w/out tab) & insert in cell ignore tab insert next text in next cell assume is linefeed in .txt - at linefeed make new table row...
  2. Phaed

    ListNum without the period in Word XP

    may want to also creating explicit ListStyle
  3. Phaed

    Word 2003 Form fields

    yes they can. see faq68-5299 and faq68-5300
  4. Phaed

    Word 2K ? Enable drop down boxes w/o protecting the doc

    it is simple. There r TWO types drop down available IN a Word doc ( as opposed to drop downs on a UserForm, that is, a form generated by VBA). Form Field drop downs REQUIRE protection. Sorry, but that how they work. purpose of form fields is 2 lock documents for rapid data entry. Users ONLY...
  5. Phaed

    Macro to Preview other word document

    then again, pls explain. still trying 2 get HOW u r working this. "header name is passed to a function" - huh? where header name from? & what u mean by "header name"? see if understand. u have a listbox. there r items in list. user selects item. selected item then.....reads from ini file...
  6. Phaed

    Combining form fields (adding 2 non-numeric fields together)

    use .Result property of the formfields, and concatenate them. could do directly, or make string variables of them. strResultText1 = ActiveDocument.FormFields("Text1").Result strResultText2 = ActiveDocument.FormFields("Text2").Result ActiveDocument.FormFields("Text3").Result = strResultText1 &...
  7. Phaed

    Form fields in Word

    see Office faq68-5299 and faq68-5300
  8. Phaed

    hard one. insert pictures in word from file list

    oh, and actually this not too hard at all, but other details needed. 1. are all photos same size? 2. do u need to resize them from original?
  9. Phaed

    hard one. insert pictures in word from file list

    r photos all in same folder? have u tried the macro recorder to test doing an insert photo? this is very possible, and not too difficult.
  10. Phaed

    Issues w/IF/FIND statements in Word VBA

    pls clarify 1. r u only looking in headers? 2. is possible string in doc does NOT have tab in it?
  11. Phaed

    Macro to Preview other word document

    again, i ask for explanation of HOW u r doing this. there must b some mechanism to grab the choice. if i know the mechanism then easy to have preview. the control would simply be a Label on form. whatever is the content that WILL BE inserted, is simply displayed into the Caption property of...
  12. Phaed

    Macro to Preview other word document

    pls clarify u r requirements again. 1. listbox? this is activex listbox IN the document? listbox box on UserForm? 2. r text portion in Word doc? if so, any particular reason use this rather than AutoText? Altho, can certainly think of reason myself - keeps entries in one location. 3. how...
  13. Phaed

    Help on inserting a table into a word doc by VBA from Excel

    what u mean "bookmarked field"? if form field (which shows as bookmarks), can set format of form field by setting a Type:Number, and Number Format as %.
  14. Phaed

    Problems with Word 2000

    definitely a style issue
  15. Phaed

    Word macro loop control

    Sub BoldEachFirstWord() Dim aPara As Paragraph Dim aRange As Range For Each aPara In ActiveDocument.Paragraphs Set aRange = aPara.Range aRange.Words(1).Bold = True Set aRange = Nothing Next End Sub use range not selection object. make every first word bold. also make stupid "blank"...

Part and Inventory Search

Back
Top