|
|
how can i present a JPG in a window having cell with the path?
I build a catalog for coins collection with Excel. each row represents a coin
(record). in two cells (fields) i have a path to both sides of the coin
scanned as a JPG files in the specific directory. i would like the following
scenario: when i stand on a specific row (any cell), the relevant images are
presented in 2 big windows. when i move to another row, the image
automatically changes etc. i would like also to control the size of the
window. would appreciate your help, thanks, sam
|
|
0
|
|
|
|
Reply
|
Utf
|
12/28/2009 8:55:01 AM |
|
Hi Sam
See if this gets you started:
Insert an Image1 from the activex coltrols toolbox. Set its picturesizing
mode to zoom.
Worksheet code (rightclick sheet tab, "view code", paste this in:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim R As Long
R = Target(1).Row
Me.Image1.Picture = LoadPicture(Cells(R, "E").Value)
End Sub
where "E" is the column with the full picture path and name
HTH. Best wishes Harald
"tsr1955" <tsr1955@discussions.microsoft.com> wrote in message
news:24B2A336-3221-444E-B64A-D87753F497D7@microsoft.com...
>I build a catalog for coins collection with Excel. each row represents a
>coin
> (record). in two cells (fields) i have a path to both sides of the coin
> scanned as a JPG files in the specific directory. i would like the
> following
> scenario: when i stand on a specific row (any cell), the relevant images
> are
> presented in 2 big windows. when i move to another row, the image
> automatically changes etc. i would like also to control the size of the
> window. would appreciate your help, thanks, sam
|
|
0
|
|
|
|
Reply
|
Harald
|
12/28/2009 10:48:42 AM
|
|
You can place a picture in a comment and then when you mouse-over the cell,
the picture will appear. See:
http://www.contextures.com/xlcomments02.html#Picture
--
Gary''s Student - gsnu200909
"tsr1955" wrote:
> I build a catalog for coins collection with Excel. each row represents a coin
> (record). in two cells (fields) i have a path to both sides of the coin
> scanned as a JPG files in the specific directory. i would like the following
> scenario: when i stand on a specific row (any cell), the relevant images are
> presented in 2 big windows. when i move to another row, the image
> automatically changes etc. i would like also to control the size of the
> window. would appreciate your help, thanks, sam
|
|
0
|
|
|
|
Reply
|
Utf
|
12/28/2009 10:54:01 AM
|
|
|
2 Replies
150 Views
(page loaded in 0.03 seconds)
Similiar Articles: Paste to next row if cells are not empty - microsoft.public.excel ...This assumes the path to the '1000s of client ... A5").Select 'Find the first empty cell where the current data can be ... not empty Tech-Archive recommends: Repair Windows ... Accessing a linked file in a Word document using VBA - microsoft ...... want to use VBA to change the path and filename of some of these links ... can anyone give ... g. it may be named image1.jpeg c ... automatically save document with cell ... Maintaining hyperlinks when I move Excel files to another location ...Is there a way I can move the entire folder of Excel ... It is not easy to present a dedicated solution without ... get Excel to keep the hyperlink moving with the cell ... How to find folder tree for emails in search results? - microsoft ...... the drawer, provides the full path ... images/Misc/Outlook_Queries_A.jpg The above shows a screenshot of Windows ... start a new thread asking if Windows Search will give ... How to update a link field with preserve format using VBA ...The challege that I am having is that there ... I will give the code in vbexpress a try. I am having a lot of issue with Excel ... Linking .JPG files using VBA - microsoft ... Step by Step approach to Adding an Image to Forms in 2003 ...Can anyone post a link or perhaps help with a walk ... picture name and it's extension (i.e. AuntTillie.jpg ... How To Display an Image from a Database in a Windows Forms ... Writting ACCESS table to Excel - microsoft.public.access ...... will need to create the above controls and give ... Write filename into cell in template: objRNG1 ... End Sub > > > Geoff If you're having trouble you can try this ... File in Use problem - microsoft.public.word.vba.general ...WScript.Quit End If ' Find path for ... temporary files using kill method It will give ... Download Can't delete a file in Windows XP? Here's the simple way ... Is there a way to convert a .TIF file in VB6 - microsoft.public.vb ...... never had you down as an idiot so I'll give you ... tif") > Debug.Print SavePictureEx(pic, path & "Ann3.jpg ... What can Windows CARDFILE 3.1 be Converted to run in ... Format Excel Sheet after DoCmd.TransferSpreadsheet - microsoft ...Will someone give this a quick read and see if you can spot my problem? ... Open(fn) ' "fn" is the name with path ... try this to get the last cell xxx ... Create a hyperlink - Excel - Office.comRight-click the cell or graphic you want to ... The path can be to a file stored on a hard disk ... A Web browser, such as Windows Internet Explorer, can follow hyperlinks ... Fix “Windows cannot access the specified device path or file ...If you are having this issue in Windows XP or ... without getting the Windows can't access specified device, path or ... typing this on my cell phone so yeah, as you can see ... Frequently Asked Questions About Microsoft ExcelA locked cell can't be changed, and the contents ... Pressing only Enter will give you the wrong ... How can I print a workbook's full path in the header or footer? FAQ - MATLAB WikiHow can I modify the MATLAB path? Edit. Easiest solution ... The arguments can be extracted out of the varargin cell array of your ... how can I get rid of the DOS window? can ... Error "Windows cannot access the specified device, path, or file ...... to open the program, im getting this error "Windows ... to adminstrator & which you want to give then ... If you are having problems, you can close this message and try to ... 7/16/2012 6:16:09 AM
|
|
|
|
|
|
|
|
|