Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Inserting Picture Excel Sheet

Hi dudes !

Today i tried to insert picture in Excel Workbook, from VB , Actually i
dont know the exact funciton to do it , Telling you people , Who would
like to help me, if they already dont know that there is a function
available to insert the picture/logo on background of the excel sheet.
But i want to know the function to Insert the picture in to any
specific column or at any postion,

I will be very greatfull for the expert that will tell me this
problem's solution this night :-)


---
Message posted from http://www.ExcelForum.com/

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Inserting Picture Excel Sheet

Try this example that place the picture in cell c1

Sub test()
Dim YourPic As Picture
With ActiveSheet.Range("c1")
Set YourPic = .Parent.Pictures.Insert("C:\Data\Picture 015.jpg")
YourPic.Top = .Top
YourPic.Width = .Width
YourPic.Height = .Height
YourPic.Left = .Left
End With
End Sub


--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2000-2003)
www.rondebruin.nl



"Ussiddiqui " wrote in message ...
Hi dudes !

Today i tried to insert picture in Excel Workbook, from VB , Actually i
dont know the exact funciton to do it , Telling you people , Who would
like to help me, if they already dont know that there is a function
available to insert the picture/logo on background of the excel sheet.
But i want to know the function to Insert the picture in to any
specific column or at any postion,

I will be very greatfull for the expert that will tell me this
problem's solution this night :-)


---
Message posted from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Inserting Picture Excel Sheet

Hay who every you are ... you saved my deliverable ......
thanxxxxxxxxxxxxxxxxxxx Allotttttttt , message to Rena..........

--
Message posted from http://www.ExcelForum.com

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Big Excel file after inserting picture Sandro Excel Discussion (Misc queries) 0 October 28th 08 05:30 PM
Inserting a picture into Excel Andrew Excel Discussion (Misc queries) 0 August 4th 08 01:41 AM
Inserting picture into excel based on # in the another cell jstaggs Excel Worksheet Functions 2 December 14th 06 06:55 PM
Inserting Picture in protected sheet JackR Excel Discussion (Misc queries) 6 February 19th 06 10:11 PM
Inserting picture in an Excel spreadsheet sdipietro Setting up and Configuration of Excel 0 August 29th 05 01:05 AM


All times are GMT +1. The time now is 09:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"