Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Embedding an Image into a cell

Good morning/afternoon/evening loyal microsoft patrons,

My question is this:

Is it possible to embed an image in a cell?

My practical problem is:

I am using the Template Wizard with excel to have a form
that many users possess send data to a central database
on our server. This database holds information regarding
ongoing projects. One of the fields we'd like to include
is a PROJECT_IMAGE field which would hold an embedded
(i'm guessing?) image. Ideally, we'd like some way to
neatly include images with each record in a large
database, but when i do "Insert - Image - From File," the
image does not, nor do any remnants of it, appear in the
central database.

Any ideas/suggestions/strategies? Thanks a lot in
advance for those willing to take a minute and respond.

-Steve Carpineta
Matco Electric Corp.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Embedding an Image into a cell

I did something like this by capturing the image filename with the
record so that when someone else loads that record the image can
retrieve from the server and not make the worksheet giant.
Is that a possibility you have tried?

Scott

Good morning/afternoon/evening loyal microsoft patrons,

My question is this:

Is it possible to embed an image in a cell?

My practical problem is:

I am using the Template Wizard with excel to have a form
that many users possess send data to a central database
on our server. This database holds information regarding
ongoing projects. One of the fields we'd like to include
is a PROJECT_IMAGE field which would hold an embedded
(i'm guessing?) image. Ideally, we'd like some way to
neatly include images with each record in a large
database, but when i do "Insert - Image - From File," the
image does not, nor do any remnants of it, appear in the
central database.

Any ideas/suggestions/strategies? Thanks a lot in
advance for those willing to take a minute and respond.

-Steve Carpineta
Matco Electric Corp.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Embedding an Image into a cell

Scott,

A very interesting idea. Would you mind elaborating a
bit? What do you mean by "capturing the image filename
with the record?"

I'd appreciate your help a lot! Thanks,

Steve


-----Original Message-----
I did something like this by capturing the image

filename with the
record so that when someone else loads that record the

image can
retrieve from the server and not make the worksheet

giant.
Is that a possibility you have tried?

Scott

Good morning/afternoon/evening loyal microsoft patrons,

My question is this:

Is it possible to embed an image in a cell?

My practical problem is:

I am using the Template Wizard with excel to have a

form
that many users possess send data to a central database
on our server. This database holds information

regarding
ongoing projects. One of the fields we'd like to

include
is a PROJECT_IMAGE field which would hold an embedded
(i'm guessing?) image. Ideally, we'd like some way to
neatly include images with each record in a large
database, but when i do "Insert - Image - From File,"

the
image does not, nor do any remnants of it, appear in

the
central database.

Any ideas/suggestions/strategies? Thanks a lot in
advance for those willing to take a minute and

respond.

-Steve Carpineta
Matco Electric Corp.


.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Embedding an Image into a cell

Steve,
What are these images named? For instance my application had
SKU numbers and images were named for those SKU numbers so the record
for SSY00157 loads an image for that SKU. How do you assign the
embedded image now?
I create the image file location in a string and dump it to this...

Sheet1.Image1.Picture = LoadPicture(wholething)

We create inventory records and someone else gets around to taking the
pictures whever, so eventually the image will be available and when it
isn't yet I have a default image of "noPhoto.jpg"


The way you attach the file location can be done using a common dialog
box the same way you do when you embed an image. The easy way is to
name images the same way as the item in the record.

You can get all of this to Popup in a form when you double-click on a
cell or have a fixed Inserted Picture on the sheet.

Hope I explained it. My code is too embarassing to show everyone here.
But it should get you started

Scott,

A very interesting idea. Would you mind elaborating a
bit? What do you mean by "capturing the image filename
with the record?"

I'd appreciate your help a lot! Thanks,

Steve


-----Original Message-----
I did something like this by capturing the image

filename with the
record so that when someone else loads that record the

image can
retrieve from the server and not make the worksheet

giant.
Is that a possibility you have tried?

Scott

Good morning/afternoon/evening loyal microsoft patrons,

My question is this:

Is it possible to embed an image in a cell?

My practical problem is:

I am using the Template Wizard with excel to have a

form
that many users possess send data to a central database
on our server. This database holds information

regarding
ongoing projects. One of the fields we'd like to

include
is a PROJECT_IMAGE field which would hold an embedded
(i'm guessing?) image. Ideally, we'd like some way to
neatly include images with each record in a large
database, but when i do "Insert - Image - From File,"

the
image does not, nor do any remnants of it, appear in

the
central database.

Any ideas/suggestions/strategies? Thanks a lot in
advance for those willing to take a minute and

respond.

-Steve Carpineta
Matco Electric Corp.


.


  #5   Report Post  
Posted to microsoft.public.excel.programming
jaf jaf is offline
external usenet poster
 
Posts: 300
Default Embedding an Image into a cell

As shown you can use code to show/link an image.
However it is not, and can not be imbedded inside a cell.
You can make it "appear imbedded" and move with cells.


--

John

johnf202 at hotmail dot com


"notsureofthatinfo" wrote in message
...
Steve,
What are these images named? For instance my application had
SKU numbers and images were named for those SKU numbers so the record
for SSY00157 loads an image for that SKU. How do you assign the
embedded image now?
I create the image file location in a string and dump it to this...

Sheet1.Image1.Picture = LoadPicture(wholething)

We create inventory records and someone else gets around to taking the
pictures whever, so eventually the image will be available and when it
isn't yet I have a default image of "noPhoto.jpg"


The way you attach the file location can be done using a common dialog
box the same way you do when you embed an image. The easy way is to
name images the same way as the item in the record.

You can get all of this to Popup in a form when you double-click on a
cell or have a fixed Inserted Picture on the sheet.

Hope I explained it. My code is too embarassing to show everyone here.
But it should get you started

Scott,

A very interesting idea. Would you mind elaborating a
bit? What do you mean by "capturing the image filename
with the record?"

I'd appreciate your help a lot! Thanks,

Steve


-----Original Message-----
I did something like this by capturing the image

filename with the
record so that when someone else loads that record the

image can
retrieve from the server and not make the worksheet

giant.
Is that a possibility you have tried?

Scott

Good morning/afternoon/evening loyal microsoft patrons,

My question is this:

Is it possible to embed an image in a cell?

My practical problem is:

I am using the Template Wizard with excel to have a

form
that many users possess send data to a central database
on our server. This database holds information

regarding
ongoing projects. One of the fields we'd like to

include
is a PROJECT_IMAGE field which would hold an embedded
(i'm guessing?) image. Ideally, we'd like some way to
neatly include images with each record in a large
database, but when i do "Insert - Image - From File,"

the
image does not, nor do any remnants of it, appear in

the
central database.

Any ideas/suggestions/strategies? Thanks a lot in
advance for those willing to take a minute and

respond.

-Steve Carpineta
Matco Electric Corp.

.






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
Embedding the value of a cell in a formula Len Excel Worksheet Functions 5 June 16th 09 08:21 PM
Embedding in a cell. ChattyKat Excel Discussion (Misc queries) 2 July 26th 07 09:10 AM
Embedding Word table in Excel cell Larry Lester New Users to Excel 3 October 24th 05 05:05 PM
Embedding a reference in a cell with normal text. Reggie Excel Worksheet Functions 2 March 18th 05 02:54 PM
Embedding file name in a Cell Mark Sowerbutts Links and Linking in Excel 2 January 5th 05 03:32 PM


All times are GMT +1. The time now is 07:39 PM.

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"