码迷,mamicode.com
首页 >  
搜索关键字:controls    ( 1635个结果
表单控件和ACTIVEX控件主要区别
作者:iamlasong 最近研究了一下Excel控件。使用时可以插入两种类型的控件,一种是表单控件(在早期版本中也称为窗体控件,英文Form Controls),另一种是ActiveX控件。表单控件只能在工作表中添加和使用(呵呵,叫表单控件,但却不在表单Form中使用,Form中使用的反而是ActiveX控件),并且只能通过设置控件格式或者指定宏来使用它;而ActiveX控件不仅可以在工作...
分类:其他好文   时间:2014-08-12 19:08:04    阅读次数:252
IA-32平台的Control Register(控制寄存器)
Acontrol registeris aprocessor registerwhich changes or controls the general behavior of aCPUor other digital device. Common tasks performed by contro...
分类:其他好文   时间:2014-08-09 04:54:31    阅读次数:356
虚拟方法virtual的用法
unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Butto...
分类:其他好文   时间:2014-08-08 01:40:24    阅读次数:223
LINQ递归控件
private void SetTextReadOnly(Control ctr, bool blReadOnly) { ctr.Controls.Cast().Select(s => s).ToList().ForEach(s => ...
分类:其他好文   时间:2014-08-07 18:30:21    阅读次数:170
自己编写的silverlight小游戏
using System; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Inpu...
分类:Web程序   时间:2014-08-05 19:14:49    阅读次数:414
winrt组件库(包括翻书组件)
http://www.mindscapehq.com/products/metroelements/controls/book-control-for-winrt点击“down freetrial”,会下载一个msi的文件安装安装后目录下有个Samples文件,打开,这就是demo了。我用vs201...
分类:Windows程序   时间:2014-08-05 15:44:09    阅读次数:316
cannot restore segment prot after reloc: Permission denied
编辑/etc/selinux/config,找到这段:# This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELin...
分类:其他好文   时间:2014-08-04 21:09:17    阅读次数:296
JavaFX学习之道:文本框TextField
原文地址http://download.oracle.com/javafx/2.0/ui_controls/text-field.htm   TextField类实现了一种可以接受和显示文本输入的UI控件,它提供了接受用户输入的功能。和另一个文本输入控件PasswordField一起都继承了TextInput这个类,TextInput是所有文...
分类:编程语言   时间:2014-08-01 16:13:41    阅读次数:1071
delphi 动态建立WebBrower
//Delphi动态建立WebBrowerunit Main;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, StdCtrls;typeTForm1 = c...
分类:Web程序   时间:2014-08-01 13:07:31    阅读次数:242
delphi 记录类型-结构指针
unitUnit1; interface uses Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms, Dialogs,StdCtrls; type TForm1=class(TForm) Button1:TButt...
分类:其他好文   时间:2014-08-01 12:57:41    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!