Generated Image
上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using Microsoft.Win32;.............. private void bu... 阅读全文
posted @ 2007-02-12 21:19 桂圆 阅读(1599) 评论(4) 推荐(0) 编辑
摘要: 首先我们要将窗口类继承于 System.Windows.Forms.Form, IMessageFilter namespace WindowsApplication1{ public partial class Form1 : System.Windows.Forms.Form, IMessageFilter { public Form1() { ... 阅读全文
posted @ 2007-02-12 21:09 桂圆 阅读(850) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System.Runtime.InteropServices; ......[STAThread] ... 阅读全文
posted @ 2007-02-12 15:44 桂圆 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 只需拽个 Timer 然后双击 创建一个事件 private void timer1_Tick(object sender, System.EventArgs e) {//移动程序窗体位置 int ScreenWidth=SystemInformation.PrimaryMonitorMaximizedWindowSize.Width; ... 阅读全文
posted @ 2007-02-12 15:34 桂圆 阅读(527) 评论(0) 推荐(0) 编辑
摘要: static void Main() { Application.Run(new Form1()); } [System.Runtime.InteropServices.DllImport("gdi32")] private static extern IntPtr CreateFont(int H,in... 阅读全文
posted @ 2007-02-12 12:38 桂圆 阅读(711) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, System.EventArgs e) {//保存为EXCEL文件 if(this.listView1.Items.Count0) { MyRange =MyWorkSheet.get_Range("A2",M... 阅读全文
posted @ 2007-02-12 12:27 桂圆 阅读(826) 评论(1) 推荐(0) 编辑
摘要: private void button1_Click(object sender, System.EventArgs e) {//英文输入 this.richTextBox1.Focus(); for(int i=65;i<91;i++... 阅读全文
posted @ 2007-02-11 22:30 桂圆 阅读(1834) 评论(0) 推荐(0) 编辑
摘要: 首先我们从工具栏中添加一个COM控件 Shockwave Flash Object 把界面弄下 拽一个Shockwave Flash Object 控件 再看下代码 private void button1_Click(object sender, System.EventArgs e) {//浏览FLASH文件 if(this.openF... 阅读全文
posted @ 2007-02-11 22:14 桂圆 阅读(1943) 评论(0) 推荐(0) 编辑
摘要: 我们先从工具栏中添加一个COM组件 RealPlayer G2 Control 当然 你机子中得装有RealPlayer 然后就开始画界面吧 再来看下代码 private void button1_Click(object sender, System.EventArgs e) {//浏览RealPlayer文件 if(this.openFileDialo... 阅读全文
posted @ 2007-02-11 22:07 桂圆 阅读(746) 评论(0) 推荐(0) 编辑
摘要: 使用工具箱中 组件中的FileSystemWatcher 控件 看下 对它的说明 public class FileSystemWatcher : System.ComponentModel.Component System.IO 的成员 摘要: 侦听文件系统更改通知,并在目录或目录中的文件发生更改时引发事件。 再来看下代码的处理 private vo... 阅读全文
posted @ 2007-02-11 21:30 桂圆 阅读(1483) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页