Search - InfoPath Dev Sign in | Join | Help InfoPath Dev InfoPath Dev is dedicated to bringing you the information and tools you need to be successful in your Microsoft Office InfoPath development projects. Home Blogs Forums Photos Downloads Use our Google Custom Search for best site search results. Search More Search Options Page 31 of 31 (310 items) « First ... < Previous 27 28 29 30 31 Re: IP address field If you can still not figuring it out after following the advice from Matt, just add a new node in your schema (text) and drop the one that gives you some trouble. Overkill, but works everytime. Regards, Franck Dauché Posted to General (Forum) by franck on 10-05-2005 Re: Dropdown list questions Ok David, If your final display needs to be different from your input screen, you may want to build a ''Print View''. 1 solution is to add a node in your schema where you store what needs to be displayed. If the user is selecting any of your aluminum can choices, the node stores: ''Aluminum Can''. On the print view, you replace your drop down ... Posted to General (Forum) by franck on 10-05-2005 Re: Help: Close InfoPath window in OnLoad Event Hi, One possible way to accomplish what you are trying to do is to have your form defaulting to a View where you check your user credentials (Login View). If your user passes your test (use name / passord, etc.), you can then Switch View and go to what you currently have as a default View in your form. Else, you can safely warn your user and ... Posted to Code (Forum) by franck on 10-05-2005 Re: Dropdown list questions Hi David, I agree with Matt, we may need more info on what you are trying to achieve. The way I understood it, you may want to edit your Query linked to your Access DB to add a new ''Aluminum Can'' column. For the color part, I am not sure if you are talking the entire field or you are trying to have formatting within the field (which works ... Posted to General (Forum) by franck on 10-05-2005 Re: Suppressing Infopath Toolbars Hi, Unfortunately, you won't be able to mix vbscript with C#. When you first started your design, using Visual Studio.Net would throw you into Managed Code (C# or VB.Net). The route you took was to design a form through IP, which then supports vbscript or jscript. Sorry, I don't have any scripting to do this. Franck Dauché Posted to General (Forum) by franck on 10-04-2005 Re: Launch IE window from a button on a form My pleasure. Glad I could help. Franck Dauché Posted to General (Forum) by franck on 10-04-2005 Re: Launch IE window from a button on a form Hi, Have you tried? function YouButtonName::OnClick(eventObj) { var oIE; oIE = new ActiveXObject(''InternetExplorer.Application''); oIE.Visible = true; oIE.navigate(''http://www.infopathdev.com''); } Regards, Franck Dauché Posted to General (Forum) by franck on 10-04-2005 Re: How do i create a full-trust InfoPath form? Thank you Patrick. You helped me so much in my initial baby steps in the InfoPath world, the least I can do is to help a little now (if I can)... Franck Posted to General (Forum) by franck on 10-04-2005 Re: Suppressing Infopath Toolbars Hi, Yes you can. I am assuming that you will use C# behind your form. Call from OnLoad: public void OnLoad(DocReturnEvent e) {EnableToolBars(false);} private void EnableToolBars(bool enableToolbar) { ObjectWrapper commandBars = (ObjectWrapper) thisApplication.ActiveWindow.CommandBars; EnableBar(enableToolbar, ''Menu Bar'', commandBars); ... Posted to General (Forum) by franck on 10-04-2005 Re: How do i create a full-trust InfoPath form? Hi, For fully trusted forms, why don't you start there:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ipsdk/html/ipsdkUnderstandingFullyTrustedForms_HV01073332.asp Hope that it helps. Regards, Franck Dauché Posted to General (Forum) by franck on 10-03-2005 Page 31 of 31 (310 items) « First ... < Previous 27 28 29 30 31 Copyright © 2003-2019 Qdabra Software. All rights reserved.View our Terms of Use.
Use our Google Custom Search for best site search results.