上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 1.打开Nuget包管理器 2. 输入 Install-Package Costura.Fody -Version 3.3.0 3.之后Costura.Fody会嵌入到工程中,如果没有手动添加一下 4.之后重新编译工程 阅读全文
posted @ 2019-01-16 14:13 dozeoo 阅读(1213) 评论(0) 推荐(0) 编辑
摘要: 根据 在官网论坛上的反馈结果,程序自己有验证数字签名,数字签名验证不通过,即如上图所示。可能的原因:病毒;下载不完全;证书链出问题 阅读全文
posted @ 2018-12-13 09:02 dozeoo 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: Thank you for your interest in developing a plug-in for Adobe® Reader®. To build an Adobe Reader plug-in, you should apply for and obtain an Adobe Rea 阅读全文
posted @ 2018-11-26 14:47 dozeoo 阅读(501) 评论(0) 推荐(1) 编辑
摘要: https://www.drvsky.com/sort/908_1.htm 可以通过说明中的支持的独立显卡列表:,找到适合自己的版本 阅读全文
posted @ 2018-11-07 09:17 dozeoo 阅读(1747) 评论(0) 推荐(0) 编辑
摘要: 原文在:https://www.codeproject.com/Articles/28063/An-Extended-MFC-CListCtrl-to-edit-individual-cells listctrl的重写类,可以嵌入combobox,DateTimePicker,TextBox或者一个 阅读全文
posted @ 2018-11-06 16:34 dozeoo 阅读(1809) 评论(0) 推荐(0) 编辑
摘要: 插入图片 1 using System.IO; 2 using iTextSharp.text; 3 using iTextSharp.text.pdf; 4 5 class Program 6 { 7 static void Main(string[] args) 8 { 9 using (Str 阅读全文
posted @ 2018-09-01 21:38 dozeoo 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include <iostream> #include <windows.h> #include <comdef.h> #include <exdisp.h> #include <oledlg.h> using namespace std; // Const 阅读全文
posted @ 2018-07-14 09:25 dozeoo 阅读(528) 评论(0) 推荐(0) 编辑
摘要: #include <comdef.h> #include <comutil.h> #pragma comment(lib,"comsuppw.lib") _bstr_t b = bstrText; char* lpszText2 = b; 阅读全文
posted @ 2018-07-10 11:59 dozeoo 阅读(323) 评论(0) 推荐(0) 编辑
摘要: static char* MBSCToCEF(const char* mbcsStr) { wchar_t* wideStr; char* utf8Str; int charLen; charLen = MultiByteToWideChar(CP_UTF8, 0, mbcsStr, -1, NUL 阅读全文
posted @ 2018-07-08 11:52 dozeoo 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 加入了DirectShow的基类链接库后,如果此时编译就会出现以下编译错误: strmbasd.lib(wxutil.obj) : error LNK2019: 无法解析的外部符号 __imp__timeGetTime@0 strmbasd.lib(wxutil.obj) : error LNK20 阅读全文
posted @ 2018-07-02 12:10 dozeoo 阅读(2626) 评论(0) 推荐(0) 编辑
摘要: /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Input event codes * * *** IMPORTANT *** * This file is not only included from C-code but also from devicetree source * file... 阅读全文
posted @ 2018-06-06 09:51 dozeoo 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 由于LibHaru库只能创建PDF,所以只能换了。 PODOFO项目的依赖项目有: FreeType2: https://sourceforge.net/projects/freetype/files/ 这个必须是2.8不能是2.9,要不然会报一堆的链接错误 Libjpeg: https://sou 阅读全文
posted @ 2018-04-26 22:20 dozeoo 阅读(3295) 评论(0) 推荐(0) 编辑
摘要: 最近公司准备在PDF方面发力了,我也要行动起来,就找到了LibHaru这个开源库 编译Libharu需要用到zlib库和libpng库,libpng库又依赖zlib库. zlib 下载地址:http://www.zlib.net/ libpng下载地址:http://www.libpng.org/p 阅读全文
posted @ 2018-04-25 21:30 dozeoo 阅读(5230) 评论(2) 推荐(0) 编辑
摘要: 汉王PM2.5检测模组B1,接入Arduino,使用I2C1602显示屏显示 1 #include <Arduino.h> 2 #include <Wire.h> 3 #include <LiquidCrystal_I2C.h> 4 float pm25 = 0; 5 #define DATALEN 阅读全文
posted @ 2018-03-10 12:13 dozeoo 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 在初始化中使用下面两行代码 ModifyStyleEx(0, WS_EX_LAYERED); ::SetLayeredWindowAttributes(m_hWnd, RGB(1, 255, 0), 100, LWA_COLORKEY); //set color transparent,指定透明的颜 阅读全文
posted @ 2018-03-07 16:35 dozeoo 阅读(568) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页