菜鸟提问了(100分)

  • 主题发起人 主题发起人 lulu037
  • 开始时间 开始时间
L

lulu037

Unregistered / Unconfirmed
GUEST, unregistred user!
我是一个刚刚使用Delphi的程序员,很菜的,提一个很菜的问题
我新建一个工程,默认的Form中有一个按钮,然后再建一个form,在主form的按钮中
如下代码:form2.showmodal
但编译时,系统提示“resours Tform1 not found”form名称都是默认的,我没有做过修改,
请问这是怎么回事情?
 
应该是“resours Tform2 not found”吧!
如果是这样的话,你在unit1可的开头,uses中加入unit2(即form2的pas文件名)
 
同意:)
混分[:D]
 
是这样的,有时候是'resours Tform2 not found',但是我已经将unit2包含了,
更严重的是,有时候form编辑环境中想转换到form下的时候,那个form没有了!只有如下的
代码:object Form2: TForm2
Left = 284
Top = 69
Width = 544
Height = 375
Caption = #28436#31034#31383#21475
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 ListView1: TListView
Left = 0
Top = 0
Width = 537
Height = 169
Columns = <
item
end
item
Caption = #22995#21517
end
item
Caption = #24615#21035
end
item
Caption = #29983#26085
end
item
Caption = #32852#31995#30005#35805
end
item
Caption = #32852#31995#22320#22336
end
item
Caption = 'Email'#22320#22336
end>
TabOrder = 0
ViewStyle = vsReport
end
object Button1: TButton
Left = 208
Top = 240
Width = 75
Height = 25
Caption = 'Start'
TabOrder = 1
end
object Button2: TButton
Left = 328
Top = 240
Width = 75
Height = 25
Caption = 'End'
TabOrder = 2
end
object Database1: TDatabase
DatabaseName = 'luming'
DriverName = 'SQL Server'
SessionName = 'Default'
Left = 176
Top = 56
end
object lumingQuery: TQuery
DatabaseName = 'luming'
Left = 88
Top = 72
end
end
 
在上面这些文字里,点右键,看见有一个叫“View as Form”的选项,就是他了!
因为系统允许在“View as Text”和“View as Form”之间切换。
 
这是VIEW IN TEXT,把它关了就行了。或重新把FORM引入到PROCJECT中
 
混分。同意楼上的。呵呵
 
多人接受答案了。
 
后退
顶部