Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-06-21 07:01 PM
How to copy an image file to clipboard AND How to insert an image file in a word document?
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-06-21 03:52 AM
Hi,
To copy an image file to clipboard, you can realize if you use Code Stage and write simple code below:
To copy an image file to clipboard, you can realize if you use Code Stage and write simple code below:
'Required External Reerences: System.Drawing.dll, System.Windows.Forms.dll
'Required Namespace Imports: System.Drawing, System.Windows.Forms
'Input Arguments: filePath As Text
Dim bmp As New Bitmap(filePath)
Clipboard.SetImage(bmp)
bmp.Dispose()
To Insert an image to a Word document, you can use the "Paste from Clipboard" action in the "MS Word VBO" object.
I hope this will help you 🙂
------------------------------
Kota Suto
Japan
------------------------------
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-06-21 03:52 AM
Hi,
To copy an image file to clipboard, you can realize if you use Code Stage and write simple code below:
To copy an image file to clipboard, you can realize if you use Code Stage and write simple code below:
'Required External Reerences: System.Drawing.dll, System.Windows.Forms.dll
'Required Namespace Imports: System.Drawing, System.Windows.Forms
'Input Arguments: filePath As Text
Dim bmp As New Bitmap(filePath)
Clipboard.SetImage(bmp)
bmp.Dispose()
To Insert an image to a Word document, you can use the "Paste from Clipboard" action in the "MS Word VBO" object.
I hope this will help you 🙂
------------------------------
Kota Suto
Japan
------------------------------
