Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi.
I need to select an allready inserted image and align it to a cell, But i can´t make my code works. What am i doing wrong??? Thansk in advance SpeeD Dim myPict As Picture With ActiveSheet.Range("p2") Set myPict = ActiveSheet.Shapes("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMove End With |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please ignore this post. It´s duplicated due to the Posting system incorrect
ERROR messege. SpeeD |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please ignore this post. It´s duplicated due to the Posting system incorrect
ERROR messege. SpeeD |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please ignore this post. It´s duplicated due to the Posting system incorrect
ERROR messege. SpeeD |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Try this Note by default Excel wil put a space in Picture 18 and if your picture has that then so must the code. Dim myPict As Picture With ActiveSheet.Range("P2") Set myPict = .Parent.Pictures("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMoveAndSize End With Mike "SpeeD" wrote: Hi. I need to select an allready inserted image and align it to a cell, But i can´t make my code works. What am i doing wrong??? Thansk in advance SpeeD Dim myPict As Picture With ActiveSheet.Range("p2") Set myPict = ActiveSheet.Shapes("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMove End With |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mike.
It works great! and thanks for the tip about the space! SpeeD "Mike H" wrote: Hi, Try this Note by default Excel wil put a space in Picture 18 and if your picture has that then so must the code. Dim myPict As Picture With ActiveSheet.Range("P2") Set myPict = .Parent.Pictures("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMoveAndSize End With Mike "SpeeD" wrote: Hi. I need to select an allready inserted image and align it to a cell, But i can´t make my code works. What am i doing wrong??? Thansk in advance SpeeD Dim myPict As Picture With ActiveSheet.Range("p2") Set myPict = ActiveSheet.Shapes("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMove End With |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Glad I could help
"SpeeD" wrote: Mike. It works great! and thanks for the tip about the space! SpeeD "Mike H" wrote: Hi, Try this Note by default Excel wil put a space in Picture 18 and if your picture has that then so must the code. Dim myPict As Picture With ActiveSheet.Range("P2") Set myPict = .Parent.Pictures("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMoveAndSize End With Mike "SpeeD" wrote: Hi. I need to select an allready inserted image and align it to a cell, But i can´t make my code works. What am i doing wrong??? Thansk in advance SpeeD Dim myPict As Picture With ActiveSheet.Range("p2") Set myPict = ActiveSheet.Shapes("Picture18") myPict.Top = .Top myPict.Left = .Left - 50 myPict.Placement = xlMove End With |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do i select an inserted image. | Excel Programming | |||
How do i select an inserted image. | Excel Programming | |||
How do i select an inserted image. | Excel Programming | |||
Can't select image on a worksheet that was inserted by c#??? | Excel Programming | |||
How do I see a .ESP image (logo) that is inserted in a worksheet? | Excel Discussion (Misc queries) |