-
FastReport v5.3 Enterprise Full Source
FastReport 是非常强大的报表控件,相比QuickReport,ReportBuilder更加灵活,又非常小巧,速度快
用自带编译工具编译所有package,然后在xe2内加载所有LibD16*.bpl即可
- 2022-04-28 09:32:46下载
- 积分:1
-
WinAPI Sample, including CerateWIndow. REgister WIndows Class, Dispatch message
WinAPI Sample, including CerateWIndow. REgister WIndows Class, Dispatch message-WinAPI Sample, including CerateWIndow. REgister WIndows Implants ss, Dispatch message
- 2022-01-31 15:26:34下载
- 积分:1
-
本程序讲述如何在程序运行过程中动态的添加一个文本框控件,添加其他类型控件的方法是类似的。...
本程序讲述如何在程序运行过程中动态的添加一个文本框控件,添加其他类型控件的方法是类似的。-the procedures on how to run the dynamic process of adding a text box controls, add other types of control methods are similar.
- 2022-05-14 17:01:46下载
- 积分:1
-
Hyperlink Button with Icon
Hyperlink Button with Icon
- 2022-03-01 07:09:43下载
- 积分:1
-
很cool的绘制按钮,
很cool的绘制按钮,-very cool drawing buttons,
- 2023-01-27 14:50:04下载
- 积分:1
-
让你实现系统托盘(即右下角的小图标)变得非常方便的原码:一句话就可以实现,怎么样也许你不相信,看看就知道了。就下面一句就实现了:
TrayCon1.AddT...
让你实现系统托盘(即右下角的小图标)变得非常方便的原码:一句话就可以实现,怎么样也许你不相信,看看就知道了。就下面一句就实现了:
TrayCon1.AddToTray Me, Me.Icon, "系统托盘实例", menu
并且在运行期间你还可以更改tip文字,更改图标,更改菜单等操作,窗体退出时,自动删除托盘,不需要人工介入,是不是减少了您平时的一大段的代码啊-allow you to realize the system tray (lower right corner of the small icon) has become very convenient to the original code : sentence can be achieved, how kind you may not believe this, look at know. On the following one to achieve : TrayCon1.AddToTray Me, Me.Icon "system tray example," menu and during operation, you can also change tip text, change icons, menus, and other changes in operation, the form to pull out, automatically deleted tray, does not require manual intervention, the reduction is not your usual one of the largest code ah
- 2022-05-12 19:01:43下载
- 积分:1
-
This is the most simple application of the volume control
这是最简单适用的音量控制-This is the most simple application of the volume control
- 2022-08-15 22:34:51下载
- 积分:1
-
VB开发的非常实用漂亮多彩的按钮控件
VB开发的非常实用漂亮多彩的按钮控件,能适应XP,Win7,以及64位的Win7等版本.
用户可以根据自己的需要,设置属性进行颜色,外观等的调整.
- 2022-08-24 22:09:21下载
- 积分:1
-
一个比较好用的软键盘编程,还包括最小化窗口至任务栏,保证你会喜欢...
一个比较好用的软键盘编程,还包括最小化窗口至任务栏,保证你会喜欢-A relatively easy-to-use soft keyboard programming, but also minimize the window to the taskbar, guarantee that you will love
- 2022-02-04 09:55:42下载
- 积分:1
-
更改网格行可见性
翻译 maninwest@Codeforge 作者 K K Srinivasan@CodeProject这里是如何更改网格行的可见性的技巧。背景其实,更改网格行的可见性有很多方法。这里是我自己的方法。基于布尔值更改可见性。在开始之前,了解一下可见模式可见– 控件始终在布局中并显示给用户。收起 – 控件不显示在布局中。其他控件发生布局调整。隐藏 –控件不显示但是会保留在布局中的位置。未发生调整。使用代码Step 1:我只通过我创建的演示 APP 来解释代码。定义类中的布尔属性。可以使用依赖属性或者 INotifyPropertyChanged 界面获得更改通知。这里,我将布尔属性定义为依赖属性。 public static readonly DependencyProperty SetVisibilityProperty = DependencyProperty.Register("SetVisibi lity",typeof(bool),typeof(AddWindow));
public bool SetVisibility
{
get { return (bool)this.GetValue(SetVisibilityProperty); }
set
{
SetValue(SetVisibilityPro
- 2022-06-21 19:56:48下载
- 积分:1