随笔分类 - WIN FORM(c#)
摘要:WinForm企业应用框架设计【一】界限划分与动态创建WCF服务(no svc!no serviceActivations!)WinForm企业应用框架设计【二】团队内部的约定和客户端按约定识别WCF服务WinForm企业应用框架设计【三】框架窗体设计;动态创建菜单;WinForm企业应用框架设计【四】动态创建业务窗体WinForm企业应用框架设计【五】系统登录以及身份验证+源码先来张图片!我们这个系列就是要做一个这样的框架!我曾写过几个“系列”的东西,如 PL/SQL学习笔记 ;T-SQL学习笔记(这是CSDN的精华帖);jquery框架分析jquery框架分析写了一篇就被我送进了“净身房”
阅读全文
摘要:客户端代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.ServiceProcess;using System.Text;using System.Threading;using System.Management;using System.Configuration;using System.Net;using System.IO;namespace MON.WS{ publ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;using System.Xml;using System.IO;using System.IO.Compression;using System.Resources;using System.Net;using System.Web.S
阅读全文
摘要:using system;using system.runtime.interopservices;namespace myserviceinstaller{ class serviceinstaller { #region private variables private string _servicepath; private string _servicename; private string _servicedisplayname; #endregion private variables ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Text;using System.Diagnostics;using System.Threading;using System.Management;using System.Runtime.InteropServices;using System.Data;using System.Data.SqlClient;using System.DirectoryServices;using System.Collections;using System.Configuratio
阅读全文
摘要:程序说明:针对杭州市机动车驾驶员模拟培训预约难的问题,本人开发了此监视工具。此监视工具仅负责监视某段时间内在线预约网站是否可以预约模拟培训。只是提示用户某日可以预约,不会帮助用户进行预约,更不会收集用户的身份信息。使用说明: 使用前请先确认电脑可以访问互联网 使用前请先联系作者激活程序!作者QQ 4-1-2-5-8-8-8-0-11.选择监视截止日期(程序将监视当前时间与此日期之间的时间段)2.选择“阶段一”,“阶段二”(即你要预约那个阶段的模拟培训)3.点击开始监视,系统将执行监视。4.点击退出,系统将停止监视,并退出5.点击最小化到托盘,系统将继续监视并最小化到托盘。 如果在此时间段内,有
阅读全文
摘要:课程简要介绍:课程的重点是系统架构,穿插着讲到了一些技术细节和技术难点。课程假定学员有一定的C#知识,有一定的面向对象的知识。课程从无到有开发了一个呼叫中心的DEMO,并在课程的最后提供源码,整个课程依据作者架构设计的单价为30~50W的呼叫中心系统做讲解,此系统迄今为止仍在开发和完善的过程中(不断有新模块加入进来)。 涉及到的技术:VS2010、C#、.NET、SQLserver2008、windowsform 第1讲项目概述及项目功能演示第2讲DevExpress简要介绍第3讲创建WCF服务及服务封装隔离后端业务逻辑第4讲代理模式 第5讲ClickOnce部署系统 第6讲实现系统登录 第7
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.Interop.Excel;using System.Reflection;namespace ListToExcel{ class Program { static List<objtype> objs = new List<objtype>(); static void Main(string[] args) { objs.Add(new objtype()
阅读全文
摘要:1:下载文件 void runFile(SharedFile r) { var filepath = Path.Combine(Application.StartupPath, "Doc", r.FileName); if (File.Exists(filepath)) { if (r.Viewed) { System.Diagnostics.Process.Start(filepath); return; } else { File.Delete(filepath); } } dgSharedFile.Enabled = false; waitingFilePanel.V
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;using System.Text.RegularExpressions;namespace allen{ class Program { /// <summary> /// 根据网址取得HTML代码 /// </summary> /// <param name="url"></param> ...
阅读全文
摘要:这是针对Windows系统录音软件的小程序目的是把声音文件的频率转换的低一些尝试过用WINDOWS API来做这个事,结果失败了最后还是用程序操作EXE文件完成工作的代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--using System;usin...
阅读全文
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-- public partial class Form1 : Form { private Point oldPoint = new Point(0,0); public Form1() { Initi...
阅读全文
摘要:WCF发布到IIS,并有相应的SVC宿主文件客户端软件通过CLICK ONCE发布到WCF的相同目录下本例实现了:客户端自动发现WCF服务的功能 1 不通过配置文件绑定WCF服务 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--ICallCente...
阅读全文
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->privatevoid allCtl(Control ctl) { foreach (Control c in ctl.Controls) { if (c.Controls.Count <1) { //do what you want;brea...
阅读全文
摘要:先来个图片:再上代码代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--using System;using System.Collections.Generic;using System.ComponentModel;using System.Dat...
阅读全文
摘要:1首先在你的项目中要添加一个报表文件(扩展名为rdlc)然后通过VS的可视化对其进行控件的添加和布局如图:其中的textbox的位置都是以厘米为单位的对打印来说非常方便2针对报表添加一系列的参数如图:3打印相关的工具类using System;using System.Collections.Generic;using System.Linq;using System.Text;using Mic...
阅读全文
摘要:1程序用到了第三方的DevExpress控件2属性[代码]3构造函数[代码]4创建控件[代码]5准备控件[代码]6控件选择项变更的事件[代码]7显示控件[代码]8获取选中的值和文本[代码]至此完成有机会在VS2008里不用任何第三方皮肤和控件再做一遍分享给网友吧
阅读全文
摘要:通过动态创建批处理文件把程序运行的当前目录下的所有文件全部删除CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.IO;usingSystem.Configuration;usingSystem.Runtime.InteropServices;usingSyst
阅读全文
摘要:先来张图片请稍候的窗体就是我要说的闪屏了实现这个效果有很多种办法1 Application.Idle +=new EventHandler(Application_Idle);2 异步执行方法3 异步线程我用的第三种1先做一个闪屏窗体 你在上图中看到的闪屏用到了第三方控件名字叫:DevExpress2写一个公开的方法显示闪屏[代码]3在需要闪屏的地方注册闪屏[代码]注意t.Join()是必须的不然...
阅读全文
摘要:目前仅支持HTTP协议下一步的工作是支持FTP协议再下一步的工作是对原始URL进行智能分析发此文以抗议像吉日兄这样的总监或者老板[代码]
阅读全文