I have a picture into clipboard and I put it into a document through the next code:
Dim w As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = w.CurrentDocument
Call uidoc.GotoField( "Body" )
Call uidoc.Paste
The Body field is Rich Text and if the picture is 1024x 768 that will be very large for viewing !
I want to resize it (for example decrease with 50 %) ! I found just and this is a response for the web !
Isn't any method to modify programaticaly the apperance size of a picture from a Rich Text field ?
Dim w As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = w.CurrentDocument
Call uidoc.GotoField( "Body" )
Call uidoc.Paste
The Body field is Rich Text and if the picture is 1024x 768 that will be very large for viewing !
I want to resize it (for example decrease with 50 %) ! I found just and this is a response for the web !
Isn't any method to modify programaticaly the apperance size of a picture from a Rich Text field ?