Using URL's to Display a picture in Crystal 10

Post Author: Fred Parker
CA Forum: General
I want to display a photo of an employee above some information about the employee on a Crystal Report. The firm stores the photos in a folder on the firm's website. We can get the URL for each person's photo(.jpg). How do I use that to display on a report? I don't want to use a hyperlink. I am currently using Crystal 10.

i do not know if this feature is in CR10, as i use CRxi, but if you insert a picture then right click on it, choose graphic options then the picture tab, there is a button where you can enter the graphic location.

Similar Messages

  • Just purchased a new iMac and transferred all info from my old iMac. Now when using iPhoto slideshow is displays the pictures in reverse order.

    Just purchased a new iMac and after transferring all info from my old iMac.  Now when using iPhoto slideshow it  displays the pictures in reverse order.

    There's a bug in iPhoto 9.5.1 and Mavericks that affects slideshows played directly from an album.  The slideshow will not play correctly if the photos have been sorted manually.  Any other type of sort, date, rating, keyword or title, will play correctly.
    If you need that manual sort of pictures for your slideshow create the slideshow in iPhoto's slideshow mode.
    OT

  • When using facetime it only displays a picture and cannot view myself talking

    when using facetime it only displays a picture and cannot view myself talking. i can call out but the other person cannot view me. what am i doing wrong? how can i fix this?

    See:
    * [[Images or animations do not show]]
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Display more pictures in crystal report not work why

    Hi guys i try to show picture of specified employee from network path in crystal report  it work
    but i don't know how to show all pictures to all employees in crystal report
    Can any one help me to customize my code to accept show all employee pictures
    i try to make this from crystal report and assign path but version of crystal report not allow to me
    to put path
    my code below show picture to one employee from text box control from network path
    I need to customize this code to accept show more one  pictures of employees from  employee table
    the following fields i show in report
    EmployeeNo      integer
    EmployeeName   nvarchar(50)
    Image     datatype  image 
    btnemployeeno_click
       DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoR", con);
    cmd.CommandType = CommandType.StoredProcedure;    // Viewxxx doesn't seem a good name for a sp
    cmd.Parameters.Add("@EmployeeNo", SqlDbType.NVarChar, 20);
    cmd.Parameters["@EmployeeNo"].Value = textBox1.Text;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    string path = Path.Combine("\\\\192.168.1.105\\Personal Pictures", textBox1.Text) + ".jpg";
    FileStream fs=null;
    if (File.Exists(path))
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + textBox1.Text + ".jpg", FileMode.Open);
    else
    MessageBox.Show("Please File Not Exist");
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    foreach (DataRow dr in dt.Rows)
    dr["Image"] = imgbyte;
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();                     

    Hi, 
    Put an image field in your report, then change the image’s Graphic Location:
    right click the image, select Format Graphic, select Picture tab, click the conditional-formula button that look like a x2 and set the formula’s text to
    the name of the formula or parameter field that will contain the image’s URL.
    Save the formula and click the OK button. Save the report and test it.
    Be carefull with the size of the image field. If this size is not equal to the image itself it could get resized.
    Good Tutorial
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • How to display the image which in KM folder using url iview

    Hi Friends
    How to display the image, which is under KM folder structur using the url iview.
    i trying using url iview url as  \document\testfolder\abc.jpg as url for the iview.
    but its now working .. so please help me how to slove this problem
    If is not the correct way then please suggest me best way to achive this.
    Thanks
    Mukesh

    Hi Mukesh,
    I think this may work,
    1, Create a HTML Layout.
        You can put your image wherever  u want with HTML Codes.
        Check this, [Article|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3915a890-0201-0010-4981-ad7b18146f81] & [Help|http://help.sap.com/saphelp_nw04/helpdata/en/cc/00c93e9b2c3d67e10000000a114084/frameset.htm]
        With this, u can use the standard KM commands also.
    2, U need to use KM Navigation iView for this rather than KM Doc iView.
    3, In the Nav iView, u can use &rndLayoutSet=nameOfUrHTMLLayout to force the view with this new layout.
    Regards
    BP

  • Display template using URL

    Hi,
    Can we call a display template using by giving path in WebPages?
    Query template i tried and was working. Want to know whether it is possible with Display template also.
    Please help.
    Thanks in advance
    Muzammil P.T

    Ok,
    We can use Query Templates in Web pages rite, for example , <b>"http://localhost/Lighthammer/Illuminator?QueryTemplate=Samples/QueryTemplate/testQuery&Content-Type=text/xml"</b>If we are giving this URL in WebPage as a source, it will brings the desired output. The same output as what  we get while using <b>TEST button in Query Editor</b>. If we need to add some styles into it, we can either use XSL or Display Template into it. Using XSL will looks as follows
    <b>"http://localhost/Lighthammer/Illuminator?QueryTemplate=Samples/QueryTemplate/testQuery&Content-Type=text/xml&Param.1=%&StyleSheet=http://Localhost/LH/xsl/MyStyle.xsl"</b>
    Instead of XSL, is it possible to use display template ? If yes, How? 
    I understand that the same thing is possible using Applet tag. But i need to know whether is this possible using URL or not.
    Please help me out.
    Thanks in advance
    Muzammil P.T

  • How can i display blob (picture) using jsp

    i can get byte array from oracle database.
    and how can i use byte array to display just like img src = '' in html ?
    thankyou

    You can't. You have to use <img src...> in the HTML. That src can be to a servlet that gets the image data from the DB and writes the image data out, of course. Just set the content type to image/jpeg or image/gif or whatever it is.

  • Using Apple's Preview displays a sharper picture

    I'm not sure where to post this topic because it really concerns Photoshop Elements 3.0, but hear goes.
    I normally use iPhoto 6.0 to organize my photos and have Elements 3.0 set as the default editing tool. In the past this has worked great, but during the past few months I have noticed that my pictures on screen don't look as sharp in Elements as they once used to. The final output to paper or DVD still looked great, so I never gave it much thought at least until this past weekend.
    That's when I opened a new picture accidentally using Apple's Preview program. Wow, was I surprised because the picture just downloaded from my camera looked fantastic. It was sharp, bright and had great detail. I then opened it using Photoshop Elements 3.0 and was quite disappointed with the results. The picture had slightly less detail and was not as sharp and the colors were not as saturated.
    When I first bought Elements 3.0, I was using Panther and I remember my pictures looking great. The only thing I changed between then and now was upgrading to Tiger in early summer. After upgrading to Tiger I reinstalled all my third party software from the original disks.
    So why do my pictures look poorer in Elements when compared to Apple's Preview? Could I have changed something or do I need to make a change?
    Any help would be appreciated.
    Thanks,
    Keith

    What was the answer Keith? I'd be interested to know.
    Paul

  • How can I use my 23" cinema display with a pc laptop?

    I see various questions out there about using Apple Cinema Displays and PCs, but each one has its own twist. If anybody can help with this scenario, I'd greatly appreciate it.
    I use one of the last editions of the Powerbook G4. I just bought a 23" Cinema Display and, of course, love it. It is supposed to replace an old CRT monitor in the home office, which brings me to my problem. Can I hook up a pc laptop to use with the Cinema Display (I ocassionally need the pc laptop and my wife and kid use it as well). I realize it will depend on the graphics card. Offhand I'm not sure which one it is, but the Dell is just shy of a year old and has good graphics, albeit VGA. I need a female DVI (I assume DVI-I) and a male VGA connector. Do these exist? I'm also looking for a PC Card DVI-I graphics card, but I don't know if these exist either.
    I could buy a Dell (or some other brand) monitor that has both DVI and VGA connections, but I really want to keep the Cinema Display. It's gorgeous.
    Thanks for any help.
    Regards.
    Powerbook G4 15" Mac OS X (10.4.5) 23" Cinema Display

    Phil,
    Thank you for the reply. I kind of figured this was the case. I have found two "boxes" that supposedly handle this problem. One is from Dr. Botts called Vgator and the other is from Gefen (www.gefen.com), but these solutions are very expensive -- $300 each -- and I am not certain of the quality of the picture. For that kind of money, I could buy a cheap PC monitor and just use the Cinema Display for Mac-only needs, as it was intended.
    Take care.
    Dan.

  • Adobe Premiere Elements 13, will not display video picture, audio only. My video format is listed as compatible with Adobe.

    Adobe Premiere Elements 13, will not display video picture, audio only. My videois listed as compatible with Adobe.

    douglass
    On what computer operating system is your Premiere Elements 13 running? Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates?
    If not, please do so.
    You have not given us enough information with which to help you.
    What are the properties of your source file that is presenting in the project with audio but no video?
    Quickest way to gain that information is from brand/model/settings of the camera that recorded the video.
    I am looking for
    video compression
    audio compression
    frame size
    frame rate
    interlaced or progressive
    file extension
    pixel aspect ratio
    What does the file's thumbnail look like in Project Assets after it is imported....thumbnail with no image (gray), thumbnail with only an audio icon
    within it, or other? On the Timeline, what do you see represented in Video 1....nothing as opposed to Audio 1 where you see the audio portion of
    the file?
    Do you have the latest version of QuickTime installed on your computer along with Premiere Elements 13/13.1? Are you running the programs as
    administrator?
    Is your video card/graphics card driver version up to date according to the web site of the manufacturer of the card?
    Let us start here. Based on your reply details, we will customize troubleshooting strategy for you.
    Thanks.
    ATR

  • Displaying a picture or image in a java server page

    I am using tomcat to load my java server pages. I need to display a picture in the page. Can somebody help?

    The images are not located on my site, or computer, but rather they are located on different websites. This is what the browser recieves when the jsp runs:
    <IMG SRC="http://www.thesite.com/images/theimage.gif"/>
    and the site that is running the JSP is:
    www.mysite.com/jsp/PicPage.jsp
    Is this what you think maybe happening when the browser tries to process the linked image:
    www.mysite.com/images/theimage.gif
    I don't really understand the nuances of HTML, but if I specify a web address completely in the HTML then wouldn't that specified website be queried for the pictures by the web browser?
    Thank you for any help you can provide.
    John

  • Took photos with iphone 4s. Pic displays in picture preview, but not in camera roll. Any advice? Pic should be on phone somewhere.

    Took photo with iphone 4s. Picture displays in picture preview on bottom left, but is not in camera roll. Pic should be in phone somewhere since it's in preview. Any advice?

    Ok try this kennylebouef,
    Open multitasking by double tapping the home button (at the bottom), a row of apps you've recently used should appear, tap and hold the photos app until it wiggles and displays an x, tap the x to close and then reopen the camera roll app. Let me know if it works. It's odd and frustrating, I know.

  • IPhoto 9.6 doesn´t display any pictures from library, upgraded

    iPhoto 9.6 doesn´t display any pictures from library. I have upgraded from an old iPhoto. I upgraded the Library also.
    Everything is inside the Library I can see but when I run iPhoto I get only a yellow note on the screen and no pictures?

    Everything is inside the Library I can see
    Do you mean by looking into the library using the Finder?
    but when I run iPhoto I get only a yellow note on the screen and no pictures?
    Then iPhoto has probably opened a new, empty library, because it could not find or access your iPhoto library. What happens, whiny double-click the Library to open it directly?
    Where is your iPhoto library stored? Is it in the Pictures folder or on an external drive?

  • Iphoto not displaying some pictures

    For some reason, and this is recent, if I try to display a picture within iphoto, it just shows a doted square with an "!" in the middle. Preview brings the files up just fine. What gives?

    Here's your problem then:
    One additional item I need to add that may give you more information is that my wife and I use the same iphoto library with different user accounts in the imac. I have the library located on the users\shared folder and her user and mine have read/write access to it.
    This form of Sharing is deprecated in 10.5 unless you're using iPhoto 09 (specifically v8.0.2) What you're having is a permissions issue caused by the ACL's used in Leopard. iPhoto cannot access the version of the Folder it needs.
    You need to either:
    1. Upgrade to iPhoto 09 (v8.0.2)
    or
    2. Change the system of Sharing you use:
    What you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. The problem here is that OS X works very hard to keep your data safe and secure from the other users. You're trying to beat what's built in to the system. So, to beat the system
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a Disk Image or even partition your Hard Disk.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Lastly: This method seems a little clunky at first, but works very well. Most importantly, it uses the System to do the job for you.
    Create a new Account on your Mac, call it Media. Create an iPhoto Library there. (BTW: This will work for iTunes too.)
    Enable Sharing on the Library:(Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other accounts. In those accounts, enable 'Look For Shared Libraries'. The Library will appear in the other source pane.
    This means that both users will be able to see the pics. If you want to use a pic then simply drag it from the shared Library to your own in the iPhoto Window. This means that each user can have their own edits.
    If you want to add photos to the Library: Log into the Media account for that purpose.
    To make it all seamless: Set your Mac to log into the Media Account automatically. Set iPhoto to launch on log-in. Then switch to your own account using Fast User Switching.
    Net result: a Library that's permanently available to all users but also protected. Each user can have their own versions of the pics if they want.
    No partitioning, no permissions issues. Uses no extra disk space. What's not to like?
    Regards
    TD

  • Displaying a picture from an array of pixel values

    I have a picture I want to display in an AWT frame. The picture is stored as several arrays of pixel values which represent rectangles.
    Each rectangle has a start co-ordinate and a height and width.
    There is a ColorModel associated with the pixel values, so that's not a problem.
    What's the best way to display these rectangles as pixels, and patch them all together to make the full picture? I'm currently trying to use a MemoryImageSource, but I'm having trouble displaying more than one rectangle at once, and the picture flickers like mad, suggesting MemoryImageSource intended for animation, whereas I just want to display the picture once.
    Any suggestions?

    OK, that looks good. I'm investigating it.
    However, It's not clear how to get the pixel values from an array into it. It requires a WriteableRaster of the pixel data, and to create a WriteableRaster, you need a DataBuffer... which is Abstract!
    Do you know how to make a DataBuffer from an array?

Maybe you are looking for

  • Using time capsule to back up two drives?

    Hello. I haver done a search on this but am unable to find a clear answer. I work on a macbook pro with a hard drive attached, keeping my large files off my system drive. I currently back up both the system drive and external work drive with superdup

  • Role for Query?

    Hi, i had created new report and i do not have any roles assigned to my name! i checked in the query designer also. when i check the role by placing cursor on my new query it says " you are not assigned to any role" in such case how would i go furthu

  • Problems with LAP-1142n booting

    Hi, I recently installed about 40 LAP-1142n access points fresh out of the box in a new elementary school. All but 5 of the AP's were able to join the controller and were set to function in H-Reap mode. The AP's that didn't join seem to be stuck in t

  • EQUATION EDITOR WORD 2011

    Hi all, i recently purchased a mac with word 2011.  When i use the equation editor and save my document, upon re-opening the equations are all over the place or sometimes missing?  is there a setting or save type im missing?

  • Data Error on first run of report

    Hi, There is a Payments report which has two sheets. The first sheet has 10 parameters. The second sheet has the same 10 parameters plus another parameter of the Withholding Tax Group (not necessary to enter data). Both sheets are based on the same 4