11 2008 档案

摘要:源代码: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;namespace 串口通信{ public partial class frmMain : Form { public frmMain() { InitializeComponent(); } public int iPort. 阅读全文
posted @ 2008-11-27 09:13 灵雨飘零 阅读(1635) 评论(0) 推荐(0)
摘要:以下是我最近做项目的时候遇到了关于ModalPopup的使用实例,解决了一些技术难题,详细见源代码解决了打开网页的时候ModalPopup闪烁出现的现象,以及TargetControlID后台代码不被执行的问题。 前台代码:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTM 阅读全文
posted @ 2008-11-27 09:06 灵雨飘零 阅读(613) 评论(0) 推荐(0)
摘要:最近从网上搜集了好多视频教程和电子书下载的网站,感觉挺不错的,而且资源都是免费的,尽然还有某些网站的VIP资源,呵呵太爽了,欣喜之余与大家分享!!电子书源代码下载:http://kingboy.cc.topzj.com/forum-42190-1.html视频下载:http://kingboy.cc.topzj.com/forum-42191-1.html 阅读全文
posted @ 2008-11-24 09:01 灵雨飘零 阅读(191) 评论(0) 推荐(0)
摘要:keyit.focus();}1、什么是ArrayListArrayList就是传说中的动态数组,用MSDN中的说法,就是Array的复杂版本,它提供了如下一些好处:动态的增加和减少元素;实现了ICollection和IList接口;灵活的设置数组的大小。2、如何使用ArrayList最简单的例子:ArrayListList=newArrayList();for(inti=0;i<10;i++)//给数组增加10个Int元素 List.Add(i);//..程序做一些处理List.RemoveAt(5);//将第6个元素移除for(inti=0;i<3;i++)//再增加3个元素 阅读全文
posted @ 2008-11-04 22:15 灵雨飘零 阅读(367) 评论(0) 推荐(0)