-
联系人管理实例源码下载
联系人管理实例源码下载
- 2014-07-29下载
- 积分:1
-
VCdiary
一个基于对话框的日记本小程序。以前在VC知识库中找基于对话框的序列化存储的程序一直没有找到,就自己做了一个。用到了链表和序列化,在对话框中使用工具栏,希望对大家有所帮助。首先,定义一个自己的结构体类,用来存储将要保存的信息。(a dialog based on the diary of the small procedures. In the past, VC knowledge base based on the dialog box to find the sequence of stored procedure has not been found, it had become one. Listless and used in the sequence, in the dialog box using the tool column, we hope to help. First, a definition of the structure type, will be used to store the information stored.)
- 2006-08-15 22:58:35下载
- 积分:1
-
C# 中文简体繁体转换小程序源码
Visual C# 简繁体转换,实现中文汉字的简体繁体转换功能,相信这个C#小程序源码会很实用吧,经常用到。编译运行后,请输入要转换的文字,单击对应的按钮,即可实现转换功能,绑定在对应按钮上的代码如下:
C#中文繁体转简体源码:
private void button1_Click(object sender, EventArgs e)
{
string src = txtSrcText.Text.Trim();
byte[] srcByte = Encoding.Default.GetBytes(src);
byte[] desByte = new byte[srcByte.Length];
LCMapString(2052, LCMAP_SIMPLIFIED_CHINESE, srcByte, -1, desByte, srcByte.Length);
string des = Encoding.Default.GetString(desByte);
txtDesText.Text = des;
}
C#中文简体转繁体源码:
private void button2_Click(object sender, EventArgs e)
{
string src = txtSrcText.Text.Trim();
byte[] srcByte = Encoding.Default.GetBytes(src);
byte[] desByte = new byte[srcByte.Length];
LCMapString(2052, LCMAP_TRADITIONAL_CHINESE, srcByte, -1, desByte, srcByte.Length);
string des = Encoding.Default.GetString(desByte);
txtDesText.Text = des;
}
- 2022-03-12 07:23:03下载
- 积分:1
-
找零钱
说明: 找零钱问题:有6种面值的货币(100,50,20,10,5,1),给定一个钱的数目x,要求用最少的货币数目表示,相同面值的货币可以多次出现。(Change-finding:There are 6 denomination currencies, given the number of money, express it with the smallest number of currencies.)
- 2020-04-26 14:14:21下载
- 积分:1
-
STM32_EXTI
STM32单片机开发例程,这里是外部中断的开发例程(STM32 MCU development routines, here is the development of the external interrupt routine)
- 2014-04-13 16:48:03下载
- 积分:1
-
DLMSMeter_protocal
DLMS电能表通信协议,国际通行标准
解释了在应用中可能出现的大多数情况(DLMS Power Meter Communication Protocol, the international accepted standard explanation of the application which might arise in most cases)
- 2007-07-08 19:39:27下载
- 积分:1
-
genetic
理解普通的遗传算法和佳点集遗传算法的基本思想和不同点,用遗传算法测试一标准函数。佳点集算法测试一标准函数,理解普通的遗传算法和佳点集遗传算法的基本思想和不同点(Understanding of the general genetic algorithm and good point set genetic algorithm' s basic idea and the different points, by using genetic algorithms to test a standard function. Good Point Set Algorithm 1 standard test function, the general understanding of the genetic algorithm and good point set genetic algorithm' s basic idea and the different points)
- 2009-03-27 19:57:19下载
- 积分:1
-
MSN 仿真界面全部源代码 MSN
MSN 仿真界面全部源代码,非常漂亮,值得参考!(MSN simulation interface all the source code, very beautiful, it is also useful!)
- 2020-06-26 01:00:02下载
- 积分:1
-
CAN
基于 瑞萨 RL78系列 R5F10DPJJ的 CAN总线通信例程,
包括 CAN初始化,报文接收和 发送(CAN bus routines, based on Renesas RL78 series R5F10DPJJ)
- 2018-08-04 14:22:28下载
- 积分:1
-
matlab-command-window
用编程的方式修改MATLAB命令窗口的前景色和背景色(Programmatically modify the MATLAB command window to the foreground and background colors)
- 2013-04-15 21:15:46下载
- 积分:1