How do I put one logo (saved as bmp or jpg file) on the form

Hi !
I have developed some forms and I want to put on the top of each
form one logo, which is available both as bmp as well as jpg
file.
How do I do it ? Meaning which type of field do I need to store
that logo and where all do I need to declare/define it ?
Any help will be welcome...
Shobhit
null

In the layout editor
from the File menu import image
select your file it will be added to the canvas
no coding is required
null

Similar Messages

  • How do I put a logo into the address line of my browser?

    How do I put a logo into my site so that it shows up on the browser address line at the top of the page?

    Create a favicon.ico file and put it in the root folder, use this site to make one from an existing image file
    Flush your browser cache, it won't appear right away but will show after a few loads

  • On Firefox 4, how can I put one "new tab" on the "tab bar" (The + sign) and one next to the "back/forward" buttons (as in FF 3.6)?

    On Firefox 4, how can I put one "new tab" on the "tab bar" (The + sign) and one next to the "back/forward" buttons (as in FF 3.6)?
    In my current Firefox, the "new tab" icon/item from the "customize" pop-up window menu of items is placed next to my home, back, forward buttons near the top-left of my header (Button 1 for "new tab"). Then, the tab bar automatically come with a small tab (with a + sign) to the right of your last tab opened (so you click on + and a new tab opens. Button 2 for "new tab"). I like to have this "new tab" button twice (as a + mini tab, and next to my "home icon".
    When I upgraded to Firefox 4, I seemed to be only able to "customize" or use the "new tab" in one place. Either as an icon next to home button, or as a "+ minitab", but NOT both.
    What can I do to put this button in Firefox 4 on BOTH places???
    Your help is really appreciated. I want to upgrade, but I want my buttons on both places...
    I upgraded to FF 4, but downgraded again just because this feature... that's just me of coarse :-)

    *New tab toolbar button: https://addons.mozilla.org/firefox/addon/new-tab-toolbar-button/

  • How can i put one scene into JPanel of the swing?

    how can i put one scene into JPanel of the swing?

    980571 wrote:
    ty for the information but i have a problen with JFXpanel when i try to into a panel it doesnt display insideSorry to hear that. If you want assistance with the code, feel free to post the relevant parts of it. Make sure to use \ tags when you do.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I put a Logo in the Browser-Register?

    Hey guys, does anybody knows, how I can put a Logo in the Browser Register? For example, watch this picture below; I want a Logo like the Facebook Logo, but I don't know how I can make this. The blue mark is my Website.
    Is this possible with Adobe Muse?
    Thank you.

    Hope this helps
    David

  • Pages:  How can I sort one column of words and not have it affect the other columns?

    How can I sort one column of words and not have it affect the other columns?  I have opened the inspector to the edit columns and rows under Table.  It will sort the column, but then it changes the other colums as well.  I know that if I use Numbers, it will work, but I want to know how to do the same thing in Pages.

    Hi Peter,
    Numbers sorts full rows on values in selected column(s). The technique for sorting a single column is essentially the same as Jerry is describing for Pages tables—separate the (data in the) column to be sorted, sort it, return it to the table.
    In Numbers the actual column may be separated from the original table, sorted, then returned. In Pages, the data must be extracted, sorted, then pasted back in, overwriting the unsorted data (if it was left in the original table).
    iWork tables follow a database model in which each row is a Record, and each column holds a Field within the records.
    As evidenced by the current question (and several similar questions arising in the Numbers community) that model doesn't apply to the way some users, especially some who come in from the MS Excel world, use tables.
    With Excels model—islands of data on a single large table, the ability to sort one or a selected few columns of data makes sense. One 'island' may comprise only cells AA21:AH50. Sorting that small 'table' should be possible without disturbing the rest of rows 21-30, which are probably part of one or more other 'data islands' in the sea that is a MS Excel spreadsheet.
    In Numbers, each of those 'islands' would be a separate Table, and that Table would be sortable without disturbing other Tables in the document.
    Regards,
    Barry

  • How can I get a date picker or wheel to show up in the form to make filling in a form with a lot of

    how can I get a date picker or wheel to show up in the form to make filling in a form with a lot of dates more easy?

    There is no built-in date picker available for forms created in Acrobat. There are some third-party solutions involving JavaScript (either a large collection of fields or a custom dialog) though. Also, text fields with date formatting will use a wheel type date picker on Android/iOS devices with Adobe Reader.

  • How to save info in a meta-data of a jpg file?

    hi, i need to know how to save info in a meta-data of a jpg file:
    this is my code (doesn't work):
    i get an exception,
    javax.imageio.metadata.IIOInvalidTreeException: JPEGvariety and markerSequence nodes must be present
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeNativeTree(JPEGMetadata.java:1088)
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeTree(JPEGMetadata.java:1061)
    at playaround.IIOMetaDataWriter.run(IIOMetaDataWriter.java:59)
    at playaround.Main.main(Main.java:14)
    package playaround;
    import java.io.*;
    import java.util.Iterator;
    import java.util.Locale;
    import javax.imageio.*;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.metadata.IIOMetadataNode;
    import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
    import javax.imageio.stream.*;
    import org.w3c.dom.*;
    public class IIOMetaDataWriter {
    public static void run(String[] args) throws IOException{
    try {
    File f = new File("C:/images.jpg");
    ImageInputStream ios = ImageIO.createImageInputStream(f);
    Iterator readers = ImageIO.getImageReaders(ios);
    ImageReader reader = (ImageReader) readers.next();
    reader.setInput(ImageIO.createImageInputStream(f));
    ImageWriter writer = ImageIO.getImageWriter(reader);
    writer.setOutput(ImageIO.createImageOutputStream(f));
    JPEGImageWriteParam param = new JPEGImageWriteParam(Locale.getDefault());
    IIOMetadata metaData = writer.getDefaultStreamMetadata(param);
    String MetadataFormatName = metaData.getNativeMetadataFormatName();
    IIOMetadataNode root = (IIOMetadataNode)metaData.getAsTree(MetadataFormatName);
    IIOMetadataNode markerSequence = getChildNode(root, "markerSequence");
    if (markerSequence == null) {
    markerSequence = new IIOMetadataNode("JPEGvariety");
    root.appendChild(markerSequence);
    IIOMetadataNode jv = getChildNode(root, "JPEGvariety");
    if (jv == null) {
    jv = new IIOMetadataNode("JPEGvariety");
    root.appendChild(jv);
    IIOMetadataNode child = getChildNode(jv, "myNode");
    if (child == null) {
    child = new IIOMetadataNode("myNode");
    jv.appendChild(child);
    child.setAttribute("myAttName", "myAttValue");
    metaData.mergeTree(MetadataFormatName, root);
    catch (Throwable t){
    t.printStackTrace();
    protected static IIOMetadataNode getChildNode(Node n, String name) {
    NodeList nodes = n.getChildNodes();
    for (int i = 0; i < nodes.getLength(); i++) {
    Node child = nodes.item(i);
    if (name.equals(child.getNodeName())) {
    return (IIOMetadataNode)child;
    return null;
    static void displayMetadata(Node node, int level) {
    indent(level); // emit open tag
    System.out.print("<" + node.getNodeName());
    NamedNodeMap map = node.getAttributes();
    if (map != null) { // print attribute values
    int length = map.getLength();
    for (int i = 0; i < length; i++) {
    Node attr = map.item(i);
    System.out.print(" " + attr.getNodeName() +
    "=\"" + attr.getNodeValue() + "\"");
    Node child = node.getFirstChild();
    if (child != null) {
    System.out.println(">"); // close current tag
    while (child != null) { // emit child tags recursively
    displayMetadata(child, level + 1);
    child = child.getNextSibling();
    indent(level); // emit close tag
    System.out.println("</" + node.getNodeName() + ">");
    } else {
    System.out.println("/>");
    static void indent(int level) {
    for (int i = 0; i < level; i++) {
    System.out.print(" ");
    }

    Hi,
    Yes, you need store data to table, and fetch it when page is opened.
    Simple way is create table with few columns and e.g. with CLOB column and then create form based on that table.
    Then modify item types as you like, e.g. use HTML editor for CLOB column
    Regards,
    Jari

  • How to attach a PDF file TO the form so that recipients can access the file as a resource?

    How to attach a PDF file TO the form so that recipients can access the file as a resource?

    Sorry we do not support this. What you can do though is add a Formatted Text element and add a link to a PDF. To insert a link add some text, select the text and right click on the text (or look under the Insert menu in the top right of the scene)
    Gen

  • How do I reset a company owned iPad if I don't have the former users iTunes account password

    How do I reset a company owned iPad if I don't have the former users iTunes account password

    You'll need to contact Apple directly with proof of ownership of the device for the company, and have them remove it.
    Otherwise it cannot be done directly.

  • How can I put one "shape" on top of another in pages?

    Hi all:
    I'm trying to do something pretty simple.  I made some shapes using the "shapes" tool in the toolbar.  I want to put one shape on top of (or in front of) another but it gives me the masking tool instead.  I tried putting a shap in the background but that didn't work either.  it tends to snap the shape I move to it right back to where it was when I tried to move it.  How can I do this?
    Thanks!

    I really don't understand what you are doing.
    I inserted two shapes with their default settings and I got what you see.
    I unchecked the box "Object causes wrap" but it's usefull when there are text objects in the page.
    Yvan KOENIG (VALLAURIS, France) samedi 7 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How can I put a logo, picture in a header in Pages 5.2.2?

    I would like to put a logo, picture in the header of a document. However when I click on the header it appears to only allow page number, date, time stuff.
    Pages 5.2.2
    OS X 10.9.5

    PeterBreis0807 wrote:
    Upgrade to either Pages 5.5.2 (requires Yosemite), or Pages '09 (runs on all versions of OS X since 10.4.11) which has this plus 100+ more features missing in Pages 5.x.
    Otherwise use Master Objects.
    Peter
    Hi Peter,
    I thought the OP could upgrade to Pages 5.5.2
    If not, it is rather like someone complaining that Numbers 3.0 can't do what Numbers 3.5.2 can do.
    Regards,
    Ian.

  • How do I put a logo in the signatures without it being HUGE

    I have been trying to put my logo in the signature of the mail preferences.  It comes out appearing huge.  Any suggestions?

    That's because the actual size of the picture is big. Use a photo editing program to scale it down. You could even do this in Preview by selecting "Tools" and then "Adjust size"

  • How do you put one in series of the same photo in a new album

    I have tried to put just one edited shot, while there are still others "connected" to it.I only want the one I highlight to go in a new folder..but,,it always takes all the other ones as well.I have tried duplicating the one I like and transferring that one however,,they still all transfer to the new folder. .???

    "Connected" means stacked. They all move but if you hit the number in the stack they will all close up and show only the "pick".
    Once in a album you can make any of the images the "Album Pick" so you only see that one when they are stacked.
    If you unstack the images then you can bring one individually along, but this is not using the power of stacking.
    It is better to bring all of them in, make an album pick if this is not the same as the pick and just hide the others. If you change your mind, just open the stack, select a new album pick and your done.
    The thing about Stacks is the images should all be alike where you would only really want 1 of all of them.
    Tom Bagelturf did a really nice description of a bunch of Apertures features, including Stacks... Check it out here:
    http://homepage.mac.com/bagelturf/aparticles/aparticles.html
    Very worthwhile reading.

  • How do you put a logo on screen

    I'm trying to put a logo at the bottom of my 58 minute video. FCE will not allow me to extend the duration past 1 minute. i changed the user preferences to 58 minutes for still frame. The logo is in jpeg format.
    i can't get it to work!
    Message was edited by: pwrlogic

    sorry about the double post.
    I was very frustrated.
    I used a photoshop psd as a last resort and it worked but the other suggestions about modify freeze frame and setting the duration in the viewer are better.
    THANKS

Maybe you are looking for

  • Every 3 seconds same question....

    The problem is that years ago I had an id apple account, but the email which is registred this account I cant entry any more time, and I dont remember anything about it.... and then I have a new id apple and icloud account where everything is correct

  • Axis bank net secure with webpin not working on ipad2

    Hi, Axis bank net secure with webpin not working on ipad2 Lt me know how to proceed

  • Test Exchange Services on all servers one cmd

    Guys is there any way i can run the below in one cmd as i tried but getting a below error  i am try to check the exchange services from one cmd let instead of simple script $ExchServer=Get-ExchangeServer foreach ($Server in $ExchServer) echo $Server.

  • Adobe interactive form for material creation

    Hi experts, I f an adobe interactive form for material creation was created using JAVA... what part is involved in the ABAP pgm. Thanks in advance

  • Remove ipv6 records from SSRS report

    Hi I have report which chows Computer name, user, MAC and IP Some report lines include one Computer with both ipv4 and ipv6. How to remove that ipv6 part? Adding AND v_gs_network_adapter_configuration.IPAddress0 NOT LIKE 'fe80%' did not helped becaus