自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (3)
  • 收藏
  • 关注

空空如也

PowerDesigner使用教程.chm

  PowerDesigner是Sybase公司的CASE工具集,使用它可以方便地对管理信息系统进行分析设计,它几乎包括了数据库模型设计的全过程。利用PowerDesigner可以制作数据流程图、概念数据模型、物理数据模型,可以生成多种客户端开发工具的应用程序,还可为数据仓库制作结构模型,也能对团队设计模型进行控制。它可与许多流行的数据库设计软件,例如:PowerBuilder,Delphi,VB等相配合使用来缩短开发时间和使系统设计更优化。

2009-06-25

powerdesigner数据库建模技术.pdf

:PowerDesigner 建模环境,PowerDesigner 简介, MetaWorks 模块,DataArchitect 模块,概念数据模型的建立、完善、检查、 固化和提取,物理数据模型的生成、调整及检查,生成数据库过程,产生触发 器、制作存储过程和函数,对数据库和数据库生成脚本进行逆向工程产生物理 数据模型,建立子模型的方法,使用MetaWorks 进行团队控制的方法,使用 MetaBrowser 查询MetaWorks 字典的方法。

2009-06-25

在页面设置自定义控中控件的大小

using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class test : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e) { TextBox1.Height = _txtheight; TextBox1.Width = _txtwidth; TextBox2.Height = _txtheight; TextBox2.Width = _txtwidth; Button1.Height = _labheight; Button1.Width = _labwidth; } private int _labheight; private int _labwidth; private int _txtheight; private int _txtwidth; public int laheight { get { return _labheight; } set { _labheight = value; } } public int labwidth { get { return _labwidth; } set { _labwidth = value; } } public int txtheight { get { return _txtheight; } set { _txtheight = value; } } public int txtwidth { get { return _txtwidth; } set { _txtwidth = value; } } protected void Button1_Click(object sender, EventArgs e) { Button1.Text = (Convert.ToInt32(TextBox1.Text) + Convert.ToInt32(TextBox2.Text)).ToString(); } }

2009-05-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除