Use our Google Custom Search for best site search results.
Browse by Tags
-
Thanks for the response. I actually tried going with the simple 'me.print()' but it gives the following error: 'print' is not a member of 'TestForm.FormCode'. I included those namespaces because it seemed like I did not have access to any print functionality. Here's the entire...
-
I have created a Shipping Request Form and have been using it for years. It is posted to SharePoint and sent to print via code this .Print( true ); InfoPath 2010 is being used. Recently I was asked if I could create a Packing Slip to go with the product we ship, so I created another view, and would like...
-
How would you accomplish this using InfoPath 2010 and VB OnLoad?
Thanks!
-
Using Infopath 2010, browser enabled form on Sharepoint 2010, coding is in VB. I created a field called GoToView that get's the name of a view based on a Sharepoint list with a filter based on two drop down boxes. To verify the result I temporary show the content of this field in a text box. This...
-
I've made some progress. I located the following example ( http://www.bizsupportonline.net/infopath2007/programmatically-add-row-repeating-table-xmlwriter.htm ): Dim myNamespace As String = NamespaceManager.LookupNamespace("my") Using writer As XmlWriter = MainDataSource.CreateNavigator...
-
Morning all! I am trying to create an OnSaveRequest event that sets the SaveAs default location. This is what I have so far. Sub XDocument_OnSaveRequest(eventObj) If evenObj.IsSaveAs = True then XDocument.UI.SetSaveAsDialogLocation("C:\") XDocument.UI.SetSaveAsDialogFileName("form1"...
-
I am currently trying to building a travel request form, the user can add additional travellers to their request by filling out their details in a repeating section. I need to be able to populate a field with a delimited string of all the additional travellers from one of the fields in the repeating...
-
Hi all, Can someone please explain the 3 different types of programming events. When I right-click on a text-box, and select "Programming", I see: 1) Changing Event... 2) Validating Event... 3) Changed Event... What do these mean? HELP! Derek derek.megyesi at hotmail dot com
-
Hi all, I'd like to get started doing some coding using Visual Basic for a form I am building. I think the easiest way is via an ON_CLICK method. Can someone give me some basic code that will: 1) When a button is pressed (LASTNAME BUTTON), read the contents of the LASTNAME TEXTBOX and simply display...
-
Hi All, Thanks for everyone's help on here so far. It's been great!! :) I have a question. I wish to remap the <ENTER> key so that it acts like the <TAB> key...in the sense that it would move the cursor to the next control (and wraparound to the first control in the event that I was...