<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>逐梦论坛 - 编程开发</title>
    <link>http://temp2023.zhumeng.org/forumdisplay.php?fid=10</link>
    <description>Latest 20 threads of 编程开发</description>
    <copyright>Copyright(C) 逐梦论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sun, 17 May 2026 22:15:18 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://temp2023.zhumeng.org/images/logo.gif</url>
      <title>逐梦论坛</title>
      <link>http://temp2023.zhumeng.org/</link>
    </image>
    <item>
      <title>raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported')的解决</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=352098</link>
      <description><![CDATA[现象：Python运行读取.xlsx文件时报错：<br />
<br />
原因：xlrd版本原因，最新的版本不支持读取xlsx文件了。<br />
解决：安装老版本xlrd：pip install xlrd==1.2.0]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Tue, 05 Dec 2023 05:33:50 +0000</pubDate>
    </item>
    <item>
      <title>C语言MessageBox函数</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=352093</link>
      <description><![CDATA[简述<br />
　　MessageBox()函数，它的功能是弹出一个标准的Windows对话框。返回值是一个int型的整数，用于判断用户点击了对话框中的哪一个按钮。它不是C函数库的标准函数，而是API函数，但是可以用C语言调用API函数。<br />
<br />
函数原型<br />
包含在头文件 windows.h中<br />
<br />
int Messag ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Thu, 14 Sep 2023 01:12:55 +0000</pubDate>
    </item>
    <item>
      <title>使用SignalR实时推送数据库变化</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=343973</link>
      <description><![CDATA[测试环境：.NET 4.6、VS2017、MVC5、SQLServer2008<br />
<br />
1、新建数据库及表：<br />
<br />
<br />
数据库要使用Service Broker（否则运行时会提示当前数据库未启用Service Broker）：<br />
<br />
<br />
初始化数据库：<br />
<br />
<br />
2.新建MVC项目<br />
<br />
2.1 安装SignalR包（解决方案资源管理器中右击解决方案--]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Tue, 28 May 2019 01:35:23 +0000</pubDate>
    </item>
    <item>
      <title>SQLServer的表触发器和定时器</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=343965</link>
      <description><![CDATA[触发器就是当表内数据发生变化时，会自动触发代码。<br />
<br />
创建方式为：<br />
<br />
在manager studio找到要建触发器的表，在表下面的【触发器】文件夹上点右键，选择新建。如图：<br />
<br />
<br />
打开后，sqlserver会将大量的代码为你生成，只需要关心自己要修改的部分。<br />
<br />
也就是如下部分： ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Mon, 27 May 2019 07:37:20 +0000</pubDate>
    </item>
    <item>
      <title>Socket创建失败：10093错误 的解决方法</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=343913</link>
      <description><![CDATA[问题：Failed to create TCP socket:10093!Close and restart app.<br />
10093的错误，应用程序没有调用 WSAStartup，或者 WSAStartup 失败。<br />
解决：在socket、accept等前使用WSAStartup初始化网络即可：10093错误可使用如下语句获取：参考【关于Socket10093错误】：]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Thu, 23 May 2019 03:02:30 +0000</pubDate>
    </item>
    <item>
      <title>VS2015 安装.NET Core</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=343832</link>
      <description><![CDATA[VS2015要安装.net core 开发环境，一般需要三个步骤。1.安装.ENT CORE SDK下载地址:https://www.microsoft.com/net/download<br />
<br />
<br />
2.安装VS2015 扩展包Update3右键VS2015更改，点击弹出下面的界面，安装Update3工具包3、安装vs2015 tools <br />
下载地址：<br />
这三步操作下来， ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Fri, 17 May 2019 09:55:30 +0000</pubDate>
    </item>
    <item>
      <title>在aspx.cs中给input的value赋值的方法</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=316571</link>
      <description><![CDATA[方法一：加runat="server"再加个id="text" 然后this.text.value="值" <br />
<br />
方法二：后台定义个全局变量 <br />
public string text;]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Fri, 21 Sep 2018 02:40:49 +0000</pubDate>
    </item>
    <item>
      <title>SQL语句模糊查询日期时间的方法</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=309856</link>
      <description><![CDATA[模糊查询有以下三种方法：<br />
1.Convert转成String，再用Like查询。适用于任何数据类型：<br />
select * from table where convert(varchar,date,120) like '2018-08-22%'<br />
2.Between。适用于String外的类型：<br />
select * from table where time between '2018-8-22 0:00:00' a ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Wed, 22 Aug 2018 08:51:22 +0000</pubDate>
    </item>
    <item>
      <title>将数据库中的数字转换成汉字显示</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=309328</link>
      <description><![CDATA[case具有两种格式。简单case函数和case搜索函数。这两种方式，可以实现相同的功能。简单case函数的写法相对比较简洁，但是和case搜索函数相比，功能方面会有些限制，比如写判定式。<br />
还有一个需要注重的问题，case函数只返回第一个符合条件的值，剩下的case部分将会被自 ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Mon, 06 Aug 2018 03:50:18 +0000</pubDate>
    </item>
    <item>
      <title>VS 2015使用Web Deploy发布Web 应用</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=309128</link>
      <description><![CDATA[IIS配置<br />
<br />
1、打开服务器<br />
<br />
<br />
2、添加角色和功能向导<br />
<br />
<br />
3、添加角色和功能向导——选择安装类型<br />
<br />
<br />
4、添加角色和功能向导——服务器选择<br />
<br />
<br />
5、添加角色和功能向导——服务器角色：选中IIS(Internet信息服务)，安装IIS管理工具<br />
<br />
<br />
6、添加角色和功能向导]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Fri, 27 Jul 2018 06:30:06 +0000</pubDate>
    </item>
    <item>
      <title>详解ASP.NET 生成二维码实例（采用ThoughtWorks.QRCode和QrCode.Net两种方式）</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=307710</link>
      <description><![CDATA[最近做项目遇到生成二维码的问题，发现网上用的最多的是ThoughtWorks.QRCode和QrCode.Net两种方式。访问官网看着例子写了两个Demo，使用过程中发现两个都挺好用的，ThoughtWorks.QRCode的功能更多一些，但是dll文件有6兆，QrCode.Net只有400多K，大家根据自己的需要选择 ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Mon, 11 Jun 2018 06:29:17 +0000</pubDate>
    </item>
    <item>
      <title>开源QRCode库</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=307684</link>
      <description><![CDATA[如何使用QRCode库来编码和解码QRCode<br />
<br />
<br />
[*]介绍<br />
在本文中，我将简要介绍的功能。背景<br />
QRCode库是一个.NET组件，可用于编码和解码QRCode。QRCode是源自日本的二维条码。如今，它广泛应用于广泛的行业，例如车辆零件跟踪和库存管理。<br />
QR代表“快速反应”。它由日本公 ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Sat, 09 Jun 2018 10:35:41 +0000</pubDate>
    </item>
    <item>
      <title>DotNet二维码操作组件ThoughtWorks.QRCode</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=307683</link>
      <description><![CDATA[阅读目录[*][*][*][*][*][*][*][*][*][*]<br />
阅读目录[*]<br />
<br />
在生活中有一种东西几乎已经快要成为我们的另一个电子”身份证“，那就是二维码。无论是在软件开发的过程中，还是在普通用户的日常中，几乎都离不开二维码。二维码 (dimensional barcode) ，又称二维条码，是在 ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Sat, 09 Jun 2018 10:19:29 +0000</pubDate>
    </item>
    <item>
      <title>生成二维码的开源工具对比（附源码）</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=307667</link>
      <description><![CDATA[某天发现生成二维码的工具（zxing）运行的很慢，于是乎上网上寻找生成二维码的工具，发现常见的开源工具有如下三种：[*]Zxing（zxing.dll）[*]ThoughtWorks（ThoughtWorks.QRCode.dll）[*]QrCodeNet（Gma.QrCodeNet.Encoding.dll）选哪个好呢？那就自己手动比较一下吧。 ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Fri, 08 Jun 2018 14:37:22 +0000</pubDate>
    </item>
    <item>
      <title>Win10（64位）+VS2015（32位）+PCL1.8.1（32位）环境配置</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=291421</link>
      <description><![CDATA[说明：图片为64位软件下的截图。<br />
1、准备工作：下载了下面两个文件下载地址：Visual Studio 2015[*][*]  （解压后放在安装目录的bin下面）我准备的百度云链接：安装文件： 链接：  密码：5jntPDB文件： 链接：  密码：zri4安装过程中修改了路径，此处路径是：D:\PCL 1. ...]]></description>
      <category>编程开发</category>
      <author>shillan</author>
      <pubDate>Mon, 12 Mar 2018 07:13:19 +0000</pubDate>
    </item>
    <item>
      <title>求代购：想从乌克兰代购安蒂雅面膜</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=247037</link>
      <description><![CDATA[大陆杂牌面膜太多傻傻分不清，有人做乌克兰代购的嘛，本人需要从乌克兰代购安蒂雅面膜，有做的请私信我或者给我留言。  <br />
<br />
<br />
<br />
<br />
  <br />
<br />
<br />
<br />
  <br />
<br />
<br />
<br />
  <br />
<br />
<br />
<br />
▍☆▉Θ]]></description>
      <category>编程开发</category>
      <author>wllks</author>
      <pubDate>Wed, 03 Jun 2015 10:20:46 +0000</pubDate>
    </item>
    <item>
      <title>2015中级经济师经济基础知识点预习：统计数据的质量</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=242750</link>
      <description><![CDATA[2015年中级经济师考试时间：11月7日，经济师考试报名集中在6-8月，2015年经济师备考已经拉开帷幕，网校整理了中级经济师考试经济基础知识预习资料，供大家预习参考，祝大家梦想成真！ <br />
<br />
统计数据的质量 <br />
<br />
（一）统计数据的误差及误差的来源 <br />
<br />
类型　<br />
<br />
定义　<br />
<br /> ...]]></description>
      <category>编程开发</category>
      <author>k1dhtvfu</author>
      <pubDate>Wed, 20 May 2015 04:43:55 +0000</pubDate>
    </item>
    <item>
      <title>九成新男装雅马哈摩托车天剑125转让</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=242520</link>
      <description><![CDATA[雅马哈天剑125摩托车，售价：1800元。原装发动机，排气量123cc，净重117kg，油箱容量12L，无任何翻新，另还有几辆电动车转让，卖价800元。有意者请来电联系15093366717张鹏]]></description>
      <category>编程开发</category>
      <author>iwqei</author>
      <pubDate>Sat, 16 May 2015 01:47:46 +0000</pubDate>
    </item>
    <item>
      <title>系统盘变大变小</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=240738</link>
      <description><![CDATA[　　尽管我也是菜鸟。但你的那个问题也属菜鸟级。肯定地讲，那种现象不是“电脑病毒”的事儿（除非还有别的一系列问题）。<br />
<br />
　　来听我给你解惑一番：<br />
<br />
　　系统盘忽大忽小的原因大致有五：<br />
<br />
　　一是那个系统还原程序搞得鬼。Windows操作系统的“系统还原程序”是 ...]]></description>
      <category>编程开发</category>
      <author>不会喝水的虾</author>
      <pubDate>Fri, 13 Mar 2015 06:35:47 +0000</pubDate>
    </item>
    <item>
      <title>论坛启用首页压缩的效果把网页几乎缩小了5倍</title>
      <link>http://temp2023.zhumeng.org/viewthread.php?tid=230200</link>
      <description><![CDATA[论坛启用首页压缩的效果把网页几乎缩小了5倍     HrgoyHoP<br />
       论坛启用首页压缩的效果，把网页几乎缩小了5倍，5倍加速打开网页的速度，更节省了5倍的流量，也可以有效的提升并发连接数，也就是同时在线人数。<br />
        那么应该该怎么做呢？看到网上有很多教程，但 ...]]></description>
      <category>编程开发</category>
      <author>a我爱你89</author>
      <pubDate>Tue, 03 Mar 2015 01:12:54 +0000</pubDate>
    </item>
  </channel>
</rss>