-
SPC Xbar -R 控制图
翻译 maninwest@Codeforge 作者:syed shanu@CodeProject 使用 C# 创建 Xbar -R 控制图 使用代码1) 首先从User Control 开始。要创建一个用户控件:1创建一个新的 Windows Control 库项目2设置项目名称并单击 Ok(我的用户控件名称是 SHANUXbarRangeChart).3添加所有需要的控件4在代码中声明了所有 public 变量和 Public 方法。在用户控件中,我添加了一个面板和一个 PictureBox 控件 "PIC_SHANUSPC" //Public Variable
public DataTable dt=new DataTable();
Font f12 = new Font("arial", 12, FontStyle.Bold, GraphicsUnit.Pixel);
Pen B1pen = new Pen(Color.Black, 1);
Pen B2pen = new Pen(Color.Black, 2);
Double XDoublkeBAR = 0;
Double RBAR = 0;
Double XBARUCL = 0;
Double XBARLCL = 0;
- 2023-02-07 04:10:03下载
- 积分:1
-
VC++下https通讯实现
VC++下HTTPS通讯的实现
通过VC++,TCP访问HTTPS接口,实现与https服务器进行数据交互,可以进行GET,Post操作
- 2023-06-14 12:20:03下载
- 积分:1
-
C# 根据路径使用DirectoryInfo创建文件夹
C# 根据路径创建文件夹,具体来说是使用DirectoryInfo对象的Create方法创建文件夹【目录】。如果用户未指定路径,则在程序当前目录下创建文件夹,若指定路径,则在指定的路径层级下创建目录。
在创建开始前,对用户输入的目录名或路径格式进行验证,然后判断该路径下是否存在该目录,最后创建文件夹。下面是相关的代码:
if (textBox1.Text == string.Empty)//判断输入的文件夹名称是否为空
{
MessageBox.Show("文件夹名称不能为空!");
}
else
{
DirectoryInfo dinfo = new DirectoryInfo(textBox1.Text);//实例化DirectoryInfo类对象
if (dinfo.Exists)//使用DirectoryInfo对象的Exists属性判断要创建的文件夹是否存在
{
MessageBox.Show("该文件夹已经存在");
}
else
{
dinfo.Create();//使用DirectoryInfo对象的Create方法创建文件夹
}
}
- 2023-02-21 06:20:03下载
- 积分:1
-
1.5Kw_PFC
氮化镓实现的无桥FPC电路和设计资料,效率可以达到99.4 (Bridge-less FPC circuit and design information)
- 2017-02-04 16:41:49下载
- 积分:1
-
用C#开发,实现定时关机和延时关机功能。
实现 C# 对Windows API的调用。...
用C#开发,实现定时关机和延时关机功能。
实现 C# 对Windows API的调用。-C# development and timing delay shutdown and shutdown functions. Implementation of C# Windows API call.
- 2022-01-24 14:05:41下载
- 积分:1
-
定时器中断控制小车LED
这是有led的亮灭并用定时器控制中断的程序
- 2022-03-28 14:46:15下载
- 积分:1
-
参考程序1
这是ADS1256的stm32f103系列的程序 有用的可以参考(This is a useful reference for the ADS1256 stm32f103 series of procedures)
- 2020-06-18 05:00:02下载
- 积分:1
-
3_6-Ackerman
Ackeman函数的递归方法,运用简洁的递归思想实验复杂数学表达式的计算(Ackeman function recursive method, the use of simple recursive thought experiment to calculate complex mathematical expressions)
- 2015-03-30 16:32:20下载
- 积分:1
-
Telephone-Billing-System
Telephone billing system in c++ code working
- 2014-09-06 19:56:30下载
- 积分:1
-
PSO-calculation
利用改进粒子群算法,求解电力系统最优潮流问题,具有较快的收敛速度和精度,并有文献说明。(The improved particle swarm algorithm to solve the optimal power flow problem, has a faster convergence speed and accuracy, and described in the literature.)
- 2015-04-15 17:16:07下载
- 积分:1