会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
卿本佳人14
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
22
下一页
2022年5月11日
VS编译Qt遇到无法运行rc.exe问题
摘要: 我将Linux版本的QT放到Windows环境下编译,出现了运行rc.exe报错的问题 解决 1、查看自己qt项目的版本如:x86、x64版本。 2、用EveryThing搜索rc.exe、rcdll.dll将这两个文件放置到报错的文件夹中(注意要分清楚版本,x86就拷贝x86版本的,x64就拷贝x
阅读全文
posted @ 2022-05-11 16:20 黄立明02
阅读(368)
评论(0)
推荐(0)
2022年3月26日
类型“MainForm”已定义了一个名为“MainForm”的具有相同参数类型的成员
摘要: 这个不知道是什么垃圾玩意导致的这种错误 解决方式如下 他妈的只需要看这个玩意就行了,出现问题前我这里MainForm.cs下面有4个这个东西,最后一个东西是MainForm.resx下面的 名称是MainForm1.Designer.cs 还是其他的玩意,忘记了, 解决方式就是删掉他妈的这个Main
阅读全文
posted @ 2022-03-26 12:08 黄立明02
阅读(367)
评论(0)
推荐(0)
2022年2月17日
获取http的cookies
摘要: CookieContainer cookies; string strCookie = cookies?.GetCookieHeader(uri).Replace("%2C", ",");
阅读全文
posted @ 2022-02-17 10:01 黄立明02
阅读(185)
评论(0)
推荐(0)
Task[ ]异步操作
摘要: Task[] tasks = new Task[3]; tasks[0] = new Task(() => { SocketPackage socketPackage = ClassWeb.HttpRequest(UpdateFile.updateUrl + UpdateFile.exeFile +
阅读全文
posted @ 2022-02-17 09:23 黄立明02
阅读(32)
评论(0)
推荐(0)
线程带参数
摘要: Thread thread = new Thread(new ThreadStart(() => UpdateFile.Start(false, this))) { IsBackground = true }; thread.Start();
阅读全文
posted @ 2022-02-17 09:14 黄立明02
阅读(11)
评论(0)
推荐(0)
线程池
摘要: ThreadPool.QueueUserWorkItem(delegate { RestartService("EABackgroundService"); })
阅读全文
posted @ 2022-02-17 09:11 黄立明02
阅读(19)
评论(0)
推荐(0)
2022年2月16日
只能保证唯一一个程序运行
摘要: Process instance = RunningInstance(); if (instance == null) { if (args != null && args.Length >= 1 && args[0] == "Startup") { Form1.bStartup = true; u
阅读全文
posted @ 2022-02-16 16:39 黄立明02
阅读(60)
评论(0)
推荐(0)
2022年2月10日
线程间操作winform
摘要: public void GlobaltoShow() { label9.BeginInvoke(new System.EventHandler(setTotalLabel), Convert.ToString(Global.ChuCurrMax)); label10.BeginInvoke(new
阅读全文
posted @ 2022-02-10 16:37 黄立明02
阅读(32)
评论(0)
推荐(0)
2021年11月11日
C++
该文被密码保护。
阅读全文
posted @ 2021-11-11 14:30 黄立明02
阅读(0)
评论(0)
推荐(0)
2021年10月22日
C++ 基础命名空间 using namespace std;
摘要: using namespace std;
阅读全文
posted @ 2021-10-22 09:47 黄立明02
阅读(16)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
22
下一页
公告