Use our Google Custom Search for best site search results.
Search
Page 1 of 1 (10 items)
-
This is how I did it using VB.Net. Note that you must have the CDO library installed with MS Office to do this. This returns a string of recipients delimited by a ; and you can do with them whatever you want.
Public Function AddRecipientsViaCDO()
Const cdoE_USER_CANCEL = &H80040113
Dim objSession As MAPI.Session
Dim colCDORecips
...
-
You could have multiple button controls that run managed code/script, and then submit the data via the code, but that takes away some of the InfoPath functionality. I think you can only have one unique submit if you are using infopath's built in submit functionality.
-
You could create a button that runs script/managed code. Then in the buttons onclick event handler, use the thisxdocument.submit and thisxdocument.save functions.
-
I encountered this problem as well, and the only way to get rid of the programs at that point it seems is to go into the registry and delete any registry keys that contain the forms urn value. You can do this by going to start -> run, type regedit and press ok, and use find.
-
Is it bound to a data source? If so, you should be able to use the node's text property.
-
You could do this in code by using the Application.MachineOnlineState property, and query the secondary data source programatically only if the user is connected.
-
You can export the completed form as a .mht file by going to file -> export. This will be viewable like a web page, but read only.
-
I have SP2 installed because I was having the problem losing the conditional formatting on my comboboxes as well. SP2 fixed that problem, but this one remains. Thanks.
-
Not sure if anyone has noticed this bug, but it seems to occur when you have a text box that is visible on a condition of a combobox. Example, I have a combobox and if other is selected then the textbox is visible. I set the Limit Text Box To value for each text box, but when I reopen my project that setting goes back to default. This screws me ...
-
I am trying to set up my listbox control to add data entries from a textbox using an add button. The data is getting added as a new node under my listbox control, but isn't showing up in the listbox.
<InfoPathEventHandler(MatchPath:=''CTRL20_5'', EventType:=InfoPathEventType.OnClick)> _
Public Sub CTRL20_5_OnClick(ByVal e ...
Page 1 of 1 (10 items)