-
屏幕分辨率检测和设置的例子
屏幕分辨率检测和设置的例子-screen resolution detection and set an example
- 2022-01-21 18:30:00下载
- 积分:1
-
简单的计算器程序,能够进行科学计算,即输入表达式之后可以得到结果,而且支持sin,cos,ln等的计算...
简单的计算器程序,能够进行科学计算,即输入表达式之后可以得到结果,而且支持sin,cos,ln等的计算-Simple calculator program, to carry out scientific computing, that is, after the importation of expression can be the result of, and support the sin, cos, ln, such as the calculation of
- 2022-08-14 16:17:16下载
- 积分:1
-
visual basic TCP routing sample programming
visual basic TCP routing sample programming
- 2022-11-26 07:30:03下载
- 积分:1
-
a submerged platform equipment under the usb driver with embdedc 4. 0 developmen...
一个基于wince潜入式平台的设备下的usb的驱动程序,用embdedc++4。0开发的,对于初学wince的人来说有参考利用的价值,类似于windows编程的代码风格-a submerged platform equipment under the usb driver with embdedc 4. 0 development, the weights for beginners who are using the reference value, similar to windows programming code style.
- 2022-08-18 10:17:09下载
- 积分:1
-
深入VC编程内幕
深入VC编程内幕-VC-depth programming insider
- 2023-05-27 07:30:03下载
- 积分:1
-
AT89S系列单片机在线下载程序,感兴趣的可以使用,我们实验室用的就是这个。...
AT89S系列单片机在线下载程序,感兴趣的可以使用,我们实验室用的就是这个。-MCS AT89S download online, interested in can be used, we used in this laboratory.
- 2022-03-02 11:53:32下载
- 积分:1
-
用C++编写的一个计算机小程序,实现简单的计算功能
用C++编写的一个计算机小程序,实现简单的计算功能-Using C++ to prepare a computer applet
- 2022-04-07 17:44:57下载
- 积分:1
-
移动固定资产管理
基于WINDOWS MOBILE平台
移动固定资产管理
基于WINDOWS MOBILE平台-Mobile fixed assets management platform based on WINDOWS MOBILE
- 2022-03-21 21:59:38下载
- 积分:1
-
数据结构的两张上机题目,全部通过,没有错误.
数据结构的两张上机题目,全部通过,没有错误.-data on the structure of the two-topic, all passed, no errors.
- 2022-08-26 06:14:42下载
- 积分:1
-
采用 Windows 表单的简单计算器
翻译 maninwest@Codeforge作者:Yvan Rodrigues@CodeProject 使用代码 using System;
using System.Windows.Forms;
namespace RedCell.App.Calculator.Example
{
public partial class Form1 : Form
{
private double accumulator = 0;
private char lastOperation;
public Form1()
{
InitializeComponent();
}
private void Operator_Pressed(object sender, EventArgs e)
{
// An operator was pressed; perform the last operation and store the new operator.
char operation = (sender as Button).Text[0];
- 2022-06-29 09:36:47下载
- 积分:1