PS:自己初学C#,SharePoint时做的一个小tool。

Friday, November 28, 2014

​这个tool编译出来以后可以把部门的daily report保存到本地,数据库,和SharePoint的daily report list中,经过测试能够在我本地的SharePoint2010 SP1环境上正常运行了。

学习C#的第二个小程序,过程中遇到了好多问题,不是很完善,就是意思意思,本次程序练习提取窗体中的信息;向数据库中建表,判断并插入数据;把文件保存到本地指定的路径下;把内容在SharePoint指定list中保存成item并为列赋值。

在此记录一下。

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Data.SqlClient;

using Microsoft.SharePoint;

using System.Globalization;

namespace WindowsFormsApplication3

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void SaveToLocalButton_Click(object sender, EventArgs e)

{

SaveToLocal();

}

private void SaveToSQLButton_Click(object sender, EventArgs e)

{

SaveToSQL();

}

private void SaveToWebButton_Click(object sender, EventArgs e)

{

try

{

SaveToWeb();

}

catch (Exception ex)

{

MessageBox.Show(ex.ToString());

}

}

private void SaveToAllButton_Click(object sender, EventArgs e)

{

SaveToLocal();

SaveToSQL();

SaveToWeb();

}

private void SaveToLocal()

{

FolderBrowserDialog fbd = new FolderBrowserDialog();

if (fbd.ShowDialog() == DialogResult.OK)

{

string path = fbd.SelectedPath;

MessageBox.Show("Your daily reort will be saved under the path:" + path);

string filename = "DailyReport.doc";

DailyReportText.SaveFile(@path + "/" + filename, RichTextBoxStreamType.TextTextOleObjs);

}

}

private void SaveToSQL()

{

string connectString = @"Data Source=WIN-VVBGFRT65MV\ALWAYSON2;initial catalog=master;uid=sa;pwd=1qaz2wsxE;integrated security=true;pooling=false";

SqlConnection myConnect = new SqlConnection(connectString);

myConnect.Open();

SqlCommand myCommand = myConnect.CreateCommand();

string dateLine = DailyReportText.Lines[0];

int index = dateLine.IndexOf(":");

int lastIndex = dateLine.Length-1;

string date = dateLine.Substring(index+1, lastIndex-index);

myCommand.CommandText =

"use master if exists(select * from dbo.SysObjects where name='DailyReportDB') begin insert into DailyReportDB(date,content) values('"

+ date + "','" + DailyReportText.Text.ToString()+

"') end else begin  create table DailyReportDB(date varchar(1000) primary key,content varchar(1000)) end";

try

{

SqlDataReader myDataReader = myCommand.ExecuteReader();

myDataReader.Close();

}

catch (SqlException)

{

MessageBox.Show("The report of the date you input has already existed in database!");

}

myConnect.Close();

}

private void SaveToWeb()

{

try

{

using (SPSite qaSite = new SPSite("http://win-vvbgfrt65mv"))

{

using (SPWeb qaWeb = qaSite.OpenWeb("/"))

{

string listURL = "http://win-vvbgfrt65mv/Lists/DailyReport";

SPList DailyReportList = qaWeb.GetList(listURL);

SPListItem item = DailyReportList.Items.Add();

//Get the date and time from the form

string dateLine = DailyReportText.Lines[0];

int index = dateLine.IndexOf(":");

int lastIndex = dateLine.Length-1;

string date = dateLine.Substring(index+1, lastIndex-index);

//Get the created by

SPUser currentUser = qaWeb.CurrentUser;

//Take the value into colume

string DataAndTime = date.ToString();

string Description = DailyReportText.Text.ToString();

try

{

string dateFormat = "yyyy/MM/dd";

DateTime SPdate = DateTime.ParseExact(date, dateFormat, CultureInfo.CurrentCulture, DateTimeStyles.None);

//ToShortDateString is important for format

item["Date and Time"] = SPdate.ToShortDateString();

}

catch (Exception)

{

MessageBox.Show("TimeFormat is not right!");

}

try

{

item["Description"] = Description;

}

catch (Exception)

{

MessageBox.Show("Description is not right!");

}

item["Created By"] = currentUser;

try

{

item.Update();

}

catch (Exception ex)

{

MessageBox.Show("Item update Exception!");

MessageBox.Show(ex.ToString());

}

}

}

}

catch (Exception ex)

{

MessageBox.Show(ex.ToString());

}

}

}

}

附上一张SharePoint中生成item的图片:

