Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Group: microsoft.public.excel.programming
https://groups.google.com/forum/#!to...ng/UqUQQ0Qokpg Subject: insert from paint & resize Hi I hope someone can help with this. I use the code below which launches MS Paint, the user then signs within Paint (using the Touchpad on a laptop) the macro then closes Paint and the signature is placed in cell B39. BUT . . . whatever I've tried it is never sized correctly - the graphic is usually too deep (the height of it is too high, so it's deeper than row 39 and 40). I've tried using the "Height" and "Width" options (and the top & left options) but they place the object in cell A1. The Sendkeys lines in the code work OK to get the box in and at a decent size but always I've also tried using vba to adjust the row heights before and after the object is inserted and it's still not quite right. So near and yet, so far . . . basically I have the code to get the signature in, what I need is some code to select the inserted object and resize it - or any alternative anyone can think of to achieve a signature from Paint in that cell. any help greatly appreciated! Steve Range("B39").Select Set SigPic = ActiveSheet.OLEObjects.Add(ClassType:="Paint.Pictu re", Link:=False, DisplayAsIcon:=False).Activate SendKeys "%f" SendKeys "%e" SendKeys "%i" SendKeys "%w" SendKeys "4.25" SendKeys "{TAB}" SendKeys "1" SendKeys "{Enter}" |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Steven,
Am Thu, 25 Feb 2016 04:38:13 -0800 (PST) schrieb : So near and yet, so far . . . basically I have the code to get the signature in, what I need is some code to select the inserted object and resize it - or any alternative anyone can think of to achieve a signature from Paint in that cell. try after inserting the pictu With SigPic .Top = Range("B39").Top .Height = Range("B39").Height .Left = Range("B39").Left .Width = Range("B39").Width End With Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Claus
thanks for this fast response. The Paint object doesn't seem to be picking up the SigPic name . . . once it's inserted, if I select it, it's named "Object1" (and of course the number increments for each new Paint object I insert). Perhaps the line of code that inserts the Paint object needs modifying, but I can't see where or how, it looks pretty good to me !!?? Set SigPic = ActiveSheet.OLEObjects.Add(ClassType:="Paint.Pictu re", Link:=False, DisplayAsIcon:=False).Activate Cheers! Steve On Thursday, 25 February 2016 13:22:44 UTC, Claus Busch wrote: Hi Steven, Am Thu, 25 Feb 2016 04:38:13 -0800 (PST) schrieb : So near and yet, so far . . . basically I have the code to get the signature in, what I need is some code to select the inserted object and resize it - or any alternative anyone can think of to achieve a signature from Paint in that cell. try after inserting the pictu With SigPic .Top = Range("B39").Top .Height = Range("B39").Height .Left = Range("B39").Left .Width = Range("B39").Width End With Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
That worked perfectly, the signature was placed exactly as I need it, BUT, I need the user to be able to collect a signature from a customer, so it won't be an existing file, so the launching paint option is still required. What I'm saying is, I want the user to click a button which launches our macro, the customer signs within MSPaint, when MSPaint is closed the signature ends up perfectly places, as per the last piece of code. Thanks again. Steve |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Steve,
Am Thu, 25 Feb 2016 09:22:02 -0800 (PST) schrieb : That worked perfectly, the signature was placed exactly as I need it, BUT, I need the user to be able to collect a signature from a customer, so it won't be an existing file, so the launching paint option is still required. What I'm saying is, I want the user to click a button which launches our macro, the customer signs within MSPaint, when MSPaint is closed the signature ends up perfectly places, as per the last piece of code. I didn't import pictures from Paint yet :-( But look again in your former post: https://groups.google.com/forum/#!to...ng/RYsIDvjo9Ew There is another suggestion. Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Claus that looks great! I'm gonna try it tomorrow as I'm going out for the evening. Have a terrific evening yourself.
Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
insert from paint & resize | Excel Programming | |||
Insert image from paint | Excel Programming | |||
How do I insert and resize a column on only one worksheet page? | Excel Discussion (Misc queries) | |||
Insert, position, and resize a picture w/ Macro | Excel Discussion (Misc queries) | |||
auto resize when insert large image to excel | Excel Worksheet Functions |