Browse by Tags
-
Hello! I am trying to include an attachment in some already working code that creates a new item in a SharePoint list. I have read that you can do this by including the attachment as a field in your CAML document. The field will hold an encoded string that represents the file. I want to do this using...
-
Hello All, I need help regarding finding out the form location URL I published a infopath form template as Site content type to use in multiple form libraries, i have three form libraries 101, 102, 103 Users fill the forms in their respective form libraries, so when they click on save button , infopath...
-
In SharePoint, View is a virtual representation of a set of data from a specific list. We can programmatically create and update views for a list. Provided below is an example in C#.Net which explains the approach of creating and updating views. The code is divided in to 2 parts i.e. Part I - describes...
-
Provided below are code samples written in C# to format an input as per SharePoint DateTime field. /* -- Format for Date Only Field -- */ private static String ToSPDate(String strDt) { if (strDt == String.Empty) return strDt; else return (Convert.ToDateTime(strDt)).ToString("yyyy-MM-dd"); ...
-
How to merge multiple xml files submitted from infopath web service? i have about 10 xml files with same structure (repeating tables) and almost same content. I just want to merge that repeating tables into one big table. is that possible? if possible how to do that?
Thank you
-
Hello Please if anyone can tell me how to set focus on to a control in infopath 2007 BROWSER ENABLED form using managed code(C#)? I have to validate some fields and set focus appropriately. Thanks in advance
-
Im trying to fill a dropdownlist based on an other one: Departments and SubDepartments. i followed this link: http://www.sharepoint-tips.com/2007/01/infopath-form-services-implementing.html when i try to fill in a form it gives me an error: Request Failed (--> securityException) on this line: q.FileLocation...
-
Hi all, i'am having a little issue and a i didn't find an answer to this during my investigation. I have web-browser form with a repeating table with attachment fields... what i want to do is if a row has their request answered (based on a field controled in the row) i want to make the attachment...
-
I want to take the VALUE of a drop down down box (which is a list of users and the actual value is their domain username e.g. DOMAIN\username) pass it to a bit of code which searches Active directory and then outputs the users email address to a text box. I can do this for the logged on user no problem...
-
Warrtalon: Thanks for the quick reply. It is publishing. In InfoPath 2007, if you use the "Publishing Wizard", it gives you four options on publishing a form: To a SharePoint server with or without InfoPath Forms Services To a list of e-mail recipients To a network location As an installable...