DailyReport自动保存工具的更多相关文章

  1. 【工具】Sublime Text 自动保存功能

    经常需要所以要频繁用到"ctrl+s"保存还是挺麻烦的,所以有的人需要用到失去焦点自动保存功能,这里简单记录下 1.点击"Preferences"里的设置-用户 ...

  2. 微信小程序 vscode 自动保存 保存自动编译 微信开发者工具崩溃

    修改vscode的自动保存延迟时间,将 auto save delay 选项 修改的长一点.

  3. sublime如何自动保存

    sublime是前端开发者喜欢使用的工具,它有很多快捷方式可以让我们快速的编写代码:在开发过程中,每次修改代码之后都要按Ctrl+S保存.在这里向大家介绍一下如何设置让它自动保存. 一.打开subli ...

  4. ArcGIS Add-in——自动保存编辑

    需求:由于初次使用ArcGIS编辑器不习惯.数据量大造成经常程序未响应.计算机断电等因素,造成编辑的数据没有保存,影响了生产效率,本人根据草色静然的博文,总结了自动保存编辑的实现方法. 分析:自动保存 ...

  5. 好用的SQLSERVER数据库自动备份工具SQLBackupAndFTP(功能全面)

    转载:http://www.cnblogs.com/lyhabc/p/3322437.html 挺好用的SQLSERVER数据库自动备份工具SQLBackupAndFTP(功能全面) 这个工具主要就是 ...

  6. .NET DLL 保护措施应用实例(百度云批量保存工具)

    最近做了个小工具,将保护措施思路全部应用到了此工具中. 点我下载   百度云批量保存工具是一款专门用于自动批量保存百度云分享的软件. 本软件特点:1:完全模拟人工操作:2:可以批量保存百度分享的文件( ...

  7. iOS 本地自动打包工具

    1.为什么要自动打包工具? 每修改一个问题,测试都让你打包一个上传fir , 你要clean -> 编译打包 -> 上传fir -> 通知测试.而且打包速度好慢,太浪费时间了.如果有 ...

  8. 转:Grunt:任务自动管理工具

    Grunt:任务自动管理工具 来自<JavaScript 标准参考教程(alpha)>,by 阮一峰 目录 安装 命令脚本文件Gruntfile.js Gruntfile.js实例:gru ...

  9. 挺好用的SQLSERVER数据库自动备份工具SQLBackupAndFTP(功能全面)

    原文:挺好用的SQLSERVER数据库自动备份工具SQLBackupAndFTP(功能全面) 挺好用的SQLSERVER数据库自动备份工具SQLBackupAndFTP(功能全面) 这个工具主要就是自 ...

随机推荐

  1. poj 题目分类(2)

    初期: 一.基本算法: (1)枚举. (poj1753,poj2965) (2)贪心(poj1328,poj2109,poj2586) (3)递归和分治法. (4)递推. (5)构造法.(poj329 ...

  2. 实验一 操作系统模仿cmd

    实验一.命令解释程序的编写 专业:商软(2)班   姓名:王俊杰  学号:201406114252 一.        实验目的 (1)掌握命令解释程序的原理: (2)掌握简单的DOS调用方法: (3 ...

  3. ansible自动化运维工具的安装与使用

    运行环境 centOS6.6 ansible ansible的功能还是比较多的,博主只用它在集群上进行批量部署软件和维护的功能,其他不多做研究,有需要的话这篇文章会慢慢补充. ansible特点 轻量 ...

  4. ppaer 67 : matlab 函数errorbar

    MATLAB ERRORBAR 这个函数的意思是:ERRORBAR(X,Y,L,U),X是自变量,Y是因变量,L是Y的变动下限,U是Y的变动上限 errorbar(X,Y,E)  X是自变量,Y是因变 ...

  5. 夺命雷公狗---Thinkphp----15之遍历出来的栏目页的完成

    我们首页的写法和我们的文章页的代码很相似,我们要在点击我们的栏目页的时候遍历出对应的代码: 那么我们就直接来创建一个ListsController.class.php的文件,代码如下所示: 老规矩遍历 ...

  6. python3使用csv模块读写csv文件

    python3使用csv模块读写csv文件 读取csv文件: import csv #打开文件,用with打开可以不用去特意关闭file了,python3不支持file()打开文件,只能用open() ...

  7. Parse_ini_file

    parse_ini_file() 函数解析一个配置文件,并以数组的形式返回其中的设置. 注释:本函数可以用来读取你自己的应用程序的配置文件.本函数与 php.ini 文件没有关系,该文件在运行脚本时就 ...

  8. Java中的get()和set()方法

    对于JAVA初学者来说,set和get这两个方法似乎已经很熟悉了,这两个方法是JAVA变成中的基本用法,也是出现频率相当高的两个方法. 如果你对于这两个方法还有困惑甚至完全不知道这两个方法是做什么的, ...

  9. 在CentOS 6 32/64 上安装 PPTP 方式 VPN 服务

    网上有很多步骤, 讲了很多步骤,废话, 其实不如直接看代码, 而且也能直接运行,快速安装: rm -f /etc/pptpd.conf rm -f /etc/ppp arch=`uname -m` # ...

  10. git-gui

    使用Git.Git GUI和TortoiseGit http://zengrong.net/post/1722.htm 但云桌面不能安装,则TortoiseGit不能使用! 只能想到用totalcmd ...