VB窗体的属性设置代码
这段程序中
Begin VB.Forms_frmmain BorderStyle = 1 'fixed single
Caption = "速算24"
clientHeight = 6375
clientLeft = 1545
clientTop = 795
clientWidth = 7515
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'false
Italic = 0 'false
Strikethrough = 0
endproperty
LinkTopic = "form1"
lockcontrols = -1
MaxButton = 0
scalleheight = 425
ScaleMode = 3
ScaleWidth = 501
StartUpPosition = 2
为什么调试是说无外部程序,但是教程里没有说明,可否解释一下
Begin VB.Forms_frmmain 这一句
这段代码在哪里输入
新手 ty
相关问答:
VB code:
Private objXml As New DOMDocument60
Private xmlRoot As IXMLDOMElement
Public Function xmlNode()
Set objXml = New DOMDocument
objXml.async = False
objXml.Load ("E:\Li ......
function multi(a as integer,b as integer,optional third)
dim n as integer
n = a * b
if not ismissing (third) then
n = n * thid
end if
multi = n
end fu ......
Private Sub Command1_Click()
Dim m As Integer '接受文本框一的数值
Dim n As Integer '接受文本框二的数值
Dim k As Integ ......
form1 中,我在Text1里输入1111111111
Dim str1 As String
Private Sub Command1_Click()
str1 = Me.Text1.Text
Combo1.AddItem str1
End Sub
点Command1,就写到Combo1的 下拉菜单里去了 ......