里面是c++builder6编程实例教程里面的所有源代码,有11章

源代码在线查看: myclient.dfm

软件大小: 13203 K
上传用户: proudrock
关键词: builder 编程实例 教程 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				object ClientForm: TClientForm
				  Left = 162
				  Top = 87
				  Width = 544
				  Height = 338
				  Caption = 'ClientForm'
				  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 = 8
				    Width = 72
				    Height = 13
				    Caption = '从服务器接收'
				  end
				  object Label2: TLabel
				    Left = 312
				    Top = 8
				    Width = 72
				    Height = 13
				    Caption = '发送给服务器'
				  end
				  object Memo1: TMemo
				    Left = 8
				    Top = 32
				    Width = 217
				    Height = 265
				    Lines.Strings = (
				      'Memo1')
				    TabOrder = 0
				  end
				  object Memo2: TMemo
				    Left = 312
				    Top = 32
				    Width = 217
				    Height = 265
				    Lines.Strings = (
				      'Memo2')
				    TabOrder = 1
				  end
				  object Button1: TButton
				    Left = 232
				    Top = 56
				    Width = 75
				    Height = 25
				    Caption = '接收自服务器'
				    TabOrder = 2
				    OnClick = Button1Click
				  end
				  object Button2: TButton
				    Left = 232
				    Top = 144
				    Width = 75
				    Height = 25
				    Caption = '回传给服务器'
				    TabOrder = 3
				    OnClick = Button2Click
				  end
				  object Button3: TButton
				    Left = 232
				    Top = 232
				    Width = 75
				    Height = 25
				    Caption = '关闭'
				    TabOrder = 4
				    OnClick = Button3Click
				  end
				  object DdeClientItem1: TDdeClientItem
				    DdeConv = DdeClientConv1
				    OnChange = DdeClientItem1Change
				    Left = 136
				    Top = 176
				  end
				  object DdeClientConv1: TDdeClientConv
				    Left = 144
				    Top = 144
				  end
				end
							

相关资源