Use our Google Custom Search for best site search results.
Search
-
Thanks.....
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
My users are getting another similar message from InfoPath. They are getting;
Could not send the document: 12152
I have searched all over and cannot find any references. Is there some place were these messages are documented?
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
Franck... I figured out the following solution:
In the onBeforeChange function change the if statement to
if (eventObj.Operation == ''Insert'' && eventObj.NewValue != null){
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
I am not sure I understand what values you are talking about here.
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
I have a checkbox inside a repeating section. When the checkbox is checked or unchecked I would like a confirmation box to be displayed. Based on the result other fields within the repeating section will be populated or cleared.
I have everything working with one problem. The OnBeforeChange event is fired not only when the checkbox is ...
-
quote:Originally posted by franck
Hi Richard,
In your OnBeforeChange event (the global one triggered for all checkboxes), prompt the users and to cancel the event if needed use:
e.ReturnStatus = False
Regards,
Franck Dauché
InfoPathDev
Franck,
I am not sure I understand how to do this. I am including a simple sample of what code I have. I ...
-
I am trying to do something similar but I want to include a confirm dialog box to allow the user to cancel the population if they change their mind. What should happen is the user checks a check box and a number of text boxes are filled with ''0''. If they uncheck the box the fields should be empty. I am having trouble getting this work ...
-
Franck,
Thanks for the suggestion. It turns out that the problem is caused my a misconfiguration of the user's workstation firewall. Thanks!
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
When some of my users attempt to submit an InfoPath form they are getting the following message from InfoPath:
Could not send the document: 12029
I know this error is not being thrown by my application and I have not been able to find any references to it on the web. Any ideas anyone?
Richard T. Henry
Lewisberry, PA, USA
riphenry@gmail.com
-
My final solution for this issue was to turn off all the available formatting for the rich text box. I then put in data validation using the regular expression .{251,} (limit field to 250 characters). I know this defeats most of the power of a rich text box but at least the field can still expand as needed.
Richard T. Henry
Lewisberry, PA, ...