c#技術 My
黄贤秋
12年软件开发经验
展开
-
C#操作Blob類型數據技術
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.OracleClie原创 2010-03-28 18:11:00 · 834 阅读 · 0 评论 -
使用C#获取WinCE系统中的内存状态及系统状态
<br />一直想取得WinCE5.0系统中的内存状态和系统状态,却苦于不得其法。使用Google一路疯寻乱找,终于找到两篇参考文章,写成下面的测试程序。实现步骤是,使用VS2005新建一个WinCE应用程序项目并添加一个Form. 然后在Form中拖入两个ListBox, 分别命名为listBox1, listBox2。再拖入两个Button,分别命名不btnGet, btnExit, 之后双击它们添加事件,全部代码如下:<br />using System;<br />using System.Coll转载 2011-05-30 21:36:00 · 982 阅读 · 0 评论 -
c#中Marshal.Copy方法的使用
解决的问题:复制数组在内存中的数据到自定义结构中。 类似功能: 在C++中 原型:extern void *memcpy(void *dest, void *src, unsigned int count); 功能:由src所指内存区域复制count个字节到dest所指内存区域。 在c#中Marshal.Copy可以实现类似功能。 需要引原创 2011-06-03 15:25:00 · 5054 阅读 · 0 评论 -
c#限制程序只能运行一个实例
using System;using System.Collections.Generic;using System.Runtime.InteropServices;using System.Windows.Forms;using System.Diagnostics;using System.Reflection; namespace SystemTray...原创 2019-02-27 16:49:35 · 242 阅读 · 0 评论 -
c# 程序只能运行一个实例
程序只能运行一个程序 using System;using System.Collections.Generic;using System.Runtime.InteropServices;using System.Windows.Forms;using System.Diagnostics;using System.Reflection; namespace S原创 2011-11-22 22:09:03 · 615 阅读 · 0 评论 -
c#多线实例
using System;using System.Threading;using System.Text;namespace ControlThread{ class Program { private static void DisplayMessage() { // 在控制台上重复显示一条消息.原创 2011-11-26 18:14:34 · 555 阅读 · 0 评论 -
MSComm控件进行串口编程步骤
MSComm控件进行串口编程步骤:1. 在建立的程序工程中插入MSComm控件。2. 添加MSComm控件ID 的控制变量(或者对象)。3. 对串口进行初始化,设置MSComm控件的属性。4. 添加串口事件的消息处理函数OnComm()函数,在函数中根据应用需要,编写数据处理代码5. 编写串口发送等其他代码。6.转载 2015-12-01 11:01:01 · 670 阅读 · 0 评论