sharepoint-2010

Add data to Sharepoint 2013 list from Excel with VBA

て烟熏妆下的殇ゞ 提交于 2020-01-06 15:22:50
问题 I have been attempting to add data to a Sharepoint 2013 list from Excel using VBA with no success. I am using as a template the example that is found all over the internet. Sub Add_Item(ListName As String, SharepointUrl As String, ValueVar As String, FieldNameVar As String) Dim objXMLHTTP As MSXML2.XMLHTTP Dim strListNameOrGuid As String Dim strBatchXml As String Dim strSoapBody As String Set objXMLHTTP = New MSXML2.XMLHTTP strListNameOrGuid = ListName 'Add New Item' strBatchXml = "<Batch

Sharepoint 2010 user not found error

余生颓废 提交于 2020-01-06 05:11:45
问题 I am getting this error when I try to do the following: accessing a library settings accessing a workflow settings accessing a list settings accessing a task settings p.s. I'm using SharePoint 2010 on Windows Server 2008 64-bit I am using an Administrator account. I recently installed the Active Directory on the server Regrds 回答1: Check the workflows. Browse to the site, and Edit in SharePoint Designer. If you click on the workflows, there may be one there that was created by a user that no

Sharepoint 2010 user not found error

谁说我不能喝 提交于 2020-01-06 05:11:07
问题 I am getting this error when I try to do the following: accessing a library settings accessing a workflow settings accessing a list settings accessing a task settings p.s. I'm using SharePoint 2010 on Windows Server 2008 64-bit I am using an Administrator account. I recently installed the Active Directory on the server Regrds 回答1: Check the workflows. Browse to the site, and Edit in SharePoint Designer. If you click on the workflows, there may be one there that was created by a user that no

change URL spelling/case on sharepoint library

有些话、适合烂在心里 提交于 2020-01-06 04:59:13
问题 I have a sharepoint library that was created by a user with a url like "/mysite/MyLIBrary" I want to change the case of the URL to be correct so it reads "/mysite/MyLibrary" I cannot figure out how to do this in the sharepoint designer. Just renaming the library doesn't change the URL. 回答1: You should be able to select Document Library in SharePoint designer and Rename. This updates the Title of the list, not actual name. After this you will also have to rename Library in "All Files" (Left

share point 2010 :how to create forum website , using in team discussion question and answerig? [closed]

落花浮王杯 提交于 2020-01-06 04:40:46
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 8 years ago . sharepoint 2010 i need to create team discussion question and answering , work as forums . I using sharepoint 2010 and create blogs, wikis, but don't know way to create fourm using sharepoint 2010 what can do .

How can I get a link to a file to open said file?

限于喜欢 提交于 2020-01-06 02:54:05
问题 I generate a PDF file within a Sharepoint page; as I have so far been unable to let the user choose a landing spot for the pdf file (as asked about here), I have decided to create a link to the file on the page, hoping that clicking the link will open the file. Here's the code: String pdfFileID = GetYYYYMMDDAndUserNameAndAmount(); String pdfFileName = String.Format("DirectPayDynamic_{0}.pdf", pdfFileID); String fileFullpath Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder

Read excel file stored in SharePoint Document Library

可紊 提交于 2020-01-05 08:45:09
问题 I have an excel file stored in SharePoint document library. I need to read this excel file and get the data programmatically from the file path For Example: SharePoint Site: http:// servername :1000 Excel file path :http://servername:1000/ExcelDocs//ExcelFile.xlsx As we see I have path to excel file stored in SharePoint document library. I need to get data from this file. Any ideas? Thanks 回答1: In fact, you could read Excel file content without any third-party components involved, using

LightSwitch: Passing data from one screen to another

谁说我不能喝 提交于 2020-01-05 06:53:25
问题 Is it possible to pass one information from one screen to another? This is my Main screen: And I want to add one of the users into where "Leiter" is written. Some idea how to manage it? Oh yeah, the data is coming from SharePoint... 回答1: In your List Detail, you need to create a Data Item to store the User Name. In the Properties for that Data Item, you then need to check "Is Parameter". When you call your second screen from the code in your SearchUserInformationLists screen, you pass the

Forcing version 2 on remote session for SharePoint management using Powershell

徘徊边缘 提交于 2020-01-04 13:35:16
问题 It seems that SharePoint 2010 is still incompatible with PowerShell version 3.0. I am already aware that it is possible to force compatibility by executing PowerShell with the -v 2 switch, but is there a way to force this compatibility mode when using a remote session via PSSession as using a remote desktop is quite impractical just to launch a shell? 回答1: If you start the client PowerShell with -v 2 . Then outgoing remote sessions should use v2 on the remote end automatically. Update : it

Get tbody next to one below the current tbody

断了今生、忘了曾经 提交于 2020-01-03 05:28:50
问题 I have a SharePoint table and would like to get the tbody of the table right one below the tbody with groupstring. Sample table <tbody groupstring=“%3B%23Application%3B%23”> <tr><td> : Application </td></tr></tbody> <tbody></tbody> <tbody> <tr><td><a href=“https://link1.com”>Link 1</a></td></tr> <tr><td><a href=“https://link3.com”>Link 3</a></td></tr> </tbody> I will be getting another link Link2 from Json and dynamically inserting it between Link1 and Link3 with Jquery var addRow=function