上一页 1 2 3 4 5 6 ··· 12 下一页

2021年11月30日

实现 HTML页面 Table 标签分页打印

摘要: <html> <head> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> < 阅读全文

posted @ 2021-11-30 21:35 wangzhiliang 阅读(3073) 评论(0) 推荐(0)

2021年10月19日

Windows IPC 连接详解(转)

摘要: 前言最近在看一些渗透测试的教程。打算把一些东西实践实践,加深一下印象! 今天就来看看IPC连接。虽然很老,但是很经典。 正文什么是IPC? IPC(Internet Process Connection)是共享"命名管道"的资源,它是为了让进程间通信而开放的命名管道,可以通过验证用户名和密码获得相应 阅读全文

posted @ 2021-10-19 10:33 wangzhiliang 阅读(2328) 评论(0) 推荐(0)

2021年7月9日

MFC 参考资料(转)

摘要: //统计多字节长度 int num = 0; char * p = "test"; num = strlen(p); //统计宽字节字符串 wchar_t *p = L"test"; int num = wcslen(p); // char *转CString char * p = "test"; 阅读全文

posted @ 2021-07-09 17:41 wangzhiliang 阅读(101) 评论(0) 推荐(1)

2021年2月24日

.net core 下运行 supersocket

摘要: using System; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Loggi 阅读全文

posted @ 2021-02-24 16:50 wangzhiliang 阅读(1574) 评论(0) 推荐(0)

2021年2月2日

C# 发送 get 请求

摘要: using System; using System.IO; using System.Net; using System.Text; using System.Threading; using System.Timers; using Topshelf; namespace ConsoleApp1 阅读全文

posted @ 2021-02-02 22:35 wangzhiliang 阅读(4095) 评论(0) 推荐(0)

2021年1月6日

SQL 中 char nchar varchar nvarchar 的区别

摘要: 在 SQL Server 中,对数据类型 char nchar varchar nvarchar 测试: CREATE TABLE [dbo].[TestChar]( [content] [char](10) NULL, [content1] [nchar](10) NULL, [content2] 阅读全文

posted @ 2021-01-06 10:35 wangzhiliang 阅读(82) 评论(0) 推荐(0)

2020年11月20日

通过 RS485 与读卡器通信

摘要: using NLog; using System; using System.IO.Ports; using System.Text; using System.Threading; namespace TestCom485 { class Program { static void Main(st 阅读全文

posted @ 2020-11-20 15:43 wangzhiliang 阅读(447) 评论(0) 推荐(0)

2020年11月18日

c++ 基础知识《C++ GUI QT4编程》附录

摘要: //在 vs 中调试 c++ 程序时输出变量的值 //1.输出字符串 CString str = "abc"; OutputDebugString(str); OutputDebugString("\n"); //2.输出整数 int i = 100; char c[10]; int len = s 阅读全文

posted @ 2020-11-18 13:36 wangzhiliang 阅读(114) 评论(0) 推荐(0)

2020年4月25日

网络资源链接

摘要: .NET 资源:https://docs.microsoft.com/zh-cn/https://github.com/quozd/awesome-dotnet深图外链资源库:https://er.szlib.org.cn/rwt/VIPE/http/NSVXELUXNFZGK8DBNVYG86UH 阅读全文

posted @ 2020-04-25 10:45 wangzhiliang 阅读(967) 评论(0) 推荐(0)

2020年3月25日

python 示例(摘抄)

摘要: # 计算一元二次方程的根 import math while True: a = float(input('Enter coefficient a: ')) b = float(input('Enter coefficient b: ')) c = float(input('Enter coeffi 阅读全文

posted @ 2020-03-25 17:25 wangzhiliang 阅读(234) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 12 下一页

导航