How to load a saved form using a seperate form - InfoPath Dev
in

InfoPath Dev

Use our Google Custom Search for best site search results.

How to load a saved form using a seperate form

Last post 05-16-2010 07:54 AM by Sal1744. 4 replies.
Page 1 of 1 (5 items)
Sort Posts: Previous Next
  • 04-21-2010 03:40 PM

    How to load a saved form using a seperate form

    I'd like to trigger the loading of a saved form from a sharepoint library as follows;

    1.  User types in a Form Name (or selects from a drop down list)

    2.  User clicks submit.

    3.  A form with the matching Form Name in a sharepoint forms library is then opened.

    Using browser based forms only

    Assistance on how to do this is appreciated.

     

  • 04-21-2010 10:46 PM In reply to

    Re: How to load a saved form using a seperate form

    you will need to write some code for that.

    Just write a method to open browser and pass the link of the form to it

    Qazi Anis
    Technical Architect
    Bitwise Inc
  • 04-22-2010 05:46 AM In reply to

    Re: How to load a saved form using a seperate form

     

    Can you be more specific.  I don't have any coding experience  I was hoping for a solution using the infopath tool
  • 04-22-2010 06:29 AM In reply to

    Re: How to load a saved form using a seperate form

    ProcessStartInfo startinfo = null;

    try

    {

    startinfo =
    new ProcessStartInfo("IExplore.exe");

    startinfo.Arguments ="Your From link";

    Process.Start(startinfo);

    }

     

    Qazi Anis
    Technical Architect
    Bitwise Inc
  • 05-16-2010 07:54 AM In reply to

    Re: How to load a saved form using a seperate form

     

    Thank you.
Page 1 of 1 (5 items)
Copyright © 2003-2019 Qdabra Software. All rights reserved.
View our Terms of Use.