How reactivate closed webbroser

google translation: Portuguese to English
I'm using the event newwindow2 it works perfectly.
The problem takes place in windows that close with button to submit. the webroser closes and does not work again in the next event newwindow2.
The attached VI simulates the closing of the webbrowser
Is there any solution to reactivate the webbrowser?
Attachments:
Error in webbrowser.vi ‏14 KB

not want to hide the ActiveX container, this is the process fechameto the page by pressing a button submit. However, I need to activate it again for the next event newwindow2.
The VI attached only simulates the closing of the ActiveX container, as the submit button the web page does

Similar Messages

  • HOW TO CLOSED PRODCUTION ORDER

    HI
    ALL SAP GUY'S
    PL TELL ME HOW TO CLOSED PRODUCTION ORDER AFTER CONFORMATION
    REGARDS

    Hello,
    You should follow following steps for Order Settlement after confirmation :
    1. After Final Confirmation of Order ( Status : CNF) make GR for for order using Tcode : MIGO / MB31 so Production Order Status will be DLV.
    2. Then complete the order technically by using Tcode : CO02--> Functions ( Menu)---> Restrict Processing -
    > Technically Complete. You can carry out TECO for multiple Orders in Tcode : COHV (Mass Processing).
    3.Now Calculate Overheads using Tcode : KGI2 - Individual Processing
    CO43 - Collective Processing
    4.Calculate WIP using Tcode : KKAX - Individual Processing
    KKAO - Collective Processing
    5.Calculate Variance by using Tcode : KKS2 - Individual Processing
    KKS1 - Collective Processing
    6.Finally do the settlement of Order in Tcode : KO88 - Individual Processing
    CO88 - Collective Processing
    Hope this helps.
    Revert if any doubt and reward points if useful,.
    Regards,
    R.Brahmankar

  • How is closed & sleeping MBP supposed to react to pressing Play on Remote?

    Hi. I have this question: How is closed and sleeping MacBook Pro supposed to react to pressing Play (or other buttons) on the Remote?
    I think that once it started playing music from iTunes even with closed lid, and I was thinking how clever it was. But now it only plays for few seconds and then goes back to sleep. I don't understand this.. it should either keep playing or do nothing.. why this weird behaviour?
    Thanks in advance for replies.
    Regards
    Milan

    The machine is intended to sleep whenever its display is closed. I agree with you that logically, it either shouldn't wake up at all when it's closed and called upon by the remote, or it should wake up and stay awake. What it does (and mine does exactly the same thing, so I don't think yours is misbehaving) doesn't make very good sense, and suggests that there's a minor fault in the design — whether hardware or software, I'm not sure.
    But for the machine's safety, it's much better for it to go right back to sleep than to stay awake and keep running. If it did the latter, you might be tempted to pick it up and slip it into your carrying case or backpack while it was still running. That would almost certainly cause it to overheat in a very short time, because it would be unable to cool itself in there. So the way it behaves, while not strictly logical, at least errs in favor of self-preservation.

  • How identify closed accounting period to restrict creation of billing document in sap

    Hi Experts,
    I have a requirement to identify the  closed  periods in sap based on this we need to restrict the creation of billing document .
    Actually we are working for  Brazil  client, there we have notafiscal   which created along with billing document.we are maintaining  periods monthly basis.
    When the periods are closed  accounting document not created and billing document is created  this is working fine . But over scenario along with billing document notafiscal number is also created which  is causing the problem. This notafiscal should not be created without a accounting  document.
    so my client wants to restrict creation of billing document also when these monthly periods are closed.
    Please suggest me a solution.
    Regards
    Ravi

    Helllo Ravinder,
    To check if a period is closed using the FM FI_PERIOD_CHECK.
    First calculate the period of the FI document date.
    DATA: GJAHR LIKE BKPF-GJAHR,
           MONAT LIKE BKPF-MONAT,
           POPER LIKE T009B-POPER.
    CALL FUNCTION 'FI_PERIOD_DETERMINE'
           EXPORTING
                I_BUDAT        = I_BUDAT
                I_BUKRS        = I_BUKRS
    *          I_PERIV        = ' '
    *          I_GJAHR        = 0000
    *          I_MONAT        = 00
    *          X_XMO16        = ' '
           IMPORTING
                E_GJAHR        = GJAHR
                E_MONAT        = MONAT
    *          e_poper        = poper
           EXCEPTIONS
                FISCAL_YEAR    = 1
                PERIOD         = 2
                PERIOD_VERSION = 3
                POSTING_PERIOD = 4
                SPECIAL_PERIOD = 5
                VERSION        = 6
                POSTING_DATE   = 7
                OTHERS         = 8.
    IF SY-SUBRC = 0.
    MOVE MONAT TO POPER.
            CALL FUNCTION 'FI_PERIOD_CHECK'
                 EXPORTING
                      I_BUKRS          =  I_BUKRS
    *                I_OPVAR          = ' '
                      I_GJAHR          =  I_GJAHR
                      I_KOART          = '+'
    *                i_konto          =
                      I_MONAT          = POPER
                 EXCEPTIONS
                      ERROR_PERIOD     = 1
                      ERROR_PERIOD_ACC = 2
                      OTHERS           = 3.
    ENDIF.
    Tutorial ABAP How to check that posting date belongs to closed period - ABAP Development - SCN Wiki
    I hope you help.

  • How can closed open cursor.........?

    Hi All,
    after closed all connection & resultSet, CallableStatement object and then set it to be as NULL in my application
    but a lot of cursor still open. how can be solve this problem ?
    Can anyone tell me....?
    Pls reply........

    Gangadhar Reddy wrote:
    I used SYS REFCURSOR and was able to implement successfully.How many times did you run this successful implementation that does not use bind variables?
    Because this is what will happen when it runs a lot.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17766/e2100.htm#sthref1874
    http://forums.oracle.com/forums/search.jspa?q=%2BORA-04031%20%2Bbind&objID=c84&dateRange=all&rankBy=10001&start=30
    And you will have to regularly restart the server, or possibly slightly less invasive, flush the shared pool.
    Flushing Shared Pool regularly
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1516005546092
    >
    Ok, this is an easy one to diagnose.
    You are not using bind variables. This is terrible. Flushing the shared pool is a bad
    solution -- you are literally killing the performance on your box by not using them.
    If I was to write a book on how to build “non scalable applications in Oracle”, this
    would be the first and last chapter. This is a major cause of performance issues and a
    major inhibitor of scalability in Oracle. The way the Oracle shared pool (a very
    important shared memory data structure) operates is predicated on developers using bind
    variables. If you want to make Oracle run slowly, even grind to a total halt – just
    refuse to use them.
    >
    But, please feel free to go ahead with this successful implementation.
    I just hope anyone else who reads this doesn't make the same mistake.

  • How Reactivate my recurring subscription

    Hi, I just want to know, how can I reactivate my recurring subscription, it was cancelled, because my bank was a problem with the charge, but I call them and said I can make the payment. I would like to recover my subscription I had Call USA and Mexico for $5.95, Can you help me?
    Thanks and best regards.

    a.basurto wrote:
    Hi, I just want to know, how can I reactivate my recurring subscription, it was cancelled,
    Hello,
    Cancelled Subscriptions can't be reactivated. Just repurchase it.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How to closed window form

    i m creating form. by default maximize, minimize, and closed button are present.
    when i m click on closed, it will not work. how to do that, when i m click on closed button then it will be activated.
    give me suggestion.

    hi '
    is it posiible to dislpay .pdf, .doc file through form, if yes then how?

  • How to closed a numbers spreadsheet in ipad?

    How do I close a numbers spreadsheet on my ipad 2? I cannot find a button or menu to close it. It has personal information on and the spreadsheet is password protected. I have opened it but cannot close it so if I lost my ipad, people would be able to see the personal info. That's why I need to close it.

    Thanks Michael. I am finding this really hard to explain even though it's so simple. I have my passwords on a numbers spreadsheet. I password protected it. Every time I try to open it on my macbook it asks for a password. This is what I want. I open it, I update it. I close it, I want to update it again, it asks for the password again, I input the password, I update the sheet, I close it. I dont close it by opening another sheet or not worrying about it because my laptop is password protected, I hit the "X" in the top rught hand corner and close it.
    Now, on my ipad I cannot do the equivlemt of clicking on the "X" in the top right hand corner as the "X" does not appear on Numbers on the iPad?
    That is my question, not how to mask it by opening another sheet or looking for a work around like password protecting the iPad so it doesn't matter that the spreadsheet is still open. Just, how do I Close (X out) of a Numbers spreadsheet when it's open in my iPad?
    I would really appreciate anyone helping me on this and thank you to the 2 people who have tried.

  • How to Closing Adobe account and remove all reference to Adobe Creative Cloud from Computers C Drive

    I currently have two windows computers and i have had Adobe Creative Cloud installed on both of them, I have already removed the creative cloud program from one of them using the  Add/remove program that comes as default with the windows platform, how ever the licence information is still on the C Drive, How can this be removed. I also wish to close my CC account, how is this done?

    Hi There,
    Kindly try CC cleaner tool:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Thanks,
    Atul Saini

  • How to closed open app in 3G (don't have multitasking display like in 3GS and 4G)?

    Since 3G has slower CPU and smaller RAM compare to 3GS and 4G, then I think it should be useful if we could completely shut down app when we stop using it.

    When the RAM gets used up, the iPhone will shut down apps all by itself, you needn't do anything.  Of course, that doesn't always mean it works perfectly.  The only way to close apps is to turn the phone off and back on again, which may be overkill most of the time, but I found necessary when I had a satnav app running, slowing everything else to a crawl.

  • How to open or cut a closed mask/path?

    If a Mask or Path is closed, how do I open it with something like the tools in Illustrator or other vector editing apps that are able to do this?

    If you're reading this, Todd's inability to explain himself and the software is probably causing you to instantly think "how could closing something possibly open it, surely he's not read the question correctly..."
    Well, turns out there's one little thing missing from Todd's "answer".
    Closed, as it is in this menu item, is a SWITCH. So you're unchecking this switch to "Open" the path.
    Yes, bit of a head scratcher as to why there's no cut tool been added to the Pen Tool's functionality, or a right click feature to access a cut operation from a drop down menu whenever clicking on a vertex or line segment.
    But that would be far to considerate and consistent with how other software works, and how people might think about using it.

  • When I have the downloads window open and I close the browser window, how can I get the browser to open the homepage the next time I start it while the download window is still open?

    When I have the downloads window open and I close the browser window, the next time I reopen the browser while the downloads are still going, it returns me to the last page I was on. All previous versions of Firefox would return me to my homepage which I would prefer. Please let me know if this is possible.

    When you re-open Firefox and choose Restore Session, by default it picks up your most-recently-open window, and the other windows should then show up in Recently Closed Windows.
    The Firefox add-on Session Manager lets you manage how many closed windows and closed tabs are saved, in case it's not enough.

  • Closing stock valuation

    Hi All,
    How the closing stock will be valuation in FI trial balance??
    regards

    Hi Closing stock towards finished goods will be valuated at standared pricing and other than finished goods eg, RM and WIP are valuated at moving average price.

  • TS4040 How to close preview document?

    Preview document unable to change, remove and save. it seems dead, how to closed it?
    Thanks

    If you can't close Preview, go to Apple menu > Force Quit or press Alt, Command and Esc keys, select Preview and press Quit or Force Quit

  • How to manage ports

    Dear members,
    My release is open Solaris b103
    1- How to know the opening port in my system
    2- How to open a specific port like port 53
    3- How to closed the specific port like port 53

    The question is a bit confused.
    Ports are opened by applications. So if you are running an application that listens on that port, its open.
    If you don't want the port open, don't run the application.
    Port 53 is DNS. The easiest way to find this is "grep 53 /etc/services".
    So if your running service dns/server then the port will be open..
    To close it "svcadm disable dns/server"

Maybe you are looking for