sharepoint

Return Drive name to VBA in Access from batch file

 ̄綄美尐妖づ 提交于 2019-12-25 17:01:47
问题 I have a Batch file that maps the next available free drive letter to a network drive. I use this to map a sharepoint site and then use the documents in the shared folder in my Access database. this is the batch file (which works perfectly to map the netwrok) @echo off for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do CD %%a: 1>> nul 2>&1 & if errorlevel 1 set freedrive=%%a: echo %freedrive% pause Net Use %freedrive% "http://XYZ/" pause I call this batch file as a shell from a

Sharepoint 2010 migration to sharepoint online using sharegate

感情迁移 提交于 2019-12-25 14:48:47
问题 We have migrated few surveys from 2010 to SharePoint o365, but we observed that there is a change in Time created of the survey as below in SP 2010 Time Created: 7/17/2014 6:21 AM and in SP online Time Created: 4/29/2017 8:51 PM is this a limitation of share gate that it cannot retain the time created or there is something wrong with the migration? 回答1: Are you talking about the creation date of each survey answer or the creation date of the survey list itself? For each answer, Sharegate

Deploying SharePoint layout ASP .NET assembly into GAC

旧时模样 提交于 2019-12-25 14:38:18
问题 I'm currently rewriting a legacy SharePoint application and I need to figure out how to deploy it. The application itself is SharePoint solution with several features, including webparts and simple web pages with some code. There is a webpage that is designed to be deployed in layouts subfolder. In production environment, there is no codebehind in layouts subdirectory, just the .aspx file. I understand that corresponding codebehind assembly is loaded from GAC. Indeed, it is there. However the

Deploying SharePoint Solution using VSeWSS

懵懂的女人 提交于 2019-12-25 13:17:10
问题 I have a development WSS 3.0 site that I wanted to move to a Production server. I am using VSeWSS 1.2 to do my deployment. I generated the SharePoint solution of the site with SharePoint Solution Generator 2008. When deploying it locally it works fine, but when I tried to deploy it to the remote Production server it would not deploy. I then had to install VS and the VSeWSS on the Production server and deploy from there because of time constraints. I have seen references where the generated

VBA - Checking Folder/File exist in SharePoint

旧巷老猫 提交于 2019-12-25 12:15:47
问题 I wanted to copy a local file to sharepoint library using VBA by clicking an image. Right now seems like I'm unable to check for Folder & Files on SharePoint. As every time I ran the code(by clicking an image in excel), it returns unable to find the file in SharePoint. And stops at returning the MsgBox Sorry there's no such Folder...... I tried mapping drive, it works perfectly fine, but not an options because end-user need to map the drive by themselves. So now I'm looking to connecting to

how to create Tag Cloud in sharepoint?

心不动则不痛 提交于 2019-12-25 10:52:11
问题 How to create tag cloud in sharepoint2007. Is there any default designed tag cloud templates etc in Sharepoint2007?I want to show all the list items in a Tag cloud based on an integer value of that item. How to do this in Sharepoint? 回答1: Take a look at Nuage - Tag cloud for Sharepoint Nuage is a SharePoint solution which makes possible to tag items and display the tag cloud. Features: The "Tags" column can be added on any list (including document libraries) by site administrators Items can

Error on : Publishing InfoPath forms to the SharePoint site

孤街醉人 提交于 2019-12-25 10:19:03
问题 I'm trying to publish Browser Enabled Infopath Forms to the SharePoint sever but, at the end it was showing me the following Error: The SOAP response indicates that an error occurred on the server: Server was unable to process request. ---> Method 'get_ServerInfo' in type 'Microsoft.Office.InfoPath.Server.SolutionLifetime.XmlFormProxy' from assembly 'Microsoft.Office.InfoPath.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' does not have an implementation. 回答1: Do

How to perform Looping Through List Items in SharePoint 2013 Designer Workflows?

China☆狼群 提交于 2019-12-25 10:16:11
问题 I am new to SharePoint. I'm creating a workflow in SharePoint 2013 in which I want to iterate a List using a loop. How to perform looping through list items in SharePoint 2013 Designer Workflows? 回答1: I'm not aware that there's any out-of-box way to get a workflow to "loop through" all entries in a list, but you can try to make two workflows bouncing back to each other until all entries are updated, here is the detailed steps, assuming that the list that we are working on is named list_work ,

Aspx to pdf jsPDF

你。 提交于 2019-12-25 10:00:59
问题 I want to convert my form (Sharepoint) to pdf with jsPDF but i have a problem ... Result: Can you help me ? My code: function demoFromHTML() { var pdf = new jsPDF('p', 'pt', 'letter'); // source can be HTML-formatted string, or a reference // to an actual DOM element from which the text will be scraped. source = $('.JsPDF tbody')[0]; // we support special element handlers. Register them with jQuery-style // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.) // There is no

Aspx to pdf jsPDF

我怕爱的太早我们不能终老 提交于 2019-12-25 10:00:14
问题 I want to convert my form (Sharepoint) to pdf with jsPDF but i have a problem ... Result: Can you help me ? My code: function demoFromHTML() { var pdf = new jsPDF('p', 'pt', 'letter'); // source can be HTML-formatted string, or a reference // to an actual DOM element from which the text will be scraped. source = $('.JsPDF tbody')[0]; // we support special element handlers. Register them with jQuery-style // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.) // There is no