-
java swing 上传文件源码
package test;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Win extends JFrame {
JButton jb = new JButton("上传");
public Win() {
jb.addAction
- 2022-03-25 22:46:16下载
- 积分:1
-
qt计算器
在一般的计算机上加了几个运算,如算幂,阶乘等,还有三角函数,其中不是用的UI,而是手写出的界面
- 2022-04-07 01:08:27下载
- 积分:1
-
应用于MFC的窗口分割
If your application uses MFC in a shared DLL, and your applicat...
应用于MFC的窗口分割
If your application uses MFC in a shared DLL, and your application is
in a language other than the operating system s current language, you
will need to copy the corresponding localized resources MFC40XXX.DLL
from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation.
For example, MFC40DEU.DLL contains resources translated to German.) If you
don t do this, some of the UI elements of your application will remain in the
language of the operating system.-MFC application partition window If your application uses MFC in a shared DLL, and your application is in a language other than the operating system" s current language, you will need to copy the corresponding localized resources MFC40XXX.DLL from the Microsoft Visual C++ CD- ROM onto the system or system32 directory, and rename it to be MFCLOC.DLL. ( " XXX" stands for the language abbreviation. For exam
- 2022-04-26 15:45:34下载
- 积分:1
-
MFC进程之间的单管道传输
资源描述
进程之间的单管道数据传输
操作平台:win10+vs2013 pro
运行结果:
1、字符与宽字符之间的转换
//宽字符转字符
void TcharToChar(const TCHAR * tchar, char * _char)
{
int iLength;
//获取字节长度
iLength = WideCharToMultiByte(CP_ACP, 0, tchar, -1, NULL, 0, NULL, NULL);
//将tchar值赋给_char
WideCharToMultiByte(CP_ACP, 0, tchar, -1, _char, iLength, NULL, NULL);
}
//字符转宽字符
void CharToTchar(const char * _char, TCHAR * tchar)
{
int iLength;
iLength = MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, NULL, 0);
MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, tchar, iLength);
}
2、创建进程及单管道传输
void CDemoDlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
//管道相关
HANDLE hPWrite, hPRea
- 2022-03-06 10:20:16下载
- 积分:1
-
c++builder设计鼠标游戏
应用背景利用c++ builder 6.0事件消息完成鼠标点击消息,完成游戏的综合实例,在该实例中,将综合学习鼠标的操作和各种组件的使用。关键技术通过测定鼠标的落点,来判断随机出现的苍蝇是否被砸死。例如点击鼠标左键或右键,完成事件的响应。
- 2022-11-05 03:45:02下载
- 积分:1
-
Apriori algo working
;
- 2023-07-20 18:00:02下载
- 积分:1
-
QT和MFC和Win32窗口,混合使用,提供了一些在QT类可以我们…
Qt与MFC以及Win32窗口混合使用,提供的一些类能够在Qt中使用Win32窗口或在MFC中使用Qt-Qt with MFC and Win32 window, mixed use, providing some of the Qt classes can use Win32 or MFC window using Qt
- 2022-11-30 16:25:03下载
- 积分:1
-
一套比较完整的适合于数据库程序的界面(风格很酷)
一套比较完整的适合于数据库程序的界面(风格很酷)--A suit of program interfaces which are more fit for database
- 2022-09-01 22:00:03下载
- 积分:1
-
研究所信息系统
该项目名为研究所信息系统是一个基于PHP的Web应用程序的自动化学术机构的手动系统。该项目的特点是:1)更新和计算考试成绩2)维护和编辑学生记录3)维护和编辑老师记录4)发送通知给学生5)添加或删除课程6)编辑过程中的细节7)学院可以检查他们的工资细节8)和多该项目的用户界面已被使用CSS开发的。该项目提供流畅的网络接口,为用户使用,也是一个安装文件。要求:LAMP/ WAMP
- 2022-01-26 05:38:07下载
- 积分:1
-
是不是对专业软件里面的对话框工具条很感兴趣?其实我们自己也可以实现,看了程序,你会真的有专业程序员的感觉。...
是不是对专业软件里面的对话框工具条很感兴趣?其实我们自己也可以实现,看了程序,你会真的有专业程序员的感觉。-is right software tools inside the box is very interested in it? In fact, we ourselves will be achieved, reading program, you will really have the feeling of professional programmers.
- 2023-04-23 02:35:03下载
- 积分:1