导航

2005年9月14日

摘要: 1.SQL SERVER的数据类型   数据类弄是数据的一种属性,表示数据所表示信息的类型。任何一种计算机语言都定义了自己的数据类型。当然,不同的程序语言都具有不同的特点,所定义的数据类型的各类和名称都或多或少有些不同。SQLServer 提供了 25 种数据类型:   ·Binary [(n)]   ·Varbinary [(n)]   ·Char [(n)]   ·Varchar[(n)]   ·Nchar[(n)]   ·Nvarchar[(n)]   ·Datetime   ·Smalldatetime   ·Decimal[(p[,s])]   ·Numeric[(p[,s])]   ·Float[(n)]   ·Real   ·Int   ·Smallint   ·Tinyint   ·Money   ·Smallmoney   ·Bit   ·Cursor br 阅读全文

posted @ 2005-09-14 17:24 yunbo 阅读(895) 评论(0) 推荐(0) 编辑

摘要: Dim ts1 As New DataGridTableStyle ts1.MappingName = datagrid.DataMember datagrid.TableStyles.Add(ts1) '隐藏某列,可以设其宽度为0,例子为隐藏第一列 grdResults.TableStyles(0).GridColumnStyles(0).Width = 0 '删除某列,例子为删除第一列 grdResults.TableStyles(0).GridColumnStyles.RemoveAt(0) 阅读全文

posted @ 2005-09-14 01:52 yunbo 阅读(1229) 评论(0) 推荐(0) 编辑