Windows开发-月排行
安装Visual C++运行库 根据 PHP 版本及系统环境选择 VC++ 版本,缺少 VC++ 运行库会报500错误。 我装的是 PHP7.3.2 选 Visual C++ 2017 x64 Microsoft Visual C++ 2017 Redistributablex64: https:/ ...
分类:Windows开发 时间:2019-04-28 15:13:38 收藏:0 阅读:1986
1,cmd 管理员身份运行,一般在:C:\Windows\System32 2,粘贴,slmgr.vbs /upk 回车 3,粘贴,slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX 回车 4,粘贴,slmgr /skms zh.us.to 回车 5,粘贴,slmgr ...
分类:Windows开发 时间:2019-04-29 17:17:26 收藏:0 阅读:792
string dll32 = System.Windows.Forms.Application.StartupPath + @"\System.Data.SQLite-32.DLL"; string dll64 = System.Windows.Forms.Application.StartupPa ...
分类:Windows开发 时间:2019-05-06 13:10:37 收藏:0 阅读:407
写在前面 作为新年开篇的文章,当然要选择比较“Cool”的东西来分享,这自然落到了WPF身上,WPF技术自身可塑性非常强,其强大的绘图技术以及XAML技术比WinForm而言有本质的飞跃。 切入正题,本文来自于一个项目的Demo演示版,当然为了做到“Cool”我选择了WPF作为项目的概念版进行演示, ...
分类:Windows开发 时间:2019-05-11 23:18:05 收藏:0 阅读:259
YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台。 环境要求 nodejs(尽量最新版本) mongodb(尽量最新版本) 1、安装node https://www.runoob.com/nodejs/nodejs-tutorial.html 2、安装mongodb https ...
分类:Windows开发 时间:2019-05-15 19:38:51 收藏:0 阅读:1394
一、当出现这个错误的时候一顿百度。 1.从新卸载Python,安装3.6,还是不行 2.从新卸载pip,单独安装.直接下载get-pip.py文件,执行命令python get-pip.py,还是不行 3.也在Python/Script/下回复过文件,不行 4.加上--trusted-host 执行 ...
分类:Windows开发 时间:2019-05-15 20:04:03 收藏:0 阅读:637
1、配置本地目录路 <appSettings> <!--文件下载目录--> <add key="Download_Dic" value="E:\MyDownloadFile\"/> </appSettings> 2、创建FileHandler.cs类,编写下载代码 /// <summary> /// ...
分类:Windows开发 时间:2019-05-22 19:30:05 收藏:0 阅读:203
private void WebBrowser_Navigated(object sender, NavigationEventArgs e) { SuppressScriptErrors((WebBrowser)sender, true); } public void SuppressScript... ...
分类:Windows开发 时间:2019-05-22 19:51:10 收藏:0 阅读:323
https://jingyan.baidu.com/article/20b68a88e2fbaf796dec6267.html https://stackoverflow.com/questions/30421602/how-to-change-the-url-using-cefsharp-winf ...
分类:Windows开发 时间:2019-05-28 16:41:16 收藏:0 阅读:480
Document 提交2 /// /// 文件合并 /// /// 文件列表 /// 存放路径 public static void FileMerge(List... ...
分类:Windows开发 时间:2019-05-31 16:46:32 收藏:0 阅读:246
教程基于 Windows 10专业版+Python3.6+IIS+wfastcgi 之上部署Django2.2的,同样适用于Windows server2012服务器和Windows7及以上的Windows操作系统。 环境准备 1.Python及其虚拟环境 Django依赖于Python解释器环境。 ...
分类:Windows开发 时间:2019-06-02 12:01:59 收藏:0 阅读:467
Make sure the selected Windows SDK is installed:Properties -> Configuration Properties -> General -> Windows SDK Version. 1. Right-Click on the Projec ...
分类:Windows开发 时间:2019-06-04 17:29:28 收藏:0 阅读:299
https://stackoverflow.com/questions/7672774/how-do-i-determine-the-windows-download-folder-path 如果你通过文件夹的location属性,移动了文件夹。 比如之前在%userProfile%\downloa ...
分类:Windows开发 时间:2019-06-11 10:52:33 收藏:0 阅读:485
使用visual studio创建项目 创建项目的构成 ...
分类:Windows开发 时间:2019-06-14 15:37:05 收藏:0 阅读:406
原文:ReadyAPI创建功能测试的多种方法 声明:如果你想转载,请标明本篇博客的链接,请多多尊重原创,谢谢! 本篇使用的 ReadyAPI版本是2.5.0 在ReadyAPI中有多种方法可以创建功能测试,本篇将分步操作创建功能测试。 1、从SoapUI开... ...
分类:Windows开发 时间:2019-06-16 00:04:54 收藏:0 阅读:383
1.单例模式(Singleton Pattern) 定义:Ensure a class has only one instance, and provide a global point of access to it.(确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。) 通用代码 ...
分类:Windows开发 时间:2019-06-18 15:42:46 收藏:0 阅读:122
using System.IO;using Microsoft.Win32;using Oracle.DataAccess.Client; private void Button_Upload_Click(object sender, RoutedEventArgs e) { Stream ms; ...
分类:Windows开发 时间:2019-06-21 21:41:33 收藏:0 阅读:325
初次启动时执行以下操作 1.启动node,并且交互如下: Abort Auto Provisioning and continue with normal setup ?(yes/no)[n]: yes Do you want to enforce secure password standard ...
分类:Windows开发 时间:2019-06-22 23:23:29 收藏:0 阅读:559
/// /// 科学计数法值转换成正常值 /// /// /// public string ValueScientificNotationConvert(JToken value) { if (value == null) return ""; ... ...
分类:Windows开发 时间:2019-06-25 17:21:28 收藏:0 阅读:244
折腾了好久,windows bat脚本的if语句就是一个坑 特别是对于不熟悉bat脚本的来说 查看了cmd 下if的用法 然后了解了 errorlevel 才最终解决问题 注意: 开启变量延迟的设置:setlocal EnableDelayedExpansion,即延迟环境变量扩展,告诉解释器在遇到 ...
分类:Windows开发 时间:2019-06-27 17:26:02 收藏:0 阅读:163
12242252262272284851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!