上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Drawing;using System.Drawing.Imaging;using System.Runtime.InteropServices;namespace BallotAiying2...{ class UnCodebase ...{ public Bitmap bmpobj; public UnCodebase(Bitmap pic) ...{ bmpobj = new Bitm 阅读全文
posted @ 2010-07-08 17:20 ljlxyf 阅读(311) 评论(0) 推荐(0) 编辑
摘要: WebClient方法本身没有提供设定http请求响应超时时间的方法,我们需要重写该该类的GetWebRequest方法,代码如下。类名为 CGMWebClient.cs 可以根据自己的要求修改using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;namespace cvsFileUploadCommSub{ public class CGMWebClient : System.Net.WebClient { private int _timeOut 阅读全文
posted @ 2010-07-02 09:51 ljlxyf 阅读(721) 评论(0) 推荐(1) 编辑
摘要: 单个网页存放类 RssResponeObject.csusing System;using System.Collections.Generic;using System.Text;namespace BaseCommon.Rss{ public class RssResponeObject { //title400电话申请办理/title //linkhttp://www.my400800.cn/link //description400电话申请办理/description #region 构造函数 /// summary /// 构造函数 /// /summa 阅读全文
posted @ 2010-06-25 10:40 ljlxyf 阅读(244) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO.Ports;namespace communicationComm{ /******************************************************************************** //打开串口(打开串口后不能修改端口名,波特率等参数,修改参数要在串口关闭后修改) ****************************************** 阅读全文
posted @ 2010-04-29 17:28 ljlxyf 阅读(289) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.IO.Ports;usingSystem.ComponentModel;usingSystem.Threading;namespaceCserver{classToCom{privausing System; using System.Collections.Generic; using System.Text; using System.IO.Ports; using System.ComponentModel; using System.Thre 阅读全文
posted @ 2010-04-28 15:43 ljlxyf 阅读(565) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.Drawing.Imaging; namespace RealtimeCurve { /// SUMMARY /// 说明:实时图片生成类,在本例中横向坐标上每个像素都会有一个控制点 /// 实际开发中可以减少控制点,比如每5个像素用一个控制点 /// 这样的效果或许更加逼真 /// 作者:周公 /// 日期:2008-07-21 /// 首发地址:A href="http 阅读全文
posted @ 2010-04-28 15:41 ljlxyf 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 微软代码:取出本机的COM端口字符串public static string[] GetPortNames(){ RegistryKey localMachine = null; RegistryKey key2 = null;string[] textArray = null;//这里有个断言,判断该注册表项是否存在 new RegistryPermission(RegistryPermissionAccess.Read, @"HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM").Assert(); try { localMachine = R 阅读全文
posted @ 2010-04-28 15:37 ljlxyf 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 我用下述文章的第一种方法(Redirect)不能实现下载;用第二种方法在WINME下只能把要下载的文件打在页面上,而在其他操作系统(WIN2000,WINNT,WIN98,LINUX)下正常,不知问题出在哪里;不知有没有其他方法下载? 请高手指教,谢谢!!! ------------------------------------- 以下是我参照的文章: PHP实现文件下载 (马马 2001年09月28日 17:14) 你一定会笑我“下载文件”如此简单都值得说?当然并不是想你想象的那么简单。例如你希望客户要填完一份表格,才可以下载某一文件,你第一个想法一定是用 “Redirect”的方法, 阅读全文
posted @ 2010-04-15 10:48 ljlxyf 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 应用PNG图片的透明或半透明的特性能做出非常漂亮的网页来。Firefox和Opera对PNG的支持非常的好,都是IE却无视PNG图片这一特性的 “存在”,虽然IE7已经支持都是IE6还是不行。查了一些资料,基本解决了这一问题,准备应用到PJskin上。虽然有让IE6支持PNG透明背景的JS程序,都是不是很方便,还是用CSS来实现的好。使用到的就是:IE5.5+的AlphaImageLoader滤镜语法:filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSi 阅读全文
posted @ 2010-04-08 15:37 ljlxyf 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 在.NET中调用Web Service其实和创建Web Service一样简单。(完整代码示例位置:光盘\code\ch07\ WebAppClient)实现步骤如下。(1)首先我们创建一个ASP.NET Web 应用程序。(2)添加Web Service引用。在项目上单击鼠标右键,在弹出的快捷菜单中选择"添加Web 引用"命令,如图7-6所示,弹出"添加Web引用"对话框,如图7-7所示的窗口。图7-6 选择"添加Web引用"命令(点击查看大图)图7-7 "添加Web引用"对话框添加引用分以下3种情况。如果是本解决方案中的Web服务,则选第一个,程序会自动转向解决方案中的服务地址。如果是本计 阅读全文
posted @ 2010-04-08 13:35 ljlxyf 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页