-
VB.net小技巧——ReoGrid控件添加到工具箱说明
VB.net小技巧——ReoGrid控件添加到工具箱说明
Add Control by Programming for Windows Forms
Install Visual Studio Toolbox Shortcut for Windows Forms
Add Windows Form Control in VB.NET
ReoGrid控件是一个免费的仿execl操作表格的控件。支持带公式的execl表格的加载,这个特性很棒!!
Add Control by Programming for Windows Forms
ReoGrid provides different features set editions, and each edition has different reference requirements. Add the references according to edition used in Application.
* Minimum Edition – Minimum feature set (no formula calculation supported)
* Standard Release Edition – Standard features (Recommended)
* Extension Edition – Extended features, including script language execution integration (like VBA)
If not sure which edition to use, Standard Release Edition with single DLL (unvell.ReoGrid.dll) is recommended.
Install Visual Studio Toolbox Shortcut for Windows Forms
To add a shortcut on Visual Studio toolbox, perform the following steps:
Right-click on Toolbox panel, click ‘Choose Items…’
Choose ‘.NET Framework Components tab’
Click ‘Browse…’ button
Choose ‘unvell.ReoGrid.dll’ in open file dialog
5.Click OK button to close the dialog
6.Click on the item ReoGridControl appeared at most bottom of toolbar to make it selected:
Select a range on form designer, when mouse released the ReoGrid spreadsheet component will be added as below:
Add Windows Form Control in VB.NET
Import namespaces:
Imports unvell.ReoGrid
1
Create ReoGrid instance and add it into any windows form container, such as Form or Panel.
Dim grid As New MyReoGridControl() With {.Dock = DockStyle.Fill}
Me.Controls.Add(grid)
————————————————
版权声明:本文为CSDN博主「十年老鸟」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/gzy0506/article/details/122373327
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式