Welcome![Sign In][Sign Up]
Location:
Search - vb xls

Search list

[File OperateCoral_transform

Description: 用VB制作的一个文件转换器,实现功能如下:将二进制文件中的内容转换为*.xls文件中的内容-VB produced a document conversion device that functions as follows : the binary content of the document converted to *. xls document, the contents of
Platform: | Size: 45876 | Author: Coral | Hits:

[File Operatedemo_vb

Description: 文件管理中,Word,Xls,Pdf……等文件中读取文本内容的Extract-Text Com组件(Dll)以及Vb.net的demo源代码,具体说明可以参照《利用Minidx Extract-Text Com组件从Word,Xls,Pdf……等文件中读取文本内容 》一文
Platform: | Size: 162985 | Author: 哈哈 | Hits:

[Windows DevelopClassMissionParse

Description: 一个自己开发的关于XLS转TXT的VB。NET下的软件。
Platform: | Size: 28450 | Author: alpha | Hits:

[Otherexcelapi_vb

Description: VB 不需要安装 EXECEL 直接操作 XLS 文档 的类,只是版本有点旧,是 EXECEL 95 以前的版本,供大家参考
Platform: | Size: 51568 | Author: 老廖 | Hits:

[Windows DevelopXlsToMdb

Description: 读取XLS数据,到数据库并存储。采用VB编程,数据库使用的是ACCESS。-showed how to convet the data in Excel to Access Database
Platform: | Size: 13855 | Author: 张非 | Hits:

[File Formatd019_xlstomdb

Description: 这是一个如何把Excel文件转换成mdb数据库的vb小程序。-This is how an Excel document conversion into mdb database vb small programs.
Platform: | Size: 13312 | Author: 钱震 | Hits:

[Windows DevelopXlsToMdb

Description: 读取XLS数据,到数据库并存储。采用VB编程,数据库使用的是ACCESS。-showed how to convet the data in Excel to Access Database
Platform: | Size: 13312 | Author: 张非 | Hits:

[ADO-ODBCmdb-dc

Description: 将ACCESS数据库的MDB文件用代码导出为.txt .htm .dbf .xls文件代码-ACCESS to the MDB database of documents for the code is derived. Txt. Htm. Dbf. Xls file code
Platform: | Size: 918528 | Author: mrmo | Hits:

[File OperateCoral_transform

Description: 用VB制作的一个文件转换器,实现功能如下:将二进制文件中的内容转换为*.xls文件中的内容-VB produced a document conversion device that functions as follows : the binary content of the document converted to*. xls document, the contents of
Platform: | Size: 46080 | Author: | Hits:

[File Operatedemo_vb

Description: 文件管理中,Word,Xls,Pdf……等文件中读取文本内容的Extract-Text Com组件(Dll)以及Vb.net的demo源代码,具体说明可以参照《利用Minidx Extract-Text Com组件从Word,Xls,Pdf……等文件中读取文本内容 》一文-File management, Word, Xls, Pdf ... ... and other documents to read the text of the Extract-Text Com components (Dll), as well as the demo vb.net source code, can refer to specify use Minidx Extract-Text Com Components from the Word, Xls, Pdf ... ... and other documents to read the text a text
Platform: | Size: 162816 | Author: 哈哈 | Hits:

[Windows DevelopClassMissionParse

Description: 一个自己开发的关于XLS转TXT的VB。NET下的软件。-Developed a XLS to TXT on the VB. NET Software.
Platform: | Size: 125952 | Author: alpha | Hits:

[Otherexcelapi_vb

Description: VB 不需要安装 EXECEL 直接操作 XLS 文档 的类,只是版本有点旧,是 EXECEL 95 以前的版本,供大家参考-VB do not have to install a direct operation EXECEL category XLS documents only version有点旧is EXECEL 95 previous versions, for your reference
Platform: | Size: 51200 | Author: | Hits:

[Other DatabasesDataLink_code_example

Description: Example VB Code in an Excel *.xls file for programmatically recalculating and resizing DataLink functions. Last Updated July 2006-Example VB Code in an Excel*. xls file for programmatically recalculating and resizing DataLink functions. Last Updated July 2006
Platform: | Size: 14336 | Author: DYH | Hits:

[Other systemsAtoxls

Description: 读取气象a文件资料,vb编写,请大家多提建议-transfer afile to xls format,it is always used in meteorology.
Platform: | Size: 58368 | Author: baibai | Hits:

[Windows DevelopVB_program_generated_XLS_report

Description: VB产品销售单录入程序生成XLS报表VB single-entry program product sales generated XLS report-VB single-entry program product sales generated XLS report
Platform: | Size: 19456 | Author: iloveu | Hits:

[Game Hook Crackym_vb-xls-xiaoshoudan

Description: VB产品销售单录入程序生成XLS报表 -VB产品销售单录入程序生成XLS报表VB产品销售单录入程序生成XLS报表
Platform: | Size: 21504 | Author: 许云 | Hits:

[CADgccl

Description: 采用vb编写,在auto cad中运行,实现在cad中批量采集点位坐标,可生成txt或xls文件。-Using vb prepared to run in auto cad, cad in bulk to achieve in the Coordinate collection, can generate txt or xls file.
Platform: | Size: 11264 | Author: 王鹤 | Hits:

[File OperateProject1

Description: vb 读取EXCEL中的趋势图比如D盘下有一名为graph的Excel文件。里面有一个直方图。现在新建一个窗体,窗体上放置一个PictureBox,一个按钮。单击按钮,将读取D:/graph.xls中的直方图到图片框-Private Sub Command1_Click() Dim mXlsApp As Excel.Application 应用 Dim mXlsBook As Excel.Workbook 工作薄 Dim mXlsSheet As Excel.Worksheet 工作表 Set mXlsApp = New Excel.Application Set mXlsBook = mXlsApp.Workbooks.Open("D:\graph.xls") Set mXlsSheet = mXlsBook.Worksheets(1) 以下代码读取Excel中图表到图片框 mXlsSheet.ChartObjects(1).Chart.CopyPicture 读取图表到剪贴板 Picture1.Picture = Clipboard.GetData 粘贴数据到图片框 Clipboard.Clear 清除剪贴板数据 mXlsBook.Close mXlsApp.Quit Set mXlsSheet = Nothing Set mXlsBook = Nothing Set mXlsApp = Nothing End Sub
Platform: | Size: 2048 | Author: huier | Hits:

[ApplicationsCrypto_code.vb

Description: dcrypto encryption utility for file either in xls format or any.
Platform: | Size: 4096 | Author: touseef | Hits:

[Software Engineeringopc-client-guide-VB

Description: OPC客户端程序设计 使用本书的示范源程序之前,你必须复制和注册必需的OPC服务器,代理-占位DLL,和ActiveX控件: 1. 把配置的光盘插入光盘驱动器, 然后用浏览器打开光盘。 2. 拖动含有示范源程序的文件夹"\Samples", 并将它放在要存放示范源程序的硬盘文件夹中(比如:C:\)。 3. 单击[开始]按钮,然后选择[运行]菜单。单击[浏览]按钮并选择OPC注册批处理文件 "\Samples\Bin\RegOPC.BAT"。 4. 单击[OK]按钮就可以注册OPC服务器,代理-占位DLL,和ActiveX控件。 启动示范源程序: 第2章: -同期数据访问示范程序: 请启动\Samples\Chap2\Sync\Project1.vbp。 -非同期数据访问示范程序: 请启动\Samples\Chap2\Async\Project1.vbp。 第3章: -OPC ActiveX示范程序: 请启动\Samples\Chap3\TrendGraph\OPCTrend.vbg。 第4章: -OPC VBA示范程序: 请启动\Samples\Chap4\Excel\VBA.xls。 -OPC ActiveX示范程序e: 请启动\Samples\Chap4\Excel\ActiveX.xls。 系统和软件要求: 操作平台: WindowsNT 4.0 Workstation(SP3)/Windows 2000 Professional -VB: Visual Basic 5.0/6.0 专业/企业版 (第2章和第3章) -Excel: Office 97/Office 2000 (第4章)-OPC client programming model of the source before using this book, you must copy and register the necessary OPC server, proxy- placeholder DLL, and ActiveX controls: a configuration CD into the CD-ROM drive, and then open the CD browser . The file contains a demonstration of the source 2 drag the folder " \ Samples" , and place it on a hard disk to store the demonstration of the source folder (for example: C: \). 3 Click [Start] button, and then select [Run] menu. Click [Browse] button and select the batch file registered OPC " \ Samples \ Bin \ RegOPC.BAT" . 4 Click the [OK] button can register OPC server, proxy- placeholder DLL, and ActiveX controls. Start demonstration source: Chapter 2:- Data Access demonstration program over the same period: Start \ Samples \ Chap2 \ Sync \ Project1.vbp.- Asynchronous Data Access Demonstration Program: Start \ Samples \ Chap2 \ Async \ Project1.vbp. Chapter 3:-OPC ActiveX demonstration program: Start \ Samples \ Chap3 \ TrendGraph
Platform: | Size: 4361216 | Author: | Hits:
« 12 »

CodeBus www.codebus.net