255 pts.
 use vba to draw graphics in ms word
can vba create drawing "free hand" or by joining forms and circles together (putting one near another is good enough)

Software/Hardware used:
ASKED: June 6, 2008  4:04 PM
UPDATED: June 6, 2008  5:41 PM

Answer Wiki:
found out how to: 1. entering vba editor in ms word. 2. creating new sub 3. inside write someting like that: With ActiveDocument .Shapes.AddShape(msoShapeOval, _ .PageSetup.LeftMargin + 100, _ .PageSetup.TopMargin + 100, _ 100, _ 100 _ ).Select End With switch the 100 to random sized left,height, and the width and height of the oval one may found out much more about addable objects to document by ctrl+space on the "msoShape........." expression. very useful for me, hope someone may found that useful too. elad
Last Wiki Answer Submitted:  June 6, 2008  5:21 pm  by  Elad Karako   255 pts.
All Answer Wiki Contributors:  Elad Karako   255 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _