▍1. 200471711251525
高频变压器设计软件,很有用,是个EXCELL小软件(High-frequency transformer design software, very useful, is a small software Excel)
高频变压器设计软件,很有用,是个EXCELL小软件(High-frequency transformer design software, very useful, is a small software Excel)
由文本读出,并将其16进制内容转化为10进制,最后画曲线显示。(read the HEX data from the file,then change then to BIN format,lastly draw the curve according to the data.)
该程序用于批量修改文件名,是一个基于对话框的MFC小程序,利用CListCtrl控件来显示读取的文件名与浏览改动后的文件名(The procedure used to bulk modify the file name, is an MFC dialog-based applet, using CListCtrl control to display the file name to read and navigate change the file name)
考虑幅值谱与相位谱的人造地震动模拟与反应谱拟合 我国对《建筑结构抗震规范》进行了修订,将设计反应谱周期由原来的3秒延长到现在的6秒。反应谱周期的延长。 本程序以新规范反应谱作为目标谱,采用三角级数迭加来模拟地震动加速度(Consider the amplitude spectrum and phase spectrum of the artificial ground motion response spectrum simulation and fitting our anti-seismic construction norms, and the amendment to the design response spectrum cycle from three seconds to extend to the present six seconds. Response spectrum of the extended cycle. This procedure to a new standard response spectrum as the target spectrum, the use of trigonometric series of superposition to simulate ground motion acceleration)
说明: 主題:如何检测文件是否已经发生更改? 請使用Visual C++, compile後直接執行即可。 (Subject: how to detect whether changes have occurred? Please use the Visual C++, Compile directly to the Executive.)
说明: timyXML是一个简单的xml解析工具,当然,你的xml必需是标准的。 TinyXML is a simple, small, C++ XML parser that can be easily integrated into other programs.In brief, TinyXML parses an XML document, and builds from that a Document Object Model (DOM) that can be read, modified, and saved. XML stands for "eXtensible Markup Language." It allows you to create your own document markups. Where HTML does a very good job of marking documents for browsers, XML allows you to define any kind of document markup, for example a document that describes a "to do" list for an organizer application. XML is a very structured and convenient format. All those random file formats created to store application data can all be replaced with XML. One parser for everything.(timyXML is a simple xml analytical tools, of course, you must be the xml standard. TinyXML is a simple, small, C++ XML parser that can be easily integrated into other programs.In brief, TinyXML parses an XML document, and builds from that a Document Object Model (DOM) that can be read, modified, and saved.XML stands for eXtensible Markup Language. It allows you to create your own document markups. Where HTML does a very good job of marking documents for browsers, XML allows you to define any kind of document markup, for example a document that describes a to do list for an organizer application. XML is a very structured and convenient format. All those random file formats created to store application data can all be replaced with XML. One parser for everything.)
说明: Visal c++二进制文件合并,功能非常好用(Visal c++ Binary file merging is very easy to use)
说明: 日常工作中用于拆分文件中数据和统计工作量的小程序(Daily work for the Resolution of the document the workload of data and statistics applets)
wince 里面没有WRITEPROFILESTRING等直接读写INI文件的命令,多有不便.因此这份源码实现了WINCE下读写INI的功能.附有源代码及测试程序.经实际使用,效果不错.(wince There are no direct WRITEPROFILESTRING order to read and write INI files, and more has the inconvenience. Therefore the source realize the read and write INI under WINCE function. with the source code and testing procedures. by actual use, good results.)
一个文件管理系统,服务器端 客户端链接之后便可以运行(A document management system, server-side link and then the client can run)
从一个test file中定位需要查找的内容 (From a test file in the location need to search the contents of)
java实现系统目录树控件 //导入以下类 import cn.xcode.framework.gui.useModule.xFilesTree.FilesTreeManager //在面板初始化的地方 FilesTreeManager ftm=new FilesTreeManager() //新增一个文件目录树总管对象 JTree tree=ftm.getFilesTree() //新增一个JTree对象,把ftm.getFilesTree()赋值给它这个树就是系统文件目录树了; ftm.setShowHidenFiles(true) //设置是否显示隐藏文件 ftm.setShowFilesMode(ftm.SHOWFILESMODE_ALL) //显示的模式有两种(ftm.SHOWFILESMODE_ALL 显示全部 (java realization of the system directory tree control// into the following categories of import cn.xcode.framework.gui.useModule.xFilesTree.FilesTreeManager// in the panel to initialize the local FilesTreeManager ftm = new FilesTreeManager ()// add a file directory Object Explorer tree JTree tree = ftm.getFilesTree ()// add a JTree object to ftm.getFilesTree () assigned to it by the tree is a tree system files ftm.setShowHidenFiles (true)// Set whether to display hidden document ftm.setShowFilesMode (ftm.SHOWFILESMODE_ALL)// show mode, there are two (ftm.SHOWFILESMODE_ALL Show All)
This file contains a summary of what you will find in each of the files that make up your Sort2 application.
计算图像的平均梯度,边缘强度,信息熵以及方差,图像可以是单波段或多波段图像。(Calculation of the average image gradient, edge strength, information entropy and the variance, images can be single-band or multi-band image.)
用VC++实现的一个简单哈夫曼压缩码和解码程序,可以对任意字符的文本文件进行压缩并解压(With VC++ Realize a simple Huffman compression code and decoding procedures, arbitrary characters can compress a text file and extracting)
最近用VS2005做项目,遇到一个工程中有很多文件的编码不统一,有的是UTF-8,有的是GB32的,发布网站时就乱七八糟的。可以通过VS环境中的 “高级保存选项”一个一个地改过来,因实在太多,好几十个,重复工作是非常令人不爽的,自已就动手写了个这个小程序。编写之前,参考网友qing、 Randy052的经验。 特点: 1、可以支持常见编码格式如UTF-8、UTF-7、Unicod、ASCII、GB2312、Big5之间的转换。 2、支持选取文件夹批量、文件多选、翦贴板中复制三种文件批量选取方式,能实现指量转换。 3、支持文件过滤,采用openFileDialog的文件过滤方式。 4、支持源文件编码自动识别,可用于统一未知文件的格式。 5、支持备份(err)