B
Brian
I am trying to call some Word functions from lotusscript which uses the VB3.0
syntax of passing parameters in order (instead of the paramname:=paramvalue
syntax).
Where can I find the correct order for the Word method calls?
I'm trying to do, for example, this:
Selection.InlineShapes.AddOLEObject ClassType:="Package", FileName:= _
"C:\Documents and
Settings\gallagb.CAIWIL\Desktop\dilbert-buzzword.jpg", _
LinkToFile:=True, DisplayAsIcon:=True, IconFileName:= _
"C:\WINDOWS\system32\cmmon32.exe", IconIndex:=0, IconLabel:= _
"C:\Documents and
Settings\gallagb.CAIWIL\Desktop\dilbert-buzzword.jpg"
But it would have to be like this:
Selection.InlineShapes.AddOLEObject option1, option2, ... etc.
Where can I find a reference that lists the correct order for the various
Word object calls?
syntax of passing parameters in order (instead of the paramname:=paramvalue
syntax).
Where can I find the correct order for the Word method calls?
I'm trying to do, for example, this:
Selection.InlineShapes.AddOLEObject ClassType:="Package", FileName:= _
"C:\Documents and
Settings\gallagb.CAIWIL\Desktop\dilbert-buzzword.jpg", _
LinkToFile:=True, DisplayAsIcon:=True, IconFileName:= _
"C:\WINDOWS\system32\cmmon32.exe", IconIndex:=0, IconLabel:= _
"C:\Documents and
Settings\gallagb.CAIWIL\Desktop\dilbert-buzzword.jpg"
But it would have to be like this:
Selection.InlineShapes.AddOLEObject option1, option2, ... etc.
Where can I find a reference that lists the correct order for the various
Word object calls?