如何使用 Inno 制作多语言版安装程序?

Posted by Admin L in Common Programming on 20-05-2015.

© 牧山道人,保留所有权利。

本博使用 Inno 多年,其免费、易用、可扩展性佳等诸多特色让我一直很喜欢它。

今天开始生产多语言版软件,既然软件已支持多语,要做就做得有模有样,所以,打算让安装程序也支持多语言。

网上有很多介绍 Inno 制作多语安装包的文章,但大多比较复杂,令人眼花缭乱、望而生畏。
所以,我这篇文章将告诉你最简单可行的方法,下面正式开始:

1、使用正确的 Inno 版本。
既然是多语版安装包,可想见需要 Unicode 版 Inno,直接到官网下载安装即可,本文使用 Inno 5.5.5 (Unicode)。

2、加入你的软件产品支持的语种。[……]

Read More…

Cookbook formulae for audio EQ biquad filter coefficients

Posted by Admin L in Common Programming on 28-05-2012. Tags:

by Robert Bristow-Johnson  <[email protected]>
Original Address: http://www.audiobitlab.com/2012/05/27/cookbook-formulae-for-audio-eq-biquad-filter-coefficients/

All filter transfer functions were derived from analog prototypes (that
are shown below for each EQ filter type) and had[……]

Read More…

编程术语英文-简体中文-繁体中文对照表

Posted by Admin L in Common Programming on 15-05-2012. Tags:

作者:侯捷
_____________________________________
以下是侯捷个人陆续收集整理的有关於我所涉猎的领域的术语对照(英中繁简)。
欢迎所有朋友给我意见(任何意见)。谢谢。

新书写作,或发表文章时,我会以此表为叁考。

本表所列,并不表示我在写译书籍时一定会采用表内的中文术语。
我也可能采用英文术语。

一群性质相近同的「东西」,如果译名一贯,阅读的感觉就很好。
一贯性的术语,扩充性高,延伸性高,系统化高。
● 我喜欢「式」:
constructor 建构式
declaration 宣告式
definition 定义式
de[……]

Read More…

How to get folder size in .NET

Posted by Admin L in .NET Programming, Common Programming on 24-04-2012. Tags: ,

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/dot-net-get-folder-size
To reprint this article, please indicate the source, thank you.
_____________________________________

The .NET built-in assemblies (I use .NET 3.5) do not provide a way to get the folder/directory size dir[……]

Read More…

.NET 中如何得到文件夹大小

Posted by Admin L in .NET Programming, Common Programming on 24-04-2012. Tags: ,

作者:牧山道人
原文地址:https://www.seeksunslowly.com/dot-net-get-folder-size-sc
转载请注明出处,谢谢。
_____________________________________

.NET 自带程序集(本道使用 .NET 3.5)没有提供直接获取文件夹/目录大小的功能。
若用原生 .NET 程序集,需要遍历某目录及其所有子目录下所有文件才能获得该目录大小,效率低下且编码繁琐。

如果您之前搞过 VB6 编程,应该知道 Windows 各版本均自带了一个 COM 组件——Windows Script Host Obje[……]

Read More…

Excel.exe process cannot quit after operated Excel in C#、Java、VB、VC、Delphi

Posted by Admin L in Common Programming on 08-04-2012.

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/excel-exe-not-quit
To reprint this article, please indicate the source, thank you.
_____________________________________

In most programming languages, after operated Excel (by Object) and called workbook.Close() & excel.Quit[……]

Read More…

C#、Java、VB、VC、Delphi 中操作 Excel 后,excel.exe 进程不自动退出问题的解决方法

Posted by Admin L in Common Programming on 08-04-2012.

作者:牧山道人
原文地址:https://www.seeksunslowly.com/excel-exe-not-quit-sc
转载请注明出处,谢谢。
_____________________________________

在诸多编程语言中使用 Object 操作 Excel 并调用 workbook.Close() 及 excel.Quit() 后,excel.exe 进程(可能)仍然不会消失。

这虽不是啥致命问题,但看着确实别扭。

网上好多人说强杀进程,我认为不合适:因为有可能用户自己开着 Excel 在用。如果要深入判断哪些是自己程序开的进程,哪些是用户手工[……]

Read More…

Solved: read/write excel file too slowly in C#, Java, VB, Delphi, VC and other programming languages

Posted by Admin L in .NET Programming, Common Programming on 08-04-2012. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/operation-excel-xlsx-slowly
To reprint this article, please indicate the source, thank you.
_____________________________________

Recently, I tried to import data from Excel to a ListView with Detail view in .NET, there are about[……]

Read More…

解决 C#、Java、VB、Delphi、VC 等语言中读写 Excel 文件太慢的问题

Posted by Admin L in .NET Programming, Common Programming on 08-04-2012. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/operation-excel-xlsx-slowlw-sc
转载请注明出处,谢谢。
_____________________________________

最近,在 .NET 中尝试从 Excel 导入数据到 Detail 样式的 ListView 中,记录数在 3,000 左右,发现导入非常缓慢(将近 10 分钟),别说用户不能忍受,自己都无法接受,但这是必需的功能,不能去掉,所以必须想办法解决。

其中,读取 Excel 文档数据的方式为:逐行逐单元格读取,关键代码如下:

[c[……]

Read More…