Delphi_7.0数据库开发源代码。有内容十一章节

源代码在线查看: unit1.~dfm

软件大小: 663 K
上传用户: rylzll
关键词: Delphi 7.0 数据库 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				object Form1: TForm1
				  Left = 291
				  Top = 199
				  Width = 321
				  Height = 218
				  Caption = 'Form1'
				  Color = clBtnFace
				  Font.Charset = DEFAULT_CHARSET
				  Font.Color = clWindowText
				  Font.Height = -11
				  Font.Name = 'MS Sans Serif'
				  Font.Style = []
				  OldCreateOrder = False
				  PixelsPerInch = 96
				  TextHeight = 13
				  object Label1: TLabel
				    Left = 8
				    Top = 48
				    Width = 34
				    Height = 13
				    Caption = 'ItemNo'
				  end
				  object Label2: TLabel
				    Left = 168
				    Top = 48
				    Width = 22
				    Height = 13
				    Caption = 'QTY'
				  end
				  object DBListBox1: TDBListBox
				    Left = 8
				    Top = 72
				    Width = 121
				    Height = 97
				    DataField = 'ItemNo'
				    DataSource = DataSource1
				    ItemHeight = 13
				    Items.Strings = (
				      '1'
				      '2'
				      '3'
				      '4'
				      '5'
				      '6')
				    TabOrder = 0
				  end
				  object DBComboBox1: TDBComboBox
				    Left = 168
				    Top = 72
				    Width = 89
				    Height = 21
				    DataField = 'Qty'
				    DataSource = DataSource1
				    ItemHeight = 13
				    Items.Strings = (
				      '1'
				      '2'
				      '3'
				      '4'
				      '5'
				      '6'
				      '7'
				      '8'
				      '9'
				      '10')
				    TabOrder = 1
				  end
				  object DBNavigator1: TDBNavigator
				    Left = 8
				    Top = 8
				    Width = 240
				    Height = 25
				    DataSource = DataSource1
				    TabOrder = 2
				  end
				  object Table1: TTable
				    Active = True
				    DatabaseName = 'DBDEMOS'
				    TableName = 'items.db'
				    Left = 152
				    Top = 128
				  end
				  object DataSource1: TDataSource
				    DataSet = Table1
				    Left = 232
				    Top = 128
				  end
				end
							

相关资源