Inserting static image

Several questions, really
I normally work in PLUS. Can you insert a standard image (customer logo) using PLUS. If so, how?
I have been told (or remember from the past) the only way to do this is via desktop. If so, can I access a discoverer report created in PLUS via desktop?
have not been in desktop for many a year. When I try to open it, I get the error msg "you do not have access to any EUL" From Administrator, I can grant access to a report, but how do you grant access to the EUL?
All this links together in that I need to insert a silly image.
Thanks

Hey there.
What Tamir-L says is correct but just wanted to mention that when you mentioned about putting the logo in via Desktop, you're probably referring to being able to have one in the Title of the workbook whereas in Plus, it'll be more in the Plus framework.
Both of course look good but an image put in the desktop title will not be displayed in Plus, so that's probably out for you if you think the image in the title will carry over to Plus.
As for logging into Desktop you should check - as mentioned by Tamir-L that you're logging in correctly as either a database user or an Apps user via Tools -> Options -> Connections.
If this is an Apps environment, then you'll probably want the 2nd. box - connect to applications EUL, or you can choose the 3rd. box - connect to both standard and applications EULs (which allows you to choose at login screen time as mentioned).
Also, make sure that Desktop has been setup to even use an Apps environment (if we're talking Apps here) and if so, I'll just bet your gateway information is not there.
The easiest way of determining what info to put in the gateway boxes (gateway info and password) is when there, just query Help and the example it uses is exactly the info you want to put in the 2 boxes.
Russ

Similar Messages

  • Inserting static image in crystal report now showing the image

    Post Author: liezl
    CA Forum: .NET
    Hello to everyone,
    I am creating a simple report using Crystal Report in .NET 2005. I try to insert a static picture in the report but when I browse it through the web it didn't show at all. When I get the address of the picture it says http://liezl:8080/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_c31338e7-14d2-45f5-a4f9-29866febb34d.png. The error is "The Resource cannot be found. /CrystalImageHandler.aspx"
    Please help me!!!
    Thank you.

    Post Author: eyalkz
    CA Forum: .NET
    I have the same problem.
    The problem started after upgrading to CR XI Release 2, the image is not shown through crystal reports viewer in the browser.
    However, I can see the image while printing, in preview mode and in export which means the general path is ok
    the image is there but there is only an internal crystal report viewer issue that started in 11.5 version (in 11 version the same code worked)
    If you find anything please let me know.
    Thanks,
    Josh

  • How to insert GIF images in Blogs

    I am able to insert GIF images in to blogs... but its not playing .. only static..
    Any help..
    Thanks in advance..
    Regards,
    Mahesh

    Yes.. Its working perfect. (Sorry Jyoti sir for copy-paste)

  • Adding static images to map at specific points in time

    Hello,
    I am trying to create a power map animation and I am having difficulties figuring out how to go beyond simply animating the data over time.  let's say I want to add a little image of the space needle in Seattle when the animation gets to the point in
    time when it was built.  Obviously, I will be in the process of animating my normal data when this image gets added.  Also, if you know of any tutorials that might be relevant please mention them.
    Thanks,
    Bob

    You can add static images at a point in time and these are done by adding an annotation to a specific point that is plotted on your map.  Once you pause the tour at a specific time you might want to add a scene to the tour and then add your annotation.
     In order to add an annotation you will need to select the point and then right-click and select 'Add Annotation'.  You will then be able to add a title along with either text, a field from data set, or an image.  At this point you can continue
    to plat the tour and/or add another scene and continue to build out your tour.
    Check out this article on inserting annotations to Power Maps for additional information
    http://office.microsoft.com/en-us/excel-help/add-an-annotation-to-my-power-map-HA104106344.aspx

  • How to insert embedded image into TextArea htmlText (and add IOErrorEvent.IO_ERROR listener).

    I unsuccessfully tried to find way to insert embedded image into TextArea via <img> tag. Can you point me out how to do this?
    Also, please, tell me how to handle IOErrorEvent from TextArea because adding IOErrorEvent.IO_ERROR listener to TextArea doesn't cause any effect when image url of img tag has not been found.
    Thanks

    i 've successfully inserted the image into the database... here is my code
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package PMS;
    import java.io.File;
    import java.io.FileInputStream;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    public class Browse_java
    static Connection con=null;
    public static void main(String args[])
    try{
    System.out.println("(browse.java) just entered in to the class");
    con = new PMS.DbConnection().getConnection();
    System.out.println("(browse.java) connection string is"+con);
    PreparedStatement ps = con.prepareStatement("INSERT INTO img_exp VALUES(?,?)");
    System.out.println("(browse.java) prepare statement object is"+ps);
    File file =new File("C:/Documents and Settings/Administrator/Desktop/Leader.jpg");
    FileInputStream fs = new FileInputStream(file);
    byte blob[]=new byte[(byte)file.length()];
    fs.read(blob);
    ps.setString(1,"C:/Documents and Settings/Administrator/Desktop/Leader.jpg");
    ps.setBytes(2, blob);
    System.out.println("(browse.java)length of picture is"+fs.available());
    int i = ps.executeUpdate();
    System.out.println("image inserted successfully"+i);
    catch(Exception e)
    e.printStackTrace();
    finally
    try {
    con.close();
    } catch (SQLException ex) {
    ex.printStackTrace();
    }

  • How to insert an image and an icon in a JFrame !

    i am seeking for th efollowing :
    1/- how to insert an image in a Jframe ? i triied to use a label and set labelk icon with the specefic path but i can not see it neither in the jbuilder6 brower nor in the execution of the application ! how to deal with that please!
    2/- how to insert an icon to my window sothat it does not display the jbuilder 6's default icon
    ant help wil be really apreciated! thanks

    In JBuilder, create a new file called Frame1 then copy this code into it. It should give you a frame which will have a different icon in the frame title and an image in its pane.
    Change the name of the icon it uses to any gif file that you have on your pc.
    // START OF FILE
    import java.awt.*;
    import javax.swing.*;
    public class Frame1 extends JFrame {
         JLabel jLabel1 = new JLabel();
         public Frame1() {
              try {
                   jbInit();
              catch(Exception e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              Frame1 frame1 = new Frame1();
              frame1.pack();
              frame1.show();
         private void jbInit() throws Exception {
              ImageIcon myImage = new ImageIcon("c:/data.gif");
              this.setIconImage(myImage.getImage());
              jLabel1.setText("jLabel1");
              jLabel1.setIcon(myImage);
              this.getContentPane().add(jLabel1, BorderLayout.CENTER);
    //END OF FILE

  • Insert an image in JTable

    hi all
    how can i insert an image in JTable instead of text in a row?
    angela

    Hi
    I am sending u two bits of codes
    execute these and let me know
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    public class FrozenTable extends JScrollPane {
    public FrozenTable()
    TableModel tableModel = new AbstractTableModel()
    public String getColumnName(int col) { return "Column " + col; }
    public int getColumnCount() { return 20; }
    public int getRowCount() { return 40;}
    public Object getValueAt(int row,int col) { return new Integer(row * col); }
    JTable table1 = new JTable(tableModel);
    JTable table2 = new JTable(tableModel);
    TableColumnModel columnModel = table1.getColumnModel();
    TableColumnModel columnModel2 = new DefaultTableColumnModel();
    TableColumn col1 = columnModel.getColumn(0);
    TableColumn col2 = columnModel.getColumn(1);
    columnModel.removeColumn(col1);
    columnModel.removeColumn(col2);
    columnModel2.addColumn(col1);
    columnModel2.addColumn(col2);
    for(int i = 0; i < 2; i++)
    TableColumn col = columnModel2.getColumn(i);
    col.setWidth(80);
    col.setMinWidth(80);
    table2.setColumnModel(columnModel2);
    table2.setPreferredScrollableViewportSize(table2.getPreferredSize());
    table1.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    table1.getTableHeader().setUpdateTableInRealTime(false);
    table2.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    table2.getTableHeader().setUpdateTableInRealTime(false);
    table2.getColumnModel().getColumn(0).setCellRenderer( new ColorRenderer(0) );
    table2.setBorder(new CompoundBorder(new MatteBorder(0,0,0,1,Color.black), table2.getBorder()));
    setViewportView(table1);
    setRowHeaderView(table2);
    setCorner(JScrollPane.UPPER_LEFT_CORNER, table2.getTableHeader());
    public static void main(String[] args)
    JFrame frame = new JFrame();
    JPanel panel = new JPanel();
    FrozenTable table = new FrozenTable();
    panel.setLayout(new GridLayout(1,1));
    panel.add(table);
    frame.getContentPane().add(panel);
    frame.setSize(500,250);
    frame.setVisible(true);
    class yourClass extends JLabel implements TableCellRenderer
         int selectedRow = 0;
         public yourClass ()
              super();
              setOpaque(true);
         public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
              try
                   setIcon(new ImageIcon("image.gif") );          
              }catch(Exception e) {  }
              return this;
    Cheers :)
    Nagaraj

  • Insert an image

    i am new to java programming and i was wonder how i would insert an image to be used as the background to my program, this is what i have so far and have to keep, as it is for school:
    import java.awt.*;
    import hsa.Console;
    public class Asmt4_LemireE
    static Console c; // The output console
    public static void main (String[] args)
    c = new Console (120, 125, 20); //'c' is the output console
    // Place your program here:
    thats what i have and have to keep, what do i need to add to it to be able to add an image, an example would be greatly appreciated.

    oh ok, now i follow you, could you give me an example of a class that is written by sun, that will allow me to use identifiers (if possible) if not just a class that will allow me to add text, posibble some clickable links and the ability to add images. Thx

  • Unable to insert an image in a post.

    When I attempt to insert an image in a post I get an "Error on page" message with the following description:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BOIE8;ENUSMSCOM)
    Timestamp: Sun, 15 Jan 2012 23:06:27 UTC
    Message: 'undefined' is null or not an object
    Line: 1805
    Char: 63
    Code: 0
    URI: http://bt.i.lithium.com/t5/scripts/093FBAB1052718DFC22CCFE69E6394AC/lia-scripts-body-min.js
    This occurs using Windows XP and Internet Explorer  8 Version 8.0.6001.18702IC.
    On another PC using Windows XP and Internet Explorer 7 Version 7.0.5730.11 it works OK.
    I have also found that it works OK on the original machine using Firefox.
    Is there anyone else having this problem ?
    Can the moderators please investigate ?

    Keith,
    I am using the Tree symbol.
    DOM.get(id+'_ok').focus()
    ;t.count++;return w;},focus:function(id){var t=this,w;if(w=t.windows[id]){w.zIndex=this.zIndex++;w.element.setStyle('zIndex',w.zIndex);w.element.update();id=id+'_wrapper';DOM.removeClass(t.lastId,'mceFocus');DOM.addClass(id,'mceFocus');t.lastId=id;if(w.focussedElement){w.focussedElement.focus();}elseif(DOM.get(id+'_ok')){DOM.get(w.id+'_ok').focus();}elseif(DOM.get(w.id+'_ifr')){DOM.get(w.id+'_ifr').focus();}}},_addAll:function(te,ne){var i,n,t=this,dom=tinymce.DOM;if(is(ne,'string'))
    te.appendChild(dom.doc.createTextNode(ne))
    ;elseif(ne.length){te=te.appendChild(dom.create(ne[0],ne[1]));for(i=2;i<ne.length;i++)
    The code that is being flagged is given in bold in the last line above.

  • Any way to create a PDF with an image field or insert an image?

    Hi. I'm using CS3 with Acrobat 8.1 Pro on a Mac. We're trying to create a one-page PDF that we'll save and users on a PC can open up and add text fields to, as well as an area where they can insert an image file (their logo). The source file is created in Illustrator. Would we have to create a document through Acrobat with these fields available to them in their version of Acrobat or Reader (where they can add their own content), or is there another way? Not sure how to best go about it, if it's at all possible. Thanks.

    dromanellTUTOR wrote:
    Hi. I'm using CS3 with Acrobat 8.1 Pro on a Mac. We're trying to create a one-page PDF that we'll save and users on a PC can open up and add text fields to, as well as an area where they can insert an image file (their logo). The source file is created in Illustrator. Would we have to create a document through Acrobat with these fields available to them in their version of Acrobat or Reader (where they can add their own content), or is there another way? Not sure how to best go about it, if it's at all possible. Thanks.
    I don't think there is any particular requirement for Content although, you will have to play with the size of the fields to accomodate the size of the logo. if you want to send out over a web page then have them download, and email.
    you will have to go to advanced menu and choose Extend Features in Reader. this will allow the item to be downloaded, filled out, saved and emailed.
    NOTE: There is a limitation of no more than 500  returned pdfs.
    Adobe has special service that allows you to do this unlimited however; It cost about the same as a Lincoln Towne Car fully loaded, per year.  If your a Fortune 500 company its peanuts. But for the rest of the world its out of range.
    I guess the reson its so expensive, is that its not used that much. on the other hand, if they would get price down to 250-500 bucks per year, everyone could use it.
    However; this limited rights thing they have come up with is good for Non-profits and small businesses that just need something on a small scale.

  • PDF Size is huge when inserting an image on every page

    Hello,
    I've got a little problem when inserting an image in a crystal report and then exporting it to PDF.
    We're using Crystal Report XI and we've designed the report with a sub-report that gets an image from a database field and put this image on every page of the report (it's just a logo for every page).
    This image is a JPEG file with 32KB size.
    The exported report is about 1000 pages and we're dealing with an issue because of that. Sometimes the report won't generate giving a OutOfMemory Exception (altough we've defined MinHeap/MaxHeap to 512M).
    We also find this curious :
    - A generated pdf report with the image on every page totals 100MB size (we would expect something like 32KB*100pages=32000KB/1024KB=31.25MB ?) : Depending on the number of pages, could give OutOfMemoryError.
    - A generated pdf report without the image on every page totals 1.8MB size. : No OutOfMemoryError problem here.
    Do you know of any way to optimize this, reducing the pdf size and ?
    Thank you very much.
    Eduardo Andrade (GEDI, S.A.)

    Hello Ted Ueda,
    Thank you for your answer, I was suspecting that...
    Since this is an obvious problem, do you know if there is another way of including an image in the report in a more efficient way ? For instance, include the image, only on the first page and on the rest of the pages just include a link to that image?
    I've searched in here : https://wiki.sdn.sap.com/wiki/x/JwBmBQ , but did not find anything close to this...
    Thank you.
    Best Regards,
    Eduardo Andrade

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • How can I insert an image into a cell in Numbers for iPad?

    Hi,
    is there any way to insert an image inside a cell using Numbers for iPad? I tried doing it on desktop version and it works, then I shared it through iwork.com and downloaded into my iPad and it's showing fine on the iPad ( although there's no way to edit or change the image inside the cell ) but when I try to do the same task on iPad itself, the image always comes floating even if I place the cursor inside a cell before inserting.
    any idea how to do it or if it's even possible?
    thanks.
    John

    Images can be added to cells only as "image fill." Cell fill is an attribute of the cell, not content of the cell. Only cell content can be retrieved by a formula or by copying the content of the cell.
    Copying the cell will also copy its format, including the image fill, but I've found no way to extract the image from the cell.
    Regards,
    Barry

  • How do I insert several images at the same time?

    I'm wanting to insert several images onto a page. How do I do that? It only allows me to insert one at a time and I have over 100.

    If this is a once off exercise, you can speed things up in DW in Code View if you insert the code by hand.
    If the structure is identical (e.g. in a table), you can easily cut-and-paste the repetitive code and change the name of each file to suit.
    For example:
    <table>
    <tr>
    <td>image1.jpg</td>
    <td>image2.jpg</td>
    <td>image3.jpg</td>
    <td>image4.jpg</td>
    <td>image5.jpg</td>
    </tr>
    </table>
    However if you're doing this continually, as Nancy says, sounds like you might be better off with a 3rd party dedicated photo gallery tool or Dreamweaver extension, with a very efficient, automated front end for large numbers of images, whose code output you can insert into the Dreamweaver.
    There are plenty out there.

  • Inserting an image to a message post or attaching images to a post or creating a gallery

    Hi:
    I'm trying to either attach an image to a message post or insert it in-line with a message.  I've read several references to this ability perhaps being something that will happen "soon", but those messages that refer to this are dated in August of 2009.  Here it is December and I still can't figure out how.
    The online help says very clearly:
    How do I insert an image in a post?
    You insert an image the same way as you did before, but now you have more choices about where the image comes from and how it looks. You can insert an image from your computer (this uploads the image to your gallery), from your image gallery (if the image has been approved), or from another location on the Web.
    To insert an image in a post:
    Start a new post.
    You can insert images anywhere: in messages, replies, blog articles, ideas, or comments.
    Click the Insert Image button in the editor's tool bar (it looks like a tree).
    Well, I don't know how you could do it "before", but there is no "Insert Image" button in the editor's toolbar at all.
    There are also messages in this forum that say you can paste from a Word document (there IS a "Paste from Word" icon on the toolbar.)  However, when I paste from word, the images in my Word document are lost.
    Finally, I thought I'd post the images in a gallery.  Again the online help says:
    To upload an image to your image gallery:
    Go to your Profile page and click the View Image Gallery link.
    Click Browse to select an image file to be uploaded.
    If the image is small enough (the size limit is set by your community), the image is uploaded. A preview of the image appears so that you can make sure you uploaded the right image.
    There is no "View Image Gallery" link on my profile page.
    Now, I am a computer consultant and therefore (hopefully) very computer-savvy, so this is not an issue with me being a forum "novice."  But I've always had issues with help documents that say "click on this icon" and don't show a screenshot of where the icon is.
    And, I can't PROVE that my profile page doesn't have a gallery link because I can't upload a screenshot! <grin>.
    So, can anyone clarify if and how we can upload images?  Or if there is a definitive help document that lays this out, provide a link to that document?  The help "search" function is pretty weak, because it does a FORUM search on any term you type in, rather than restricting it to help documents.
    There's also some references to having to be a "silver member" in order to upload images, but no information on what is required to become such a member.
    Thanks
    Ron

    As stated in the Community Ranking Structure post on the Announcements section:
    Many community members will ask (and have asked in the past) exactly what the criteria is for achieving each rank in the hierarchy.  To eliminate the likelihood of system abuse or forum ‘rank climbing’, we have decided not to publicize the exact ranking criteria.  That said, community members will gain higher ranking by excelling in the activity components below.  The list is not in order of importance and some elements are weighted greater than others.
    Kudos Given
    Kudos Received
    Length of Time on the Community
    Number of logins
    Posts marked as “Accepted Solution”
    Total number of Posts (minus deleted posts)
    Total Number of Tags applied throughout community
    Time spent online in the Community Forums
    As members achieve higher rankings within the Community Forums, they will automatically receive additional functionality – while maintaining the functionality rights previously achieved.
    This is done to prevent spamming and trolling of the forums and to prevent objectionable content from being uploaded to the site.  There are legal issues involved with this and it preserves the integrity of the forums to grant certain permissions at certain ranks.
    The ranking structure undergoes periodic review and this may change in the future -- but no guarantees. 
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

Maybe you are looking for

  • GeForce2Ti pro and tv-out

    I have a geforce2Ti pro with video-in and tv-out. When i try to connect my video card with tv i don't see anything. the tv options in avanced options is not enable. help me!

  • FIOS Quantum- Netflix Streaming Issues

    Setup: Actiontec Rev I Router: 50 foot Cat5 cable to Roku XDS device. Speed test always indicates 50MBS download speed. Netflix streaming has always worked but quality level varies and rebuffering and downgrading usually occurs. I'm often able to sta

  • Problem with working: logic pro x & kontakt 5

    My logic pro x bounces o.k (with the mini mac that i use), but it can not bounce well when i creat a project that uses the kontakt 5 instruments why? thanks

  • Show all shared folders on Mac?

    I have a Windows PC. It has lots of shared folders. Suppose the name of the PC is "WinPC1". If I use a Windows laptop, I could easily see all shared folders by typing "\\WinPC1" in the address bar. Now, I am using a Mac. I know I can add specific fol

  • Why can't I highlight a layer in a photo by touching it?

    On a many layered photo, I used to be able to highlight a layer by touching it, so I could edit the layer. Now I can't highlight the layer unless I scroll down on the layers tool on the side bar. This is hard to do with some of my larger projects. An