当前位置:   article > 正文

VB6.0的MsgBox语句_vb6.0 msgbox弹窗

vb6.0 msgbox弹窗

MsgBox的用法

  分函数和语句,先讨论语句

形式

  MsgBox (Prompt [,Buttons] [,Title] [,Helpfile,Context])

Promt

  必选。字符串表达式。显示消息。最大长度为1024个字符。换行用(Chr(13) & Chr(10))

    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world"
    End Sub
  • 1
  • 2
  • 3

Button:

按钮类型:

符号常量作用
VBOkOnly0只显示‘确定’按钮
VBOKCancle1只显示‘确定’和‘取消’按钮
vbAbortRetryIgnore2显示‘放弃’、‘重试’和‘忽略’按钮
vbYesNoCancel3显示‘是’、‘否’和‘取消’按钮
VBYesNo4显示‘是’和‘否’按钮
VBRetryCancel5显示‘重试’和‘取消’按钮
    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world", 4
    End Sub
  • 1
  • 2
  • 3
  • 4

图标形式:

符号常量作用
VBCritical16显示系统叉号图标
VBQuestion32显示系统问号图标
vbExclamation48显示系统叹号图标
vbInformation64显示系统信息图标
    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world", 16
    End Sub
  • 1
  • 2
  • 3

默认按钮:

符号常量作用
VBDefaultButton10第一个按钮为默认按钮
VBDefaultButton2256第二个按钮为默认按钮
VBDefaultButton3512第三个按钮为默认按钮
VBDefaultButton4768第四个按钮为默认按钮
    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world", 256
    End Sub
  • 1
  • 2
  • 3
  • 4

按钮不够,默认为第一个按钮

强制返回:

符号常量作用
VBApplicationModal0应用程序强制返回
VBSystemModal4096系统强制返回

如果用同时定义按钮类型和图标样式,可取两者值相加。

    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world", 49
    End Sub
  • 1
  • 2
  • 3
  • 4

Title

  在标题框显示内容

    Private Sub Form_Load()
    MsgBox "welcome" & Chr(10) & Chr(13) & "hello world", 49,"Door"
    End Sub
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号