Use our Google Custom Search for best site search results.
Search
-
You can have two sections that can be made visible only once the button gets clicked, which could be the button on click of which the mail is sent to respective people.
Then you can hide two sections based on user-login. Check the current user login and compare it with the user who is meant to edit the section controls. You ca use ...
-
If anyone can help me how to achieve this functionality where a single attachment control can be used to upload multiple files. I know we can place a repeating table and then inside that an attachment control can be placed, but requirement is to achieve functionality with InfoPath attachment control as we have a multiple upload functionality in ...
-
The cause of this error usually is, if you are trying to update a field having a certain datatype with values that does not match that datatype, for eg. if you are trying to enter a string value to datetime control, you can do that but in that case you have to frmat the control to use string values.
I would need ur infopath form and code ...
-
Create a form with repeating table and bind it directly with secondary data connection which in your case is Sharepoint list, you can select columns from the list for which u want to fetch the information, i hope this would get you what you want exactly. Let me know if you face some problem still...
-
You can use connected xmlformview webpart to show selected xml file in form library.
-
Well, it's not tough just tricky. Now coming to possibility of doing this, it's not just possible but simple as well you just need concentration and dedication to make it possible. Well, if your scenario is to get the students tasks , students name and some other data from a list hosted in sharepoint and then send those tasks to students ...
-
There is no fixed limit for the documents in doc lib, recommended is 2000 folders per document library and 2000 documents per folder..
-
How you are doing that, easiest way is to use VSTA code, create an instance of your doc lib,
splist doclib = (spdocumentlibrary)web.lists["yourlistname];
splistitemcollection itemcoll = doclib.items;
int itemcount = itemcoll.count;
Let me now if you have some queries..
-
Not a full code but enough to give you an ideaXPathNodeIterator xnav = MainDataSource.CreateNavigator().Select("/my:IdeaBankFields/my:IdeaBankGrp/my:IdeaBank", NamespaceManager);
while (xnav.MoveNext())
{XPathNavigator ideaNav = xnav.Current.CreateNavigator();
string postTitle = ...
-
Q-rules is a nice product to give it a try, but if you are not interested to invest money on this requirement, you can do this by using VSTA code. I assume you are good at it, just create an instance of your repeating table node as xpathnodeierator and then you can access individual rows by using instance.movenext. make sure to create an ...