How to show url name

Hi
I want to show url name (www.java.com) on applet.When some one open a url on internet explorer then show only url name on applet.I need example.
Plz help me

Why do you want to do this? I'd say that the applet isn't allowed to access that information.
Kaj

Similar Messages

  • How to show employee names in descending order but 3rd row is fixed and always top on the table ?

    how to show employee names in descending order but 3rd row is fixed and always top on the table ?
    for example employee names is A,B,C, D, E
    and output is     C,E,D,B,A

    Since you are posting in the design forum, the short answer is - you don't.  Rows in a table have no inherent order that you can rely on and the "position" of rows is a visual characteristic that should be implemented by the application that displays
    this information or by the query that is used to generate the resultset.  
    So the next question is how one accomplishes this particular order within a select statement.  That is a tsql question which, for future reference, is best posted to the tsql forum.  In addition, many of the questions or issues that you will face
    have been discussed in the forums - often many, many times.  The first thing you should do when faced with an issue is to simply search the forums and leverage the the knowledge that has already been discussed.  In doing so you are quite likely to
    see suggestions or related issues that you should consider in your search for a solution.  
    Now, to answer the question - you need to formulate a order by clause that forces the rows to be sorted in the manner you desire.  Effectively you have 2 levels of sorting.  The first level divides your rows into 2 groups.  Group 1 consists
    of rows where name = E and Group 2 is everything else.  Following that you then need to sort the rows in each group by name in descending order.  Something like:  
    order by case name when E then 1 else 2 end, name desc

  • How to show company name and contact name on the incoming calls of iPhone 4

    Kindly provide me with a useful solution of how to show company name and contact name on the incoming calls of iPhone4.
    even with an application or from the setting of the iPhone itself, but without telling me a solution like writting the company name in the contact name field.
    This is a very important option, i think it is a must, not an option and apple should fix this problem fastly. because it is already available in the older models of iPhone like iPhone 3G and 3GS.
    How an important feature like this could be available in old models, but in the later models is not available?

    Currently not possible without putting the company name in the contact name's field.  AFAIK, it's never been available on any iOS version.
    You might check the App Store for an app that can do this although I'm pretty sure you won't find one.
    http://www.apple.com/feedback/iphone.html

  • How to show montha name starting from APR to MAR

    Hi,
    How to show financial year in report .
    I.e
    When i select month column in my report i need to get values starting from APR to till MAR. Can any one tell me how to show it.
    APR,
    MAY,
    JUN,
    JUL,
    AUG,
    SEP,
    OCT,
    NOV,
    DEC,
    JAN,
    FEB,
    MAR

    Hi,
    Steps to achieve,
    1. Go to analysis pull it out your month columns two times (let rename it month Id and month name)
    2.) edit formula on month Id columns put it below contional statement
    E.x:
    Case when month name = 'January' then '1'
    When month name ='February' then '2'
    When case month name='November' then '11' Else '12' end
    3.) Go to month name columns in your analysis criteria and edit formula here u just make it first 3 char of your month name columns by using left( month name, 3)
    4 ) sort month name columns by using month id columns then hide month id columns it will work as you expected
    Another solution:
    First you need to add the function monthname in the column formula. This will give you month names.
    Ex-MONTHNAME("Cal Date")
    To sort, add bin or write case statements in other column and sort it.
    Ex- case
    when MONTHNAME("Cal Date")='Jan' then 1
    when MONTHNAME("Cal Date")='Feb' then 2
    end
    Hope this help's
    Thanks,
    Satya

  • How to show full name of user in crystal report

    Hi. I am using Crystal Report 2008. I need to show full name (first name and last name) of the user logged in. Currently I am using "currentceusername" but it shows the user id that a user uses to login.
    Is there any way to show the full name of the user in crystal report?
    Thanks in advance.

    Hello,
    Not you H4... Can I suggest if someone replies to actually add something of value!!!!
    Cr does not have the ability to query your AD Server. What you would have to do is use a AD query tool or Export Option and export the user info from the log on ID into a Excel or an Access table or something CR could report off of. Then you can add a subreport to get the name from the ID and insert it into the main report.
    Check with your IT department, they should have tools to get the info. I'm not sure if there is a DB connector that would allow you to query the AD server directly but if there is one and it supports ODBC then you can use that as your subreport Data connection.
    Typically names do not change that often so rather than running the Query every time the report is generated it would be better to export the info to a text type file and simply use it for your report. IT can put a rule on to export if the Names change.
    Thank you
    Don

  • How to show surveys name and responses under curret subsite by Java object model in the CEWP

    Hi All,
    I need to show the name of surveys, their description and all responses against the survey  under my current sub-site.
    As I think there is no such out of box web-part available in SharePoint 2010.
    1. Can I get it by using java script client object model and place that in CEWP?
    2. Could I get code for this need?
    Naimish

    Sorry For late reply, I have managed to get needed out put.
    Thank you Hemendra.
    =====================
    <script ='/_layouts/SP.js' type='text/javascript'>
    ExecuteOrDelayUntilScriptLoaded(retrieveAllListProperties, "sp.js"); 
    function retrieveAllListProperties() {
        var clientContext = new SP.ClientContext.get_current();;
        var oWebsite = clientContext.get_web();
        this.collList = oWebsite.get_lists();
        clientContext.load(collList);
        clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded() {
        var listInfo = '';
        var str="";
        var columns = 3;
        var listEnumerator = collList.getEnumerator();
        str += '<table  style="width:1000px" border="1" cellspacing="1" cellpadding="5">'
        str += '<td style="font-size:14.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;color:red">' +  'Survey Title' + '</td>'
        str += '<td style="font-size:14.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;color:red">' + 'Survey Description' + '</td>'
        str += '<td style="font-size:14.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;color:red">' +  'Total Responses'+ '</td>'   
        while (listEnumerator.moveNext()) 
            var oList = listEnumerator.get_current();
            if(oList.get_baseType() == 4)
            {   str += '<tr>'
                //listInfo += 'Survey Title: '+oList.get_title() +'------'+' Description: '+oList.get_description() +'------'+ ' Total Responses: ' + oList.get_itemCount();
                str += '<td>' +  oList.get_title() + '</td>'
                str += '<td>' +  oList.get_description() + '</td>'
                str += '<td>' +  oList.get_itemCount() + '</td>'
                str += '<tr>'
                str += '</tr>'
        str += '</table>'   
        document.getElementById("demo").innerHTML = str;
    function onQueryFailed(sender, args) {
        alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
     <span id="demo" style="float:left;">Survey</span>

  • How to show day name in week view

    In SL, when I viewed a calendar in the 'week' view, the day name showed on the top. Now, only day numbers show, not day name. how can I get the day names to show in the weekly veiw?
    Thank you.
    Peter

    Peter,
    I customized my "Dates" settings a long time ago, and do not remember the default Date settings.
    Here are my settings:

  • How to show devices names?

    Hey guys, i've finally installed an Airport base station and an express for upstairs, though I noticed that the connected devices show the internal IP and not Name of device. ie: Jane's Iphone, Mike's Ipad Mini etc.. I've seen videos that show this and some articels say it only works with the old version of the aiport app which does not open under Mavricks. Any help will be appercitaed.

    AirPort Utility's display of the device names does not appear to be a function of how long the Extreme and Expresses have been installed, it seems to be more of a function of the individual device activity and how long AirPort Utility has had to detect that information. The method Apple uses to provide that information isn't publicly available.
    Edit: Having launched AirPort Utility a few moments ago, several devices changed from originally appearing as only IP addresses to human - readable names. Leave AirPort Utility open for a few minutes and determine if you observe the same results.
    another Edit: A few moments later, all the devices are appearing with readable names. I did nothing other than to leave AirPort Utility running.
    Message was edited by: John Galt

  • How to show Attribute name in Single line in ADF-JSPX pages

    Hi,
    I am having a issue , attribute name like "Name Of Catalog" in Brazilian-Portuguese Lang. is displaying in two lines instead of showing in one line, but it is correctly showing in English language.
    And also this issue reproducible on IE 7 browser only. Please let me know your comments on above issue.
    Thanks
    Chandrakant

    Hi John,
    I have seen some solutions like using horizontal layout, where child components are arranged in a horizontal line. No wrapping is provided when contents exceed the amount of browser space available. Is this OK to use?
    One more question is, how to enable Portuguese - Brazil Lang for pages in Jdev ? in other words, I want to see Label Text in Portuguese - Brazil Lang instead of English ?
    Thanks.
    Chandrakant

  • SAML-based claims authentication in SharePoint: how to show Display Name instead of email address?

    Hello,
    I followed the following step by step guide for SAML-based claims authentication with ADFS:
    http://technet.microsoft.com/en-us/library/hh305235.aspx
    The authentication works well; however, Sharepoint shows the users’ email everywhere including at the top right suite-bar. I rather to see users’ display name instead of email. Is there any way to have SharePoint shows user’s display name instead of email
    address when the primary SAML claim is email address?
    Thank you,

    You need to be able to import the identity store into the UPA. See http://sharepointobservations.wordpress.com/2013/08/06/sharepoint-2013-configure-user-profile-service-for-adfs-provider/ for
    a good step-by-step on how this is configured.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to show file names of photos in iMovie '11

    I'm making the move from iMovie 6 to iMove '11.
    I always carefully name my digital photos with a serial number and what the image is of. For example "001 Kawailoa Bay, Kauai.jog"
    In 6 I could see the filename of an imported image/photo on the timeline which easily allowed me to add the needed caption (title) to the video, reading the needed info and typing it into the caption text.
    In '11 I cannot see any properties of the image/photo that will show me the filename in the project. I have to right-click and "Reveal in Finder" to see the filename and then return to '11 to add the caption.
    Am I overlooking a way to see the filename or properties of an image in the Project?
    thanks

    I don't know of a way to do it other than the way you are doing it with Reveal In Finder.

  • How to show file names in russian (for instance) in the terminal window?

    I have a file with its name in russian. It shows fine in Finder. The terminal, however, shows it in question marks like this:
    *mark:/Users/Shared/Documents >l*
    *total 8*
    *drwxrwxr-x 5 yana parents 170 Jun 2 19:51 ForPrint/*
    *drwxrwxr-x 8 mark parents 272 Jul 6 22:30 Movies & Multiki/*
    *drwxrwxr-x 338 mark parents 11492 Aug 17 17:14 Photos & Clips/*
    *drwxrwxr-x 2 mark parents 68 May 29 21:50 SC Info/*
    *drwxrwxr-x 35 yana parents 1190 Jun 1 10:15 StarOfWeek/*
    *drwxr-xr-x 17 mark parents 578 Sep 15 15:11 ?????????????? ??????????????/*
    But when I run the directory listing through cat the contents display all right:
    *mark:/Users/Shared/Documents >l | cat*
    *total 8*
    *drwxrwxr-x 5 yana parents 170 Jun 2 19:51 ForPrint/*
    *drwxrwxr-x 8 mark parents 272 Jul 6 22:30 Movies & Multiki/*
    *drwxrwxr-x 338 mark parents 11492 Aug 17 17:14 Photos & Clips/*
    *drwxrwxr-x 2 mark parents 68 May 29 21:50 SC Info/*
    *drwxrwxr-x 35 yana parents 1190 Jun 1 10:15 StarOfWeek/*
    *drwxr-xr-x 17 mark parents 578 Sep 15 15:11 Детские песенки/*
    Any ideas?
    Thanks.

    This seems to have a lot of info.
    http://homepage.mac.com/thgewecke/mlingos9.html
    I got the same question marks when I used a translator on the net to make a file called hello world.txt and hello world.rtf.
    doug-penningtons-Computer:~/Desktop dougpennington$ ls
    Dictionary.app russian.txt ???????????? ??????.txt
    Yahoo Search.app ???????????? ??????.rtf
    Dictionary
    russian.txt
    Yahoo Search
    привет мир
    привет мир.txt

  • How to Show URL for Existing RSS Feed in Mail?

    I have several RSS feeds in Mail.  How do I reveal the URL for those RSS feeds?

    See edits above.
    Select the feed / feeds in questions and export.
    You have to open the .mbox of the feed in question>The files inside the feed.mbox>mbox can be viewed with Textedit, command-F to search may help:   X-Mail-Rss-Source-Url
    Hope that helps.

  • How to show x and y axis scale name

    hiiiii
    I am facing a problem to show scale name while making a line graph using GRAPH_MAtRIX_2D function module .
    please tell me how to show scale name using this function????????
    is there another way to solve this problem??

    You can use the "built xy graph" express VI. (Simply place the xy-graph from the express palette and it will appear).
    You can also built your graph in a shift register. For simplicity, I would use a complex array in this case.
    LabVIEW Champion . Do more with less code and in less time .

  • SEARCH RESULTS NOT SHOWING THE NAME OF DOCUMENT

    When I search for a document on the top level, the results in my case are relevant but they do not display the document name, meaning I have to go into the document to check if it is the one I'm looking for. For some reason the name of the file is displayed
    in results as the first line of the document. I use a document template for letters meaning that the search results gives as list of documents that all have the same name displayed. This renders the search function almost useless as all the results are showing
    the same name. Is there a way to change the results page to display the name of the document??

    Hi,
    Based on your description, my understanding is that you want to show search results by document name instead of the Title.
    Here are two links about how to show document name in search results, you can use as a reference:
    http://chris.gg/2011/06/display-filename-instead-of-document-title-in-sharepoint-search/
    http://social.technet.microsoft.com/Forums/en-US/966db1b2-3288-4a31-8c98-19bf0dfc1316/show-search-results-by-document-name-not-by-title?forum=sharepointgeneralprevious
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for