URGENT!!!!!!!how can i open a url in forms (plataform client/server)

I have a item that is a url and I want that when the user click
in this item open the coresponding ulr.
Can you help me?
Thank you

if you use win 32 and you have no information of which browser
is a default one in your computer and where it is located.
1.Attach D2KWUTIL.PLL library to your form <br>
2.Try to use win_api_shell.startfile(document =>
'c:\start_page.html'); <br>
3.in start_page.html you automatic connect to the whatever site
you want <br>
regards,

Similar Messages

  • How can I open all ports on a Window 2003 Server

    How can I open all ports on my windows 2003 server for a specific range of IP addresses?

    Hi,
    Just want to confirm the current situations.
    Please feel free to let us know if you need further assistance.
    Regards.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • URGENT HOW CAN I OPEN RPT IN EXCEL

    HOW CAN I OPEN MY REPORT IN RPT FORMAT IN MICROSOF EXCEL OR RATHER SAVE THE FILE AS XLS EXTENSION

    if you use win 32 and you have no information of which browser
    is a default one in your computer and where it is located.
    1.Attach D2KWUTIL.PLL library to your form <br>
    2.Try to use win_api_shell.startfile(document =>
    'c:\start_page.html'); <br>
    3.in start_page.html you automatic connect to the whatever site
    you want <br>
    regards,

  • How can I open a URL from a Custom Button in a second help window?

    I have a custom button, which currently opens a URL in a web
    browser, using a redirect page. How can I change this so that it
    opens in a second help window instead? If I understand some of the
    posts I've read, it is possible by linking the button to a related
    topics function but I've no idea how this is done.
    As usual, your help is most appreciated. Thanks a lot.

    Hi, ecoulyn,
    You need to make a topic file like the one below the target
    of the Jump button.
    The onLoad function on the Body start-tag causes the Related
    Topics command to fire when the topic file is loaded in the topic
    pane. When specifying the file name of the topic to display in the
    secondary window, you must always prepend it with the name of your
    .chm file, followed by "::/". Otherwise, an error message appears
    when the Jump button is clicked.
    Pete

  • How can others open more than one form? [Was: Sandra]

    How do you use Forms Central? I am the only account that can open more than one form. I have added all the people in contacts. When they login, they have the upgrade option for more than one form. We have an order number and end user id. Thanks for the help.

    Hi,
    It sounds like you have a paid account and the other users have free accounts.
    You will have to share the form with the other users, please see this link for more detailed on how to share a form with others:
    http://forums.adobe.com/docs/DOC-3351
    All the free account users should be able to open all the forms that you have shared with them. Free users can only create one form on their own.
    Hope this helps,
    Thanks
    Lucia

  • How can I open Internet Explorer from Forms?

    I could manage to open IE with HOST giving it the correct path from IE in my computer.
    But how can I find out what directory IE is? Should I use OLE2? If yes, then how do I use it?
    Thanks,
    Ariadne

    I thinck that the path doesn't matter...
    Using Host('start http://www.oracle.com') will work no matter where IE is located

  • How can I open a url in oracle form 9i without toolbar and menubar

    I want to create a button in my form. When I click on the button it should open url without toolbar and menubar.
    I tried with web.show_document. but I am not able to remove the toolbar and menubar. plus not able to specify width and height. Any way to achieve this.
    Thanks,
    Mansoor

    Dear Frank,
    I have done as follows
    created a form with a button, and in my button pressed event I wrote
    WEB.SHOW_DOCUMENT('javascript:openMyURL("http://192.168.1.34/HELP/ADMF0005.html");', '_Self');
    and in my formsweb.cfg I have the following
    HTMLbeforeForm=<script> function OpenMyURL(page){window.open(page,"myURL","width=700,width=400,top=0,left=0,toolbar=no,menubar=no"); } </script>
    When I click on the button it is coming with toolbar , etc as well as no page found is coming with the following in the address bar.
    javascript:openMyURL("http://192.168.1.34/HELP/ADMF0005.html");
    My html view source comes as below for the form
    <HEAD><TITLE>Oracle9iAS Forms Services</TITLE></HEAD>
    <BODY >
    <script> function OpenMyURL(page){window.open(page,"myURL","width=700,width=400,top=0,left=0,toolbar=no,menubar=no"); } </script>
    <!-- Forms applet definition (start) -->
    <OBJECT classid="clsid:CAFECAFE-0013-0001-0009-ABCDEFABCDEF"
    codebase="/forms90/jinitiator/jinit.exe#Version=1,3,1,9"
    WIDTH="1000"
    HEIGHT="660"
    HSPACE="0"
    VSPACE="0">
    <PARAM NAME="TYPE" VALUE="application/x-jinit-applet;version=1.3.1.9">
    <PARAM NAME="CODEBASE" VALUE="/forms90/java">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    I am using Forms [32 Bit] Version 9.0.2.7.0

  • How can I open a URL in an applet?

    Hi:
    All I want to do is webcrawl through the pages on a website, and extract some indexing information. Now, I have a java class that does this just fine -- for http sites. Except my site is https, and asks for username and password, which my java class cannot handle.
    So I figured one easy solution would be to simply convert my java application into an applet, and then just pass through the username/password authentication, then run the applet. The problem is, after I've converted my application into an applet, i get the following exception (I was using www.yahoo.com just to test the applet before running it on my https site):
    java.security.AccessControlException: access denied (java.net.SocketPermission www.yahoo.com resolve)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at sun.plugin.net.protocol.http.HttpURLConnection.checkPermission(Unknown Source)
    at sun.plugin.net.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at Crawler.robotSafe(OgiCrawler.java:77)
    at Crawler.start(OgiCrawler.java:224)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    What am I leaving out? I've pored through much sample code, including the code on the forums, but my code seems the same (though the code on the forums is usually for applications, not applets.) I know there are other webcrawling java applets... how do they successfully connect to a URL?
    Here is my connection code:
    HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
    System.out.println("Downloading " + url.toString());
    urlConnection.setAllowUserInteraction(false);
    InputStream urlStream = url.openStream();
    I'm very new to Java programming, so if I need to include some applet-specific package, please let me know! Thank you very much for your help!!
    Ogi

    ... So I figured one easy solution would be to simply
    convert my java application into an applet...i dont know the solution for ur problem, but you shouldnt convert ur app into an applet, cuz applet has more restrictions...

  • HT2506 How can I open uscis.gov/files/form/n-400.pdf with Preview?

    Problem (A)
    When I try to open some PDFs, such as uscis.gov/files/form/n-400.pdf with OS X Preview, I get the error message:
    "Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries."
    Apple presents Preview as being a better substitute for Adobe Reader, but in this case it does not work at all. (I think this may relate to PDFs with entry fields in them.)
    Problem (B)
    If I set the documents having this problem to be opened with Adobe Reader instead of Preview, the next time I save them from Adobe Reader, they are reset to open with Preview again.
    I thus have to always do Open with… for them, or else set all my PDF documents to be opened with Adobe Reader.
    Can anyone offer any workarounds for problem (A) or (B)?
    Does anyone know Apple's position on problem (A)? Will they eventually fix Preview so that it opens PDF documents such as the one above, or will Preview only ever work on a sub-set of PDF documents?
    If Adobe is refusing to provide Apple the information needed to open certain types of PDF documents, does anyone know Adobe's position on this?
    Thank you

    What version O/S do you have?  10.7.4 is latest.
    I have something for you to try.  I'm reading that Lion supports two different types of file-type association.  That is, in addition to a global ".PDF opens with Preview" you can also have a file-by-file setting to over-ride the global one and have it open is something else - like Adobe Reader.
    So, how about you test this out to see if its true?
    First chainge your global .PDF back to Preview:
    http://osxdaily.com/2009/10/25/change-file-associations-in-mac-os-x/
    Or reset everything  back to defaults:
    http://forums.macrumors.com/showthread.php?t=1282118
    Then when you come accross something that won't open in Preview, use this to set just that file to open in Adobe Reader:
    http://osxdaily.com/2011/08/15/easily-set-file-association-in-mac-os-x-lion-usin g-always-open-with-app/
    There is also a utility for controlling the file-type settings - but - I don't know if it supports this new feature:
    http://www.macupdate.com/app/mac/14618/rcdefaultapp
    (if this a new feature and hasn't been around all along and I just didn't know about it)

  • How can I open and close private browsing using an IPAD mini in IOS 7?

    How can I open and close private browsing using an iPad mini in ios7?

    Tap the '+' to the right of the URL field to open a new tab, and at the bottom left of the screen there should be a 'Private' button - tap that and you can then go to the site that you want to go to

  • How can we provide 2 URLs in the HR personalization form, so that users can

    We are not able to open the PDF report from the external node which is placed under the OA_HTML. Nvaigation is Employee Self Service for US -> Update or Add Direct Deposit Account
    Internal urll ----"http://tech.com:8000/OA_HTML/TTEC_Benefits_Docs/Branded/DebitCrdholderBrochureSignature.pdf"
    However, the external users from internet need to access the pdf document and this fails for them because they have no access to above URL from public internet. They need to get to above pdf document for e.g. as:
    "https://publicerptech.com:443/OA_HTML/TTEC_Benefits_Docs/Branded/DebitCrdholderBrochureSignature.pdf"
    How can we provide 2 URLs in the HR personalization form, so that users can access the pdf document?

    Hello David,
    Sorry for not getting back to you sooner. You can provide feedback on Transport agents by using this site:
    http://officespdev.uservoice.com/.
    With regards,
    Michael | Microsoft Exchange Developer Content
    The
    Exchange Development Forum Guide has useful information for using the Exchange Development Forum.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How can I open the EP login page in the same pop-up window?

    is it possible for me to using / only one window(Browser) pop-up to EP Page(Login or iView...).
    In the firs general html page I create a EP login page link action[eg. "window.open('url', 'target_name')"],
    but always launching new pop-up window(Browser).
    How can I open the EP login page in the only one window(pop-up)?
    Could anybody help me by giving suggestion and codding?
    Thanks,
    jin.

    Hi,
    if you want to redirect the root of portal system (http://portal/) to the login page, edit the
    file and change the body tag as follow:
    \usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.engine.docs.examples\servlet_jsp\_default\root\index.html
    <body onload="location.replace('irj/portal' + document.location.search)"></body>

  • Hi first time mac user here, how can i open up more than one email account (hotmail) without merging them? I have merged 2 already Th.

    Hi, how can i open up more email accounts (hotmail)? I have accidentally merged 2 - not sure how but urgently need to access others and cannot run this risk!  thx

    Hotmail is not part of the Mac OS - I'd check their website (Hotmail or Microsoft) to see how to do it.

  • How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "

    JDeveloper 11g, Windows 7(64 bit), ADF Faces
    package view.backing;
    import java.beans.IntrospectionException;
    import java.util.ArrayList;
    import java.util.List;
    import org.apache.myfaces.trinidad.model.ChildPropertyTreeModel;
    import org.apache.myfaces.trinidad.model.TreeModel;
    public class TreeModelAdapter {
    private Object _instance = null;
    private transient TreeModel _model = null;
    public TreeModelAdapter() {
    ArrayList<TreeItem> rootTreeItems = new ArrayList<TreeItem>();
    TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com");
    TreeItem treeItem2 = new TreeItem("Dog", "http://www.someurl2.com");
    TreeItem treeItem3 = new TreeItem("Cat", "http://www.someurl3.com");
    TreeItem treeItem2_1 = new TreeItem("Blue Heeler", "http://www.someurl4.com");
    TreeItem treeItem2_1_1 = new TreeItem("Rover", "http://www.someurl5.com");
    TreeItem treeItem2_1_2 = new TreeItem("Ruffus", "http://www.someurl6.com");
    rootTreeItems.add(treeItem1);
    rootTreeItems.add(treeItem2);
    rootTreeItems.add(treeItem3);
    ArrayList<TreeItem> treeItem2Children = new ArrayList<TreeItem>();
    ArrayList<TreeItem> treeItem2_1Children = new ArrayList<TreeItem>();
    treeItem2Children.add(treeItem2_1);
    treeItem2.setChildren(treeItem2Children);
    treeItem2_1Children.add(treeItem2_1_1);
    treeItem2_1Children.add(treeItem2_1_2);
    treeItem2_1.setChildren(treeItem2_1Children);
    this.setListInstance(rootTreeItems);
    public TreeModel getModel() throws IntrospectionException {
    if (_model == null) {
    model = new ChildPropertyTreeModel(instance, "children");
    return _model;
    public void setListInstance(List instance) {
    _instance = instance;
    _model = null;
    How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com"); on a new page?

    In your af:tree nodeStamp facet you have access to the node (TreeItem in your case). If your TreeItem has a getter method for the url (you did not provide the TreeItem code) you can put an af:goLink in the nodeStamp and set the destination attribute to #{node.url} and set the TargetFrame of the golink to '_blank':
    <af:tree ...>
      <f:facet name="nodeStamp">
        <af:goLink text="goLink 1" id="gl3" destination="#{node.url}" targetFrame="_blank"/>Timo

  • How can I open the WD iView within the same pop-up window?

    I have created a Web Dynpro(for ABAP) iView direct link that a hyperlink action.
    (From different Web page)
    And I used window.open(appointment to target) of javascript for opening only one window.
    However When I click the link it opens in a new window every time.
    (Also iview of different type is same)
    How can I open the WD iView within the same pop-up window?
    Could anybody help me by giving suggestion and codding?
    Regards
    Jin

    Hi JinKyu,
    Have you tried <b>window.location()</b> in place of window.open() something like
    <b>window.location = 'URL'</b>
    Rgds,
    Vivek

Maybe you are looking for

  • How do I copy only the emails from Address Book?

    I want to easily make and update a big email list. With out doing them individually, what's the best way to copy all of ONLY the emails from my contacts at once and put them in a text doc?

  • Is it normal?(NetworkManager applet's strange output & 3 IPv6 address)

    1) label ppp0 appears in NetworkManager applet every time when I up vpn-connection 2) Also something strange with enp5s0. Output of "ip addr": 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default     link/loopback 00:00:0

  • Integrating Discoverer in a Publiehr report

    Héllo, I try to make a report based on a Discoverer query, but I've got problems creating the data model. I followed the instructions of this site : http://webcache.googleusercontent.com/search?q=cache:65B0_hSn0R8J:www.rittmanmead.com/2007/09/integra

  • Jyhton issue with ODI upgrade

    Hi, I am trying to execute the jython script but when i execute this part d = glob.glob(src + os.sep + 'd33*cts.txt') i am getting the following error :Traceback (innermost last): File "<console>", line 1, in ? AttributeError: class 'org.python.modul

  • Traffic Widget

    Ever since the software update a few months ago the traffic widget has never been the same. I use this widget extensively since I find myself on the highway many days.  They took away the ability to change zip codes right on the same screen (like on