How to use the date of the file, when you download a file?

Using the basics of 12 c, APEX 5.0 and IE11

I am creating a file upload feature for my application.  I'm able to get the upload├⌐ file in my table, but one of my requirements is that I fill in a value in the table with the "file date".

Is there an easy way to get the "file date" in the file being downloaded and fill a field for all records with this date?

Tillie

Tillie says:

Using the basics of 12 c, APEX 5.0 and IE11

I am creating a file upload feature for my application.  I'm able to get the upload├⌐ file in my table, but one of my requirements is that I fill in a value in the table with the "file date".

Is there an easy way to get the "file date" in the file being downloaded and fill a field for all records with this date?

That depends on your definition of 'easy '...

The HTML5 File interface can be used to access date in browsers supportthe file was last modified.

1. Add a hidden page that contains the file download point (P6_FILE_DATE in this example).

2. create a dynamic action of change on the file upload question (P6_FILE):

Event: Change

Selection type: Agenda

Region:

Real Actions

Action: Run the JavaScript Code

Fire on Page load: NO.

Code

console.log('Get file modification date:')
var fileItem = $x('P6_FILE');
if (window.File) {
  if (fileItem.files.length > 0) {
    var file = fileItem.files[0];
    if (typeof file.lastModifiedDate !== 'undefined') {
      console.log('...lastModifiedDate for file \"' + file.name + '\": ' + file.lastModifiedDate);
      apex.item('P6_FILE_DATE').setValue(file.lastModifiedDate);
    }
    else {
      console.log('...browser does not support the HTML5 File lastModifiedDate property.');
    }
  }
}
else {
  console.log('...browser does not support the HTML5 File interface.');
}

If the browser has support for the File interface and lastModifiedDate property, the date, the file was last modified will be presented in the P6_FILE_DATE article in the form:

Fri Jul 17 2015 10:43:44 GMT+0100 (GMT Daylight Time)

You can analyze and convert your data load process to obtain a TIMESTAMP or DATE value according to the needs.

Tags: Database

Similar Questions

  • Computer will not use the drive when you restart.

    I have a Pavilion dv 9000 and had problems more and more lately (win explorer fails, application launcher fail, blue screens, crashes etc.).

    I decided to use the recovery disk that was created at first boot. According to all the manuals that I found (on - and offline), it is just to put the recovery disk in the DVD-ROM and restart.

    The problem is that nothing happens. The computer does not use the disk when it reboots.

    Anyone experienced the same problem with the recovery disk?

    I'm not having any other problems with the ROM, works perfektly once Windows is running.

    Thank you

    You may need to change the BIOS to do first the CD drive in the boot sequence to boot from the CD.  To do this, hold the screen that tells you the key F to push to enter the menu start or start of installation.  Push it quickly. Make the changes, save your work and exit.  Put the CD in the drive and reboot.  When you are prompted, press any key to boot from the CD.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • HOW to use the file/BLOB data temporary - email for multiple users... Please see code

    Dear gurus
    the code below works fine, he sends a good fixation to the first user, but to the 2nd user, it send blank (empty) file.
    What I want, I have read the data from the source and enter the temporary BLOB and use the same data to send several users in the loop.


    create or replace
    PROCEDURE dba_ho.emailattacheulhr is
    / * LOB related operation varriables * /.
    v_src_loc BFILE.
    l_buffer RAW (54);
    l_amount directory: = 54;
    l_pos INTEGER: = 1;
    l_blob BLOB: = EMPTY_BLOB;
    l_blob_len INTEGER.
    v_amount INTEGER.
    / * Related UTL_SMTP varriavles. */
    v_connection_handle UTL_SMTP. CONNECTION;
    v_from_email_address VARCHAR2 (200);
    v_to_email_address VARCHAR2 (200);
    v_cc VARCHAR2 (200);
    v_smtp_host VARCHAR2 (50);
    v_subject VARCHAR2 (500);
    l_message VARCHAR2 (30000);
    l_filename VARCHAR2 (4000);
    CustNo number (8);
    CNAME varchar2 (50);

    cst slider is
    Select a.EMAIL_ADDR, a.CARDHOLDER_NAME
    Cust a
    ORDER BY a.cust_no;

    / * This procedure of send_header is mentioned in the documentation * /.
    PROCEDURE send_header (pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
    BEGIN
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    pi_name | ': ' || pi_header | UTL_TCP. CRLF);
    END;

    BEGIN
    v_src_loc: = BFILENAME ('DIR_MMAIL', 'MAKPROM.pdf');
    v_from_email_address: = '[email protected] ';
    v_cc: = '[email protected] ';
    v_smtp_host: = 'mailhost.mak.com ';
    v_subject: = 'list of Promotion of Mak;
    -l_blob BLOB: = EMPTY_BLOB;
    / * Prepare the LOB of attachment file. */
    DBMS_LOB. OPEN (v_src_loc, DBMS_LOB. LOB_READONLY); -Read the file
    DBMS_LOB. CREATETEMPORARY (l_blob, TRUE); -Create a temporary LOB to store the file.
    v_amount: = DBMS_LOB. GETLENGTH (v_src_loc); -Amount to be stored.
    DBMS_LOB. LOADFROMFILE (l_blob, v_src_loc, v_amount); -A temporary file in LOB loading
    l_blob_len: = DBMS_LOB.getlength (l_blob);


    Begin
    CSE opened;

    loop
    extract the CSE in custno, v_to_email_address, cname;
    When the output cst % notfound;

    l_message: = 'Dear customer ' | UTL_TCP. CRLF;
    l_message: = l_message | CNAME | UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "Thanks for choosing. Enclosed please find our current list of promotion for your review. '||
    UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "Sincere friendships. UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "To Mak' | UTL_TCP. CRLF;
    l_message: = l_message | ' www.mak.com' | UTL_TCP. CRLF;

    / * Associated with coding UTL_SMTP. */
    v_connection_handle: = UTL_SMTP. OPEN_CONNECTION (v_smtp_host, 25);
    UTL_SMTP. HELO (v_connection_handle, v_smtp_host);
    UTL_SMTP. MAIL (v_connection_handle, v_from_email_address);
    UTL_SMTP. RCPT (v_connection_handle, v_to_email_address);
    UTL_SMTP. RCPT (v_connection_handle, v_cc);

    UTL_SMTP. OPEN_DATA (v_connection_handle);
    send_header ("", v_from_email_address) ;--|| ("<>'");
    send_header ("TO", v_to_email_address) ;--|| ("<>'");
    send_header ('CC', v_cc);
    send_header ('Subject', v_subject);

    -MIME header.
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "MIME-Version: 1.0 ' |" UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: multipart/mixed; ' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "boundary =" ' | "'" Sample.SECBOUND' | '"' ||
    UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -Body of the message
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: text/plain; "|| UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    'charset = US-ASCII' | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, l_message |) UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -Attachment of e-mail
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: application/octet-stream' |
    UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Disposition: attachment; ' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "filename =" ' | "MakMail.pdf" | '"' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Transfer-Encoding: base64' | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    / * Write the BLOB into pieces * /.
    While l_pos < l_blob_len LOOP
    DBMS_LOB. READ (l_blob, l_amount, l_pos, l_buffer);
    UTL_SMTP.write_raw_data (v_connection_handle,
    UTL_ENCODE. Base64_encode (l_buffer));
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    l_buffer: = NULL;
    l_pos: = l_pos + l_amount;
    END LOOP;
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -E-mail nearby
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | '--' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    UTL_TCP. CRLF. '.' || UTL_TCP. CRLF);
    UTL_SMTP. CLOSE_DATA (v_connection_handle);
    UTL_SMTP. Quit (v_connection_handle);
    -DBMS_LOB. FREETEMPORARY (l_blob);
    -DBMS_LOB. FileClose (v_src_loc);

    End loop;


    EXCEPTION
    WHILE OTHERS THEN
    UTL_SMTP. Quit (v_connection_handle);
    DBMS_LOB. FREETEMPORARY (l_blob);
    DBMS_LOB. FILECLOSE (V_SRC_LOC);
    dbms_output.put_line (SQLERRM); -try to print the error message.
    END;
    DBMS_LOB. FREETEMPORARY (l_blob);
    DBMS_LOB. FileClose (v_src_loc);
    End;

    -end of code

    Help, please.

    Concerning

    S.Garewal

    This is what happens when you copy a code without understanding.
    Take a look at the code here

    /* Writing the BLOB in chunks */
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
    UTL_SMTP.write_raw_data(v_connection_handle,
    UTL_ENCODE.BASE64_ENCODE(l_buffer));
    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
    l_buffer := NULL;
    l_pos := l_pos + l_amount;
    END LOOP;
    

    Discover the parameters of DBMS_LOB. READ.
    For the first time it's good reading but your position and the quantity is not initialized when you loop and read again and is not read correctly.

  • HP Envy 700-216: how to use the files in my System Recovery folder on my desktop?

    I had to do a recovery of the system, due to damaged or corrupted Windows files. I backed up my files on 9 DVDs. System Recovery has restored the files in a folder on my desktop, but how do I use them?

    I'm mainly interested in restoring my data to my Quicken 2010 and possibly my 2015 AutoCad.

    You are welcome.

    The only answer I have for not being able to find the files is that they can not have been backed up.  Otherwise, they should be in the folder.  I have to be honest.  I did several laps, but never made a backup of my files.  I always keep my personal data, backups of Quicken, photos, etc. on the external USB hard drives.  If the data are very important to me, I have it on at least two disks.

  • How to use the OPA form to download files?

    Hello!

    I was tring to download the file using the form of the OPA. I have two questions

    1 Wheather my approach is correct or not
    2. I am facing the error

    Approach

    I did a check custom and used OnRequestEventHandler to the custom control the
    < input type = "text" has been replaced by
    < input type = "form.

    changes have been made to form.vm

    where

    * < form name = 'form' accept-charset = "UTF-8" method = "POST" action = "${post-uri}" target = "${frameset-top-target} ' > *.

    has been changed to

    * < name of the form = 'form' ENCTYPE = ' multipart/form-data' accept-charset = "UTF-8" method = "POST" action = "${post-uri}" target = "${frameset-top-target} ' > *.

    and writes the following Java Code

    2 error

    Reason for the change of form.vm
    OPA throws a null pointer exception


    Please help solve my problem or just give me a solution thanks


    below is the java code that I used also

    _________________________java code________________________
    package com.aosf.handlers;

    import java.io.DataInputStream;
    to import java.io.FileOutputStream;
    import java.io.IOException;

    to import javax.servlet.http.HttpServletRequest;

    import com.oracle.determinations.web.platform.eventmodel.events.OnRequestEvent;
    import com.oracle.determinations.web.platform.eventmodel.handlers.OnRequestEventHandler;
    import com.oracle.determinations.web.platform.plugins.WebDeterminationsServletPlugin;
    import com.oracle.determinations.web.platform.plugins.WebDeterminationsServletRegisterArgs;

    public class getFile implements {OnRequestEventHandler}

    ' public void handleEvent (Object arg0, arg1 OnRequestEvent) {}
    TODO self-generating method stub
    HttpServletRequest request = arg1.getHttpRequest ();

    String contentType = arg1.getHttpRequest () .getContentType ();
    System.out.println("###GetFile:"+ContentType);
    If ((contentType! = null) & & contentType.indexOf("multipart/form-data") > = 0) {}
    try {}
    In DataInputStream = new DataInputStream (request.getInputStream ());
    int formDataLength = request.getContentLength ();
    System.out.println("ContentLength:"+formDataLength);

    dataBytes Byte = new ubyte [formDataLength];
    int byteRead = 0;
    int totalBytesRead = 0;
    while(totalBytesRead < formDataLength) {}
    byteRead = in.read (dataBytes, totalBytesRead, formDataLength);
    totalBytesRead += byteRead;
    }

    String file = new String (dataBytes);
    String saveFile = file.substring(file.indexOf("filename=\"")+10);
    saveFile = saveFile.substring(0,saveFile.indexOf("\n"));
    saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1, saveFile.indexOf("\""));"

    System.out.println ("dataBytes" + dataBytes);

    lastIndex int = contentType.lastIndexOf ("=");
    String limit = contentType.substring (lastIndex + 1, contentType.length ());
    System.out.println (Boundary);
    int pos;

    POS = file.indexOf("filename=\"");
    POS = file.indexOf ("\n", pos) + 1;
    POS = file.indexOf ("\n", pos) + 1;
    POS = file.indexOf ("\n", pos) + 1;

    int boundaryLocation = file.indexOf (boundary, pos) - 4;
    startPos = int ((file.substring(0,pos)) .getBytes () .length;
    endPos = int ((file.substring(0,boundaryLocation)) .getBytes () .length;

    FileOutputStream fileOut = new FileOutputStream (saveFile);

    fileOut.write (Octetsdonnees, startPos, (endPos - startPos));
    fileOut.flush ();
    fileOut.close ();

    System.out.println ("file saved as" + saveFile);
    } catch (IOException e) {}
    Generative TODO catch block
    e.printStackTrace ();
    }

    }

    }

    public (WebDeterminationsServletPlugin) getInstance
    WebDeterminationsServletRegisterArgs arg0) {}
    TODO self-generating method stub

    return again getFile();

    }



    }

    ___Java code end___

    Unfortunately, I don't think that there is there a work around. The only thing I can think of that one possibility would be a separate download applet in the Web application, a download button that sends the attachment to this applet and lie next to the Interactive session.

    It sounds like a lot of work, and I don't know if it would work.

    The differences in the HTTP standard for forms set how are managed in fact a very difficult problem to solve.

  • Hey, how to use the files as in Firefox for Android?

    Hey all. Since the add-on of Ghostery for Firefox Beta for android (36) has not worked, I contacted Ghostery customer service, and they responded with a beta version of the Ghostery add-on to see if it would work. There is a file as... I was wondering, how can I use it in Firefox for android? To make use of this add-on? Thank you!

    Hi Ererer

    I have never installed an add-on third party directly to the Android operating system (only on the desktop). If you find the as in your folder Android downloads or via the Android file manager if it is in a different directory, try tapping on it and see if it will open in Firefox for Android and settle. Don't know if it will work because this cannot carry on Android and I do not see in our documentatino: https://support.mozilla.org/en-US/kb/find-and-install-add-ons-firefox-android

    Please let me know if the above works.

    See you soon!

    ... Roland

  • How to use the file that is saved in my new video project

    Ho I use adobe Prime Minister 12 with license elements, and when I download the video and edit (delete a scene of her) I save in my new video project in video format very strange *.prel after that when I try to download files of this new is that with the changes in the system can not download because not suport this format *.ples how do I make changes to the format of the new file that is saved in my new video project?

    Thanks in advance

    stefang

    Your work begins in a project file first items 12/12.1 with the file extension PREL. You can change the content of your Timeline and save the project file in a project file if you do not have ready to export the file to a format for playback.

    When you are ready to export your content published or not fake chronology, you go to the section of publication + part of the open project where you make your choice of export-

    a. file saved on the hard disk of the computer (with various choice of video and audio compressions and file extensions)

    b. burn to DVD, AVCHD or Blu - ray disc

    What do you do?

    a. export your Timeline to file or burn it to a disc?

    OT

    b. export selectively some of the content rather than the entire contents of the timeline timeline?

    For 'a', see section publication + share.

    For 'b '.

    In the editing area of the program, you set the gray tabs on the work area bar to cover the area to export.

    and

    When you get to publish + Share/computer/and your choice, make sure that the choice has an option for 'Hand work area Bar Only' and have a check mark next to this option.

    The screenshot was made with a version earlier than 11, but still applies to the notion of positioning of the grey tabs and share work area Bar only in the export options.

    Please review and consider. For any question or need clarification, please ask.

    Thank you.

    RTA

  • How to use the files from old computer to new iTunes

    I have been using an external hard drive to store and access my media files to iTunes via iTunes on another computer.   I just got a new computer and want to use this hard drive and files of music via iTunes on it.  What is the best way to do this and what are the steps to begin to play the files from the hard drive on the new iTunes?

    I have changed the preferences of the media folder in iTunes without result and sought media when iTunes opens, also without result.   Thank you!!!

    Media preferences are not what you think. Change said iTunes simply to memorize new media at this location. This is the file iTunes Library.itl tells iTunes where your media. If you use the same external drive (and these are the two Macs) copy the old iTunes folder form computer to the same location on the new computer and it will start with the old library.

  • How to use the file transfer Wizard

    I have and old Dell XP and I am go buy

    new Dell with Windows 7.  I'm going to

    disconnect the old computer and with some help

    Setup new computer using Dell Windows 7.

    I want to save, copy and install My Documents,

    My computer, email, and Favorites in new

    computer.  I tried the file transfer Wizard and

    the choice of external hardware is a floppy disk.

    I would like to record information about a cd, if

    possible, and when I get the new computer installation

    that's when I purchase.  I'm not

    technical savy.  Could someone please help.

    Thank you. Judy

    The Complete Guide to Windows Easy Transfer - video

    Carey Frisch

  • How to enter the character ü when you use the pinyin keyboard?

    How can I enter the character u when you use the pinyin-simplified keyboard, for example, for the opening of the syllable nu with your 3.

    The keyboard pinyin-simplified is for entering the characters han, not latin.  If you want to type the latin pinyin, you must use the extended ABC keyboard configuration.  A list of the shortcuts is to

    http://symbolcodes.TLT.PSU.edu/accents/codemacext.html

  • How can I get a "Détails" view - as the default - when you download a file, in the dialog box "enter the name of the file to save on...» » ?

    When I get an attachment to an email (using Zimbra Imail, Firefox, Windows XP Pro) and I click on it and select 'Download', I get the dialog box "enter the name of the file to save on...» "(because I already have the option"always ask me where to save files. "But the view of default file always in a 'list '. At least recently. I don't remember it always does this. In any case, I want the value default to a 'Détails' view, in ascending order, I can find then things so much faster that way. (I often use the 'Update' tab to bring up, the latest version of a file.) I know that I can go to the Menu 'view' icon and select 'Détails', but whenever I go in a sub-folder in this dialog box, I have to do this all over again and it wastes a lot of time and attention.

    I did some research on the internet but have not found a way to solve this problem.

    Try this:

    a. open my documents, press the alt key.

    b. click on Tools. Click on folder options.

    c. click on the view tab and select Reset and check records.

  • How to capture the pointer when you use print screen in Vista?

    I am writing instructions for three classes of Excel, and I want to capture the different sliders to include in the directions.  Of course, when I use print screen, they disappear, so nobody knows how to capture them?

    Hello

    I suggest you to try the cutting tool and check if it helps.

    Use the cutting tool for screenshots:

    http://Windows.Microsoft.com/en-us/Windows-Vista/use-Snipping-Tool-to-capture-screen-shots

    I hope that helps!

  • FFox 17 on WinXP. How to stop the scrolling when you use mousewheel

    FFox 17 Win XP
    When I use the mouse wheel to scroll I want vertical scrolling only. But it appears a circle icon and not scroll anywhere, or try to go on the side and skids in all directions.

    I would like to prevent the mousewheel to make a horizontal scrolling (and never see again this circle icon). Is this possible?

    p.s. I saw the page "Gecko: mouse scroll wheel - MozillaWiki" and although it is very complete, it is really written by/for developers, I want just a patch to input simple config... Please?

    See tools > Options > advanced > general: navigation: "use autoscrolling".

  • How to use the webservice when I or tcp/ip and wifi?

    I ran this code on my application for BIS, if possible tcp/ip or wifi connection...

    but it always give me null in the conDescriptor

    This is the cod

    int [] preferredTransportTypes = {TransportInfo.TRANSPORT_TCP_WIFI, TransportInfo.TRANSPORT_BIS_B};

    ConnectionFactory factory = new ConnectionFactory();

    factory.setPreferredTransportTypes (preferredTransportTypes);

    ConnectionDescriptor conDescriptor = factory.getConnection (url);

    If (conDescriptor! = null) {/ / connection managed}

    int transportUsed = conDescriptor.getTransportDescriptor () .getTransportType ();

    Conn = conDescriptor.getConnection () (HttpConnection);
    Logger.getInstance () .logInformationEvent ("transport" + transportUsed);

    } else {}
    Full book sb = ServiceBook.getSB ();
    Reviews [] ServiceRecord = sb.findRecordsByCid ("IPPP");
    for (int i = 0; i)< records.length;="" i++)="">

    If (records [i] .isValid () &! records [i] .isDisabled ()) {}
    URL += "& foo = true; deviceside = true; » ;
    }
    }
    URL = HTTPConnections.getUrl (url);
             
    Conn = getHttpConnection (url);

    }

    I've never used the api network in blackberry and AFAIK BIS is available on all blackberry devices.

    It shud work...

    What shud I do when I'm neither tcp/ip and wifi?

    Thanks to advanice

    BIS - B is a particular link, you need additional code to support, you will know if you are a member of the Alliance or use the Api to push.  Otherwise, it is not available to you.  You should try WQAP or direct TCP.

    See this video which should explain the options.  Then change your favorite types to include TCP, and WAP support.

    http://supportforums.BlackBerry.com/T5/Java-development/networking-transports-II/Ta-p/446742

  • How to fix the "stutter" when you use the YouTube widget

    I use the YouTube widget that comes with 8 Captivate, and it works almost perfectly.  The only problem is it is hard noticeable half a second to load and e-Learning "flashes".  I tried to put a screen behind the YouTube thumbnail widget, but that seems to flicker as well...

    Does anyone have experience with this problem?

    Thank you!!

    Try it on a server and see if it still does the same thing. I only worry about this if it does not work in the environment that the course will finally reach.

  • How can I change cursor using the pointer when you move to image?

    Title says it all.

    I'm trying to get the hand cursor when the user hovers over an image that is a link.

    Thank you!

    You want to have a handcursor on the image or the label... If you want on the image, and then use the properties in the image tag... You are only using useHandcurson and do not use buttonmode... .the of them go together... You should use navigatetoURL and not newBrowserWindow

Maybe you are looking for

  • I can't 'transfer' my emails more since the upgrade.

    Hello!Since the update I can is no longer "transfer" my emails. I can answer, but if I want to transfer some e-mails to friends, the button send no is not highlighted.Sorry I'm not a techie. And please answer me in a language I can understand. I am a

  • Pavilion G7-2276SA: formatting of HP Pavilion G7-2276SA

    I bought the HP Pavilion G7-2276SA in December 2012. He had Windows installed in 8 and I had upgraded to Windows 10 when there was an available free urgrade. I want to format my laptop now, and I suspect that the laptop back to factory settings l for

  • Pavilion HPE Elite 150ff: error message on windows live mail

    I have 1 email account which works fine, but when I try to enter a different e-mail account, even if it is configured correctly, I get an error message code 800cc0f, I'm not a grumpy if don't want not to mess with the registry, this office has 8 GB o

  • Real Download Center Validation don't DO NOT WORK!

    I am furious right now. I have validated my operating system from Windows Vista to about 5 - 6 times now, he said: my copy has been verified to be authentic. I tried to download Winhlp32.exe to http://www.Microsoft.com/download/en/details.aspx?ID=514

  • Problem building JDE 4.6.0 project with 4.1.0

    Hello I have a project, and at first the only target platform was 4.6.0 so I used eclipse with the JDE plugin according to development. But now, I must also build a version for older 4.1.0 devices so I loaded the project in the BB JDE 4.1.0 (as there