To know in javascript how many windows of explorer are open

I am having trouble with my web application
I would like to know if in javascript I can now how many windows
of my internet explorer I have opened with my webapp
Does anyone know how I can solve it?

Hi Futchi,
Thank you for your replay.
I think that I can use your solution...
My problem is that I need to know how many windows
of the same explorer are open. I mean how many
time I have opened a new windows with CTRL+N.
I hope that there is a way in javascript.

Similar Messages

  • I need to know .. How many arabic podcasts on iTunes?

    I need to know .. How many arabic podcasts on iTunes?

    Problem with implementing that logic in a calculated column is that the value only updates when the row is modified. What you might want to do is have the logic to update the value based on your calculation as part of a timer job, that runs and updates the
    value on a schedule asynchronously in the list for existing items. Sorry the solution isn't OOTB but a better way to do this.
    Thanks, Ransher Singh, MCP, MCTS | Click Vote As Helpful if you think that post is helpful in responding your question click Mark As Answer, if you think that this is your answer for your question.

  • How many Iphone 5 can you open under one account ??

    Just a simple question , how many iphone 5 can you open under one account ? is it 5 or more ??? anyone know . I've been a verizon customer for a little bit over 5 months ..... any input ??? thank you

    I'd call Customer Service and ask, because the Share Everything plan is supposed to allow 10 lines:
    http://support.verizonwireless.com/clc/faqs/Calling%20Plans/share_everything.html

  • How many types of ports are there which we use for data transfe in ale/idoc

    friends let me know how many types of ports  are there which we use for transfering
    data in ale/idocs?

    Hello,
    you can use file port,trnasactional RFC port.FI you are using IDOC-XML conversion combination,then you can XML port also.
    Thanks

  • How many notes(annotations) there are? Is detection possible?

    I can create move notes from code but first I must know how many text Notes there are in a document.
    Is it possible using executeActionGet(ref) ?

    I must know how many text Notes there are in a document.
    Is it possible using executeActionGet(ref) ?
    Not directly, however it seems that a work-around is possible.
    The following code is adapted from a snippet written by the brilliant Paul Riggott; it works for me in CS4:
    ps-scripts.com • View topic - Annotation functions.
    function hideAnnotation (index)    // Dummy action, only used to test the existence of an annotation by index...
        var exists = true;
        var desc = new ActionDescriptor ();
        var ref = new ActionReference ();
        ref.putIndex (stringIDToTypeID ('annotation'), index);
        desc.putReference (stringIDToTypeID ('target'), ref);
        try
            executeAction (stringIDToTypeID ('hide'), desc, DialogModes.NO);
        catch (e)
            exists = false;
        return (exists);
    function getAnnotationCount ()
        var index = 0;
        while (hideAnnotation (index))
            index++;
        return index;
    alert (getAnnotationCount ());
    HTH,
    --Mikaeru

  • Where do I see how many photos (and movies) are in my Revel library?

    I see no place that states how many photos or movies are in Revel.

    Hi Pattie,
    Thanks for the reply...but here's the status:
    A.
    I'm in the Revel program downloaded on my desktop...not on its web site...and I made an album but can't find any place where it shows the number of photos in that album.
    As I view Mel's Library page and go to: View/Added By there is a total in the upper left corner that shows the total photos Added by ME. 
    But when viewing photos in my library: View/ All Photos by Date in either Grid or Track there is no total anywhere on the page. Each track has it's total and that's it.
    I don't understand how Revel ID's a Duplicate. 
    A window, Skipped Photos, pops up and states, "X photos were duplicates" indicating that they were not uploaded - and that  is supported by the math (in 3 out of 5 uploads): Selected photos minus Videos and Dupes = # of photos uploaded.
    However, on the last upload of 2000 Selected photos, the window said there were 2 duplicates. I counted 19 identical photos! Also without Revel identifying what the dupes actually were (by its reckoning) I have no way of determining what was not uploaded. All VERY confusing.
    When uploading using the download program on my laptop Revel won't upload videos.
    B.
    I went to the website and yes, when I click on the album it shows the photo count at the bottom. However, in order to get to the bottom of 10,000+ photos in the Library is a major and lengthy process as clicking on the side bar only takes me down a few photos with each click...and not to the end! There's no way to easily get to the bottom!  Scrolling the photos is equally slow and useless when all I'm trying to see is the total count! click on Sort oldest 1st and the newest go to the top! and the reverse is true of the other!
    mel

  • How many types of rfcs are there

    Hello,
    Can any body explain about how many type of rfcs are there. give the difference also.
    Thanks.

    Hi,
    Check this info.
    These are the types of RFC
    Asynchronous RFC (aRFC)
    Synchronous RFC (sRFC)
    Transactional RFC (tRFC)
    Queued RFC (qRFC)
    Parallel RFC (pRFC)
    Asynchronous RFC :
    This is used when you need to increase the performance of ABAP program by having system call more than one function module in parallel than forcing the program to wait for results .
    Transactional RFC
    This let you group one or more function module call together o tRFC LUW and ensure that fucnction module within LUW is called once . In contrast to aRFC and sRFC the tRFC belonging to tRFC LUW are executed in order .
    tRFC is always used if a function is executed as a Logical Unit of Work (LUW). Within a LUW, all calls are
    1.Executed in the order in which they are called
    2.Executed in the same program context in the target system
    3.Run as a single transaction: they are either committed or rolled back as a unit.
    Implementation of tRFC is recommended if you want to guarantee that the transactional order of the calls is preserved
    Asynchronous remote function calls (aRFCs) are similar to transactional RFCs, in that the user does not have to wait for their completion before continuing the calling dialog. There are three characteristics, however, that distinguish asynchronous RFCs from transactional RFCs:
    • When the caller starts an asynchronous RFC, the called server must be available to accept the request.
    The parameters of asynchronous RFCs are not logged to the database, but sent directly to the server.
    • Asynchronous RFCs allow the user to carry on an interactive dialog with the remote system.
    • The calling program can receive results from the asynchronous RFC.
    You can use asynchronous remote function calls whenever you need to establish communication with a remote system, but do not want to wait for the function’s result before continuing processing. Asynchronous RFCs can also be sent to the same system. In this case, the system opens a new session (or window). You can then switch back and for between the calling dialog and the called session
    RECEIVE RESULTS FROM FUNCTION Remotefunction is used within a FORM routine to receive the results of an asynchronous remote function call. The following receiving parameters are available:
    IMPORTING
    TABLES
    EXCEPTIONS
    The addition KEEPING TASK prevents an asynchronous connection from being closed after receiving the results of the processing. The relevant remote context (roll area) is kept for re-use until the caller terminates the connection.
    Transactional RFC (tRFC) and Queued RFC (qRFC).
    tRFC is used mainly to transfer ALE Intermediate Documents (IDocs).
    Transactional RFC:
    If an error occurs during a synchronous remote function call, the system cannot tell at what point the error occurred (most crucially, whether the function module was actually processed in R/3 before the operation failed). Restarting a failed call is therefore a dangerous thing to do, since you risk duplicating a completed function call.
    To alleviate this problem, you can use transactional RFC, which guarantees that each function call you issue will only be executed once, even if you submit it repeatedly to the R/3 System. The system implements this safeguard by assigning a unique transaction ID (TID) to each transaction that you submit. When you attempt to process the transaction, the system checks whether that TID has already been processed. If it has, the transaction is ignored.
    Disadvantages of tRFC
    - tRFC processes all LUWs independent of one another. Due to the amount of activated tRFC processes, this procedure can reduce performance significantly in both the send and the target systems.
    - In addition, the sequence of LUWs defined in the application cannot be kept. Therefore, there is no guarantee that the transactions are executed in the sequence dictated by the application. The only guarantee is that all LUWs are transferred sooner or later.
    Queued RFC:
    When you use transactional RFC, you cannot guarantee the order in which the function calls will be processed in the system (it is quite possible that one call might overtake another). For cases where you need to specify a particular processing order, you can use queued RFC, which is an extension of transactional RFC. In qRFC, you place each function call in a logical queue. A function call cannot be executed until all of its predecessors in the queue have been processed. Queued RFC calls are processed asynchronously
    Therefore, Queued RFC is better than Transactional RFC.
    Remote Function Call:
    RFC is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between systems.
    RFCs enable you to call and execute predefined functions in a remote system - or even in the same system.
    RFCs manage the communication process, parameter transfer and error handling.
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems. The RFC calls a function to be executed in a remote system.
    Synchronous RFC:
    The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, which means that the systems involved must both be available at the time the call is made.
    Transactional RFC (tRFC) and Queued RFC (qRFC). tRFC is used mainly to transfer ALE Intermediate Documents (IDocs).
    Transactional RFC:
    If an error occurs during a synchronous remote function call, the system cannot tell at what point the error occurred (most crucially, whether the function module was actually processed in R/3 before the operation failed). Restarting a failed call is therefore a dangerous thing to do, since you risk duplicating a completed function call.
    To alleviate this problem, you can use transactional RFC, which guarantees that each function call you issue will only be executed once, even if you submit it repeatedly to the R/3 System. The system implements this safeguard by assigning a unique transaction ID (TID) to each transaction that you submit. When you attempt to process the transaction, the system checks whether that TID has already been processed. If it has, the transaction is ignored.
    Queued RFC:
    When you use transactional RFC, you cannot guarantee the order in which the function calls will be processed in the system (it is quite possible that one call might overtake another). For cases where you need to specify a particular processing order, you can use queued RFC, which is an extension of transactional RFC. In qRFC, you place each function call in a logical queue. A function call cannot be executed until all of its predecessors in the queue have been processed. Queued RFC calls are processed asynchronously
    For more information on RFC, please go through the link.
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5b6a85b11d6b28500508b5d5211/content.htm
    Have a look at this link.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    Rewords some points.
    Rgds,
    P.Nag

  • How many types of messages are there

    Hi,
    After using CALL TRANSACTION tcode USING gi_bdcdata
                     MODE   gv_ctumode
                     UPDATE gv_cupdate
                     MESSAGES INTO gi_messtab.
    I am looping gi_messtab for extracting messages.
    I know msgtyp = 'E'    -
    > means error message.
    I want to how many types of messages are there, tell me with the full forms.
    s -
    > means?
    LOOP AT gi_messtab.
    IF gi_messtab-msgtyp = 'E'.
    endif.
    endloop.

    HI Mohan
    A --> Termination Message
    The message appears in a dialog box, and the program terminates. When the user has confirmed the message, control returns to the next-highest area menu.
    E -->  Error Message
    Depending on the program context, an error dialog appears or the program terminates.
    I --> Information
    The message appears in a dialog box. Once the user has confirmed the message, the program continues immediately after the MESSAGE statement.
    S -->  Status Message and Sucess message
    The program continues normally after the MESSAGE statement, and the message is displayed in the status bar of the next screen.
    W --> Warning
    Depending on the program context, an error dialog appears or the program terminates.
    X --> Exit
    No message is displayed, and the program terminates with a short dump. Program terminations with a short dump normally only occur when a runtime error occurs. Message type X allows you to force a program termination. The short dump contains the message ID.
    Regards
    Sudheer

  • How many types of requests are there

    hai,
    how many types of requests are there plz explain it plzzzzzzzzzzz
    thanks and regards,
    pg babu

    Hi ,
    We are not at all clear about your query here. Please let us know what kind of requests you are telling about. Is it regarding data base requests?
    Regards,
    Abhisek

  • ?? About how many downloads the apps are getting

    If anyone can help, it would be appreciated. Either first hand knowledge or information you have heard or read would be fine.
    I am doing market research and wonder how many application/game downloads are really occuring in the App Store/iTunes for iPhones/iPod Touch devices. I know how many total downloads they have (200 million), but any only concerned with Paid Apps/Games. So if anyone can answer these questions or share some light, thanks
    1) How many of the 200 million downloads are from paid apps
    2) Does anyone know how many paid downloads it takes to take the #1 spot daily, #10 spot, #25 spot, and #50 spot
    3) How many apps/games have you paid for, and how many free ones have you downloaded.
    Thanks again.

    jdawson1960
    Your posting is clearly outside the stated purpose of these forums and your user account is being blocked on that account.
    This is a Java forum, not a market research site.
    db

  • How many screen-on time are you getting while playing?

    How many screen-on time are you getting while playing games on the iPad Mini Retina? I'm planning to buy one and use it mainly for games. I currently own a Samsung Tab S 8.4 which can only last 4 hours screen-on time while playing Clash of Clans.

    Unfortunately no one can give you an exact length of time. The stated battery life on an iPad is in the 10 hour area. But there are so many variables that it's impossible to give you any sort of exact length.
    I would GUESS, if you spent the whole day gaming on a fresh charge, you may get 5-6 hours but that is a total blind guess. some games demand more power than others so there is no set way to know.

  • How many installs of Premiere are allowed?

    Does any body up to how many different computers you are allowed to install a licensed copy of Premiere CS3?
    I have a desktop and a laptop that I'd like to install the software on. Will it work?

    There are provisions in the license agreement for you to have your program on two computers at any one time, such as a desktop and a laptop at the same time. They will activate just fine. The idea is, though, that you should only have one version open at any one time.
    As one wag on this forum pointed out there isn't any way Adobe can know if you're using the same application on different computers at the same time (at least not that we know about), but it comes down to your ethical position as to whether you wish to be bound by the legal agreement you made on installation.
    In your situation though, have at it!

  • How many sub-interfaces we are able to create with ISR 4321 ?

    Hi,
    I want to buy an ISR 4321 router. I would like to know how many sub-interfaces we are able to create with this router (802.1Q) ?
    http://www.cisco.com/c/dam/en/us/products/collateral/routers/4000-series-integrated-services-routers-isr/at-a-glance-c45-732425.pdf
    Thanks.
    Regards,
    Nurul Kabir KHAN

    Hello Nurul,
    The maximum number of interfaces (physical, subinterface, or virtual) a router can handle depends on the maximum number of SWIDBs that the router can use. This limit used to be set to 300 for all platforms, but with the emergence of features such as frame-relay subinterfaces, multilink Point-to-Point Protocol (PPP), and virtual private dial-up network (VPDN) that uses virtual interfaces, this value has proven to be insufficient on some platforms
    Maximum Number of interfaces
    Every interface uses an IDB. Therefore, the IDB limit indicates the maximum number of interfaces a router can handle.
    The IDB limit is, therefore, the answer to the common question "How many (sub)interfaces can be configured on this platform?"
    For further details, you can read this document
    Please don't forget to rate and mark as correct the helpful post!
    David castro 
    Regards,

  • How many Ship-To-Parties are allowed for a single Sold-To-Party ?

    Hello Gurus,
    1) Could anyone tell how many Ship-To-Parties are allowed to be attached to a single Sold-To-Party ?
    2) Is there any system restriction from the side of SAP on how many could be attached ?
    3) If yes, then, please let me know what is the upper limit.
    Thanks,
    SR

    Hi,
    You can attach as many as you can.There is no limit for this.
    But we can control the number of ship-to-party's to 1.Not only "SH" but also any partner function can be controlled to 1 only.
    If you want to maintain more than one an error message will be displayed.
    The path for this is:
    SPRO>Sales and Distribution>Basic functions>Partner determination>Set up Partner determination-->Set Up Partner Determination for Customer Master.
    Double click on this.
    Check the Partner dertermination procedure assigned to your acount group.Select that one and click on Partner functions.Search for SH,there is a check box called as "Unique".Check this one.
    Save.
    In this case it will allow only once.
    Coming to your question we can maintain unlimited number of SH's.
    From SAP there is a restriction for one only but not more than that.
    The upper limit is unlimited.
    Regards,
    Krishna.

  • How many iPad charging cables are there?

    How many iPad charging cables are there?  Anyone know 'officially'?

    I suggest you ask the question you are really trying to discover the answer to; for example:
    "I need a new charging cable for my iPad 2.  I see there are three different charging cables at the Apple Store.  One has a lightning connector.  One has a 30 pin connector.  The third has an L-shaped connector.  Which one (or ones) of these would work for my iPad 2?"

Maybe you are looking for

  • Report on Infoset is not working

    Hi All I was having couple of queries on one infoset which is based on 2 ODS. Later i have removed one ODS and inserted the new ODS. now when i am opening the query it is showing error for those fields which were present in old ODS which i have remov

  • Repeat group header on every page before group footer as group spans across

    I have a group which spans across multiple pages.In group there are two subreports in Group footer.I have set all the required parameters to repeat group header on every page in group expert,but not getting desired results,please help....

  • Find my iPhone (PLEASE!)

    I just lost my iPhone 3GS. I'm sure I turned on finding... I lost it in a location where there is no service (US navy ship). Once OFF the ship or in certain parts it will connect. Right now, when I use .me.com to find it it says it cannot. My questio

  • How to write CMP on Database VIEWs

    Hi In my application i have database views. i want to write a CMP bean for each VIEW. is it possible To write a CMP Bean on VIEWs. if possible Pl let me know and send some code too. thank u

  • What Features are provided by Software Packs 8.6.1, 2 and 3

    We have a UC560 customer with Software Pack 8.2 installed and they are wondering what, if any advantages there are if they upgrade to Software Pack 8.6.2. I thought there was a good feature Matrix published at one time, but I have been unable to find