Hi,
Can someone point out the link to download the recently released SQLCE 4.0?
Thanks!
View Complete Post
Hello, I noticed that the "disabled" property that appears in Intellisense for a link control doesn't work (when set to either True or False)..how can I programmatically accomplish the contextual disabling of a hyperlink via Visual Basic? Thanks.
actually i am using web service.In a web method i have retrieved the actual file, converted it into string and returned to the client side javascript. But is it possible to pop up a window that will show file name and where to save the file.One another limitation i am seeing is that is it possible to download image or exe files in this way ?
Any suggestion are welcomed.
Hi All,
I have the following C# code which generates and creates an xml file which store it in my local drive. It loops through the dataTable and convert it as xml file. What i need is, instead of creating xml file in my local drive, I want it to prompt the user to load the file so that user can either click the save button or click the open button. Possible?
This is my code,
XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true; settings.IndentChars = " "; settings.NewLineOnAttributes = true; using (StreamWriter streamWriter = new StreamWriter("C:\\myXML.xml", false, Encoding.GetEncoding("UTF-16"))) { using (XmlWriter xmlWriter = XmlWriter.Create(streamWriter, settings)) { xmlWriter.WriteStartElement("UsersList"); foreach (DataRow dataRow in dtResults.Rows) { foreach (DataColumn dataColumn in dtResults.Columns) { xmlWriter.WriteStartElement("Users"); xmlWriter.WriteElementString(dataColumn .ColumnName, dataRow[dataColumn].ToString()); xmlWriter.WriteEndElement(); } } xmlWriter.WriteEndElement(); } }
How to create a SharePoint Designer workflow that sends an email with a link to current item of the list.
Regards,
Srikanth Reddy
My manager just asked me if it is possible to connect from our intranet MOSS SP farm to an completely separate WSS MS Project Server farm to pull in project lists from the "Project Center" list. He wants to be able to pull in the projects and a bunch of the metadata from that list into an intranet list.
Because these are completely separate farms, one on MOSS and one on WSS, I wasn't sure how to make it work. I thought that there might be some way to do that with the BDC, (since theoretically you can connect to just about anything with it :-), but I wasn't sure how to do something like that. Or if you know of some completely other way to do this with some web part that is obvious to you, (but I'm clueless of), please let me know as well.
Any help or suggestions would be greatly appreciated.
Ted
Hi
I want to create a simple feature to add Menus to the TopLink bar of the site. I need to display those menu for the Admin people only. please suggest me..
Dear friends,
I want to create a web part which will allow user to browse > upload and then display the uploaded files as a list.
I dont want this webpart to upload files to SharePoint Document Lib, I want it to upload files in AN Already spacified location..
Kind regards
Forgive me for possibly not using the right terminology. I'm trying to determine if Sharepoint 2010 supports linking to traditional files shares so they can be presented as Document Libraries inside Sharepoint. When searching I find lots of info about the capability to map traditional network drives to a Sharepoint Document Library, however that is essentially the opposite of what our customer needs to do. Instead they want to keep a large repository of files out of a Sharepoint database, but still present it as a document library to their users. I know that the BDC supports linking to External Data Sources, but I thought that is just for crawling, and searching external data stores.Is it possible to present a traditional file share \\servername\share as a document library (i.e. https://home.widgets.com/Documents/Forms/AllItems.aspx) in Sharepoint 2010?It looks like the capability is there especially because Server 2008 R2 refers to default shares as Libraries.Thanks.Matthew
Removing the hyperlink from custom "Person or Group" column and display the name of user.
Example: Custom list with column of type people and group should display only name of user, like: sp\sharepointadmin should display only name of sharepointadmin.
Thanks