Launch ms word through  a browser  using jacob plug-in

I want to create a new MSWord document with Jacob. and launch it through a browser urgently, it works fine using an applet viewer. Nothing seems to happen when I load
it through a browser. is it possible to run it through a broswer and if not are there any other plug-ins etc.
Could some one please help ?

it works fine using an applet viewerIt should not. Consider all the security risks (macro viruses etc.). So if it does your system is more vulnerable than it should.

Similar Messages

  • Launch All Web Applications in browser using PowerShell

    Hi Admins,
    I am working on a Script where I should be able to launch all the web applications in the browser to open in tabs.
    I have worked out with the following script and was able to come upto an extent where I am able to launch the Internet Explorer.But ....only 1 web app opens up and throws an error message :
    Exception calling "Navigate" with "1" argument(s): "The interface is unknown. (Exception from HRESULT: 0x800706B5)"
    Below is my script
    Add-PSSnapin Microsoft.sharepoint.powershell -ErrorAction SilentlyContinue
    $webApps = Get-SpWebapplication
    foreach($webapp in $WebApps){
    $URL = $webapp.URL
    $ie = New-Object -ComObject InternetExplorer.Application
    $ie.Navigate($URL)
    while ($ie.busy -eq $true) {
    Start-Sleep -Milliseconds 600
    $ie.Visible = $true
    Can anyone help me know where I am making the mistake ?
    Regards

    Hi,
    As I understand, you want to lunch all web applications in browser using PowerShell.
    I can achieve it by the PowerShell code below:
    foreach($webapp in $WebApps){
    $ie = New-Object -ComObject InternetExplorer.Application
    $URL = $webapp.URL
    $ie.Navigate($URL)
    $ie.Visible = $true
    You can try it and check it if can work.
    For the error message, I recommend to run the SharePoint Management Shell as administrator or turn off User Access Control and then check how it works.
    Best regards
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]
    The above code will open 3 different browser. OP requested to launch all web application in different tabs. To achieve this we need to use the code below
    $webApps = Get-SpWebapplication
    $ie = New-Object -ComObject InternetExplorer.Application
    $ie.Navigate($webApps[0].URL)
    for($i=1; $i -le $WebApps.length-1; $i++)
    $ie.Navigate2($WebApps[$i].URL,0x10000)
    $ie.Visible = $true
    Regards Chen V [MCTS SharePoint 2010]

  • Displaying Open Office word doc in browser using JavaFX

    My requirement is to display open office doc in my application for modification

    Hi. The following works for Microsoft Word docs and Notepad.
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.stage.Stage;
    * @author gusaros
    public class OpenOffice extends Application {
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250);
            Button btn = new Button();
            btn.setLayoutX(100);
            btn.setLayoutY(80);
            btn.setText("Hello World");
            btn.setOnAction(new EventHandler<ActionEvent>() {
                public void handle(ActionEvent event) {
                    String[] cmdArray = {"cmd", "/c", "start", "c:\\fdres.doc"};
                    try {
                        java.lang.Runtime.getRuntime().exec(cmdArray);
                    } catch (Exception s) {
            root.getChildren().add(btn);
            primaryStage.setScene(scene);
            primaryStage.show();
    }

  • Problem when trying to launch my application through jnlp

    when i try to launch my application(written using java swing ) through the browser using JNLP i am getting the following error
    i am using postgres database server running on 7777 (5432 was used by some other service)
    java.lang.ExceptionInInitializerError
    at tools.HibernateUtil.<clinit>(HibernateUtil.java:492)
    at tools.Session.getSession(Session.java:23)
    at reports.LoginFrame.<init>(LoginFrame.java:36)
    at reports.LoginFrame.main(LoginFrame.java:296)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.javaws.Launcher.executeApplication(Launcher.java:847)
    at com.sun.javaws.Launcher.executeMainClass(Launcher.java:807)
    at com.sun.javaws.Launcher.continueLaunch(Launcher.java:685)
    at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:390)
    at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:199)
    at com.sun.javaws.Launcher.run(Launcher.java:167)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    at java.net.Socket.connect(Socket.java:464)
    at java.net.Socket.connect(Socket.java:414)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:421)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:649)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:320)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:281)
    at sun.net.www.http.HttpClient.New(HttpClient.java:353)
    at sun.net.www.http.HttpClient.New(HttpClient.java:334)
    at sun.net.www.http.HttpClient.New(HttpClient.java:329)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:522)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:499)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:620)
    at java.net.URL.openStream(URL.java:913)
    at tools.HibernateUtil.<clinit>(HibernateUtil.java:456)
    ... 14 more

    Have you tried to put the Main-Class under a package (e.g. move LaunchSimulator to org.jyothi.sunke.LaunchSimulator or something)? I'm not sure but it's possible that Main-Class can't be located in the "root package", because the JAR launcher can't address it.
    Always put your stuff in a package, otherwise it can't be addressed by other packaged classes.
    - Erik

  • How does one control the appearance of a web browser using Flash Builder?

    Using Flash Builder I wish to record the existing appearance of a web browser (e.g. position, size, menubar, caption bar, status bar) and change it to full screen, no caption, no menubar, no status bar, etc.  In this mode I will load a full screen graphic and other content in the browser and I want the user to not realize that everything is being displayed in a browser.  Later I need to return it to the initial appearance using the recorded settings.  Any guidance is appreciated.

    It appears that one must launch a new a new browser using JavaScript from Flash Builder whereby many, but not all of the properties I detailed, can be set.  Many browsers disable or can be configured to disable JavaScript from setting some of the properties.  Launching a new window in the 1st place is disabled in many browsers.

  • How to insert a background file in a word file using jacob?

    how to insert a background image file in a existed word file using jacob and set the image as behind text?
    Also, where I can find the documentation for jacob,
    Thx very much.

    Go to http://www.simtel.net/pub/pd/60701.html

  • Using Bex query through Query Browser - add result set to Cell range?

    Hi all,
    I have up to now used Xcelsius on NW with BICS connection towards BEx queries.
    When I use this connection via Data Manager in Xcelsius, I'm able to use the Cross-table functionality to insert my entire dataset into a cell Range.
    But now I have an requirement to save my Dashboards on the BO server, so I need to go through Query Browser to extract data from SAP BW to my Dashboard.
    When inserting the query in the Query browser and I want to assign the data to Excel ranges, it seems like I need to do this for each individual Infoobject and Key Figure. Since I have many Key Figures (30-50), this is a lenghty process.
    Is there a way to insert the entire dataset from Query into a cell range (both rows and columns), or do I need to do this for each Key Figure as indicated in the screen shot above?
    --> I know that the Query Browser flattens my cross-table from the Query, but still, it should be possible to avoid to input all my Key Figures (30-50) individually to corresponding cells in my Excel part of the Dashboard.
    regards
    Oddmar Lid
    asdfasf

    Hi Oddmar,
    If you want to display the data retrieved from the query you could map the data using the Query data.
    Pull scorecard component (for example) and in properties if you see the Display data click on the dropdown and select Query data.
    Hope this helps !

  • Launch pdf file through browser window.

    I tried this.String cmd="iexplore.exe http://subash/doc/help.pdf";
    try{
    Process p = Runtime.getRuntime().exec(cmd);
    }catch(Exception e)
    System.out.println("Error -- "+e);
    }I am getting Error --
    java.io.IOException: CreateProcess: iexplore.exe http://subash/doc/help.pdf error=2please give me a suggestion.
    Otherwise so any other way to launch pdf file through browser window.

    Hi,
    Column Name     ID     Pk     Null?     Data Type     Default     Histogram
    PT_SEQ_NO     1     1     N     NUMBER (10)          Yes
    SM_SERVICE_ID     2          N     VARCHAR2 (15 Byte)          Yes
    PT_FILE_PATH     3          Y     VARCHAR2 (100 Byte)          Yes
    PT_FILE_SERVER_PATH     4          N     VARCHAR2 (200 Byte)          Yes
    NO, I'm not storing that file in Blob. i'm not storing it in database. i'm just transfering it from client location to server location . That's it.
    But i'm storing both the path from where i picked the file and where i uploaded. That's client path in PT_FILE_PATH field and server path in PT_FILE_SERVER_PATH.
    now i want to get that file from server location and show it only on Browser.. Not storing in database, justing putiing in folder at server location.
    thanks
    kammy

  • Can't open/use excel file. Tried sheet to go xls, even through air browser, it just says loading, and never opens.

     Tried sheet to go xls, even through air browser, it just says loading, and never opens. The file works fine on my laptop. Am I doing something wrong?
    Here is  a link where I'm attempting to use the excel files from.
    http://residential.climatemaster.com/dealers_area/​tools.html
    At the bottom of the left hand column there is a few xls. files.  I'm attempting to use the pressure drop calculator and sales proposal.
    Please let me know if there is a way to use these on my Playbook.
    Thanks

    Slaes proposal opened for me. The pressure drop one did not open on playbook but did open on my torch 9860
    Hope Tuesdays update will allow it to he open.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • How to launch MS Word application using java

    HI:
    I'm developing a project using java, but we need to launch Microsoft Word into java based GUI(like Jpanel, or Frame, things like that), could anyone be so kind that give some hints on how to do it?
    thanks!

    I would be pleasantly shocked to find out this is possible. Well, let me retract that. You might, just very, very maybe, be able to use a combination of Windows API and Word's API (either DDE or OLE or ActiveX) to interact with Word. This will involve using a lot of native methods, javah and pre-compiled DLL's written in C or C++.
    But I think you will be completely stuck trying to get the UI to switch to a JPanel. Microsoft would have to have a version of Word independent of the UI (in effect, have designed Word to have a pluggable user interface). They may have done this, but I have never heard of a project where someone successfully swapped out Word's user interface with a custom Swing one.
    - Saish
    "My karma ran over your dogma." - Anon

  • Sharepoint foundation 2013: office docs can be opened in browser using IE but not in firefox or chrome?

    Hi
    Sharepoint foundation 2013:
    why when we open an excel or word  using chrome and firefox browser it wants to download the file.
    It can be opened in browser using IE but not in firefox or chrome?
    Any issues?
    Thanks

    Hello MGerio,
    Can you check what your Browser File Handling settings are of the web application (of the excel/word files)?
    http://social.technet.microsoft.com/wiki/contents/articles/8073.sharepoint-browser-file-handling-deep-dive.aspx
    - Dennis | Netherlands | Blog |
    Twitter

  • Adding Company Knowledge with OpsMgr 2012 Console - "Failed to launch Microsoft Word"

    Hi everyone!
    I'm trying to add company knowledge using the OpsMgr 2012 console (32-bit) on Windows 7 Ultimate (32-bit) using the guidelines provided at the following link...
    http://technet.microsoft.com/en-us/library/hh212900.aspx
    I'm using Office 2010 Pro Plus SP1 (32-bit) with the .NET Programmability feature and the Microsoft Visual Studio 2005 Tools for Office Second Edition Runtime installed, but I get the dreaded "failed to launch Microsoft Word" error...
    ...any help or guidance would be greatly apprecaited!
    Regards,
    JJ

    Thanks Andres!
    I have confirmed that the following instructions does allow you to use Word 2010 32-bit running on Windows 7 64-bit or Windows Server 2008 R2 to edit company
    knowledge...
    1. Go to the directory where the OpsMgr console is installed (example: C:\Program Files\System Center\Operations Manager 2012\Console )
    2. Make a copy of Microsoft.EnterpriseManagement.Monitoring.Console.exe.config
    3. Edit Microsoft.EnterpriseManagement.Monitoring.Console.exe.config using Administrator rights
    4. Search for “</dependentAssembly>” and remove the “<publisherPolicy apply="no" />” line immediately following the “</dependentAssembly>” line
    Hope this helps!
    Regards,
    JJ
    Well, firstly I have to agree with other people's comments along the lines of "It shouldn't be this hard!", but I can happily say that the solution above (by IM5FOOTNOTHIN)
    worked for me...once I noticed this crucial footnote: "Do this for
    ALL instances of the
    <publisherPolicy apply="no" /> line that immediately follow the </dependentAssembly> line"

  • How can I navigate through tabs without using the mouse?

    I want to know how to navigate through tabs without using a mouse... just like you can navigate through multiple windows by using <alt><tab> ... because it's extremely annoying when I'm working on something to have to take my hands off the keyboard and go to the mouse.

    You can also use Ctrl + Page Up and Ctrl + Page Down to go to the next and previous tab. I prefer those because it doesn't require the Shift key (Shift + Ctrl+ Tab) to go to the previous tab.
    See also [[Tabbed browsing]]

  • I have Lightroom 6 (not CC) on a Windows machine.  I'm prompted to log into Creative Cloud when I restart my computer (I don't have, use, or pay for Creative Cloud), and then when I launch Lightroom, it tells me to use the application I have to log into m

    I have Lightroom 6 (not CC) on a Windows machine.  I'm prompted to log into Creative Cloud when I restart my computer (I don't have, use, or pay for Creative Cloud), and then when I launch Lightroom, it tells me to use the application I have to log into my Adobe account...AGAIN!  And then to further add insult to injury, I'm prompted to enter in the license number of my product.  I've gone through this process a dozen times now...SCREAM!!!

    Paulou12 what type of a Creative Cloud Membership do you have?  You can find details on how to update Lightroom using the Creative Cloud Desktop application at Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.
    Finally if you are in a managed environment then please work with your I.T. department to apply the update.

  • Windows 8.1 problem saving word 365 document by using Netdrive in NAS Synology

    Hi Everyone,
    I have Problem with Windows 8.1 to open or save word 365 document by using Netdrive in NAS Synology.
    Please I Need your help asap.

    Hi,
    In regarding of the issue, we need more information.
    Do you meaning that you can't open the Word 2013 file in NAS Synology through network?
    Does only one Word file occur the issue?
    Does the Other file encounter the issue (Such as Excel file ,TXT file, Images)?
    Do you download the Word file to local and check if it can be opened or saved?
    Do you get some error message or error code?
    Please try the following steps to check they are helpful:
    Create a new Word file and open it in local disk to make sure Word 2013 work fine in local.
    Check the network connection.
    Check the account permission and security settings.
    If the issue still exists, please give me more information, and upload the event log to do further research.
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • Windows Shortcut Keys no longer working!?!

    Hello All, Framemaker 8(p277) has recently decided that after a period of use, standard windows shortcuts will stop working (ctrl+v / ctrl+c / ctrl+z!!! etc..) along with keystroke / character repeats. This only occurs within framemaker. Windows shor

  • Z30 freezing and shutting down

    I am on my 2 nd z30 in 2 weeks and they have both had a problem with freezing and shutting down, sometimes in mid use and sometimes on its own, can anyone?

  • Oracle Fast Formula not working as intended.

    Hi all, I am fairly new to Oracle HRMS and payroll and there is an issue that is completely baffling me. I will enumerate the steps I have taken: 1/ I have set up and element Bonus as recurring, Classifications Earnings, with input values pay value (

  • Missing Page Sizes

    I have been seeing this problem both in Lion and Snow Leopard. For some users, when they use a specific printer driver, no paper sizes are available, only other. These are Xerox printer drivers but I don't see any reason why this problem is specific

  • Setting Up Some Sort Of Auto Sync

    I don't even know if this is the place to ask this question and I don't know If it can even be done. I want to set up somesort of auto sync for files across two computers on the same network. It has to be cross platform also. All I am looking to do i