本文介绍了MsgBox TitleBar文字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 如果我运行MsgBox哇! 我看到标题中的文字 bar - 那里是那个文本 字符串设置来自? 我有权更改它吗?If I run MsgBox "Wow!"and I see text in the titlebar - where is that textstring setting coming from?Do I have access to change it?推荐答案 当然,什么也没做。 MsgBox函数中的一个参数是 " Title"。这就是改变它的例子: Private Sub Command5_Click() Dim intReply As Integer intReply = MsgBox (你想继续吗?,vbYesNo,这是msgbox的 标题) MsgBox"你选择了 &安培; intReply,vbOKOnly + vbInformation End SubSure, nothing doing. One of the arguments in the MsgBox function is"Title". That''s what changes it For example:Private Sub Command5_Click()Dim intReply As IntegerintReply = MsgBox("Do you want to continue?", vbYesNo, "This is thetitle of the msgbox")MsgBox "You chose " & intReply, vbOKOnly + vbInformationEnd Sub 警告:当尝试与Word合并时,更改A97中的TitleBar文本可能会导致问题。 James A. Fortune CD ******** @ FortuneJames.com 最佳简历?: http://www.nashken.com/cartoons/techniks/my_resume.htmlWarning: Changing the TitleBar text in A97 can cause problems whentrying to do a merge with Word.James A. Fortune CD********@FortuneJames.comBest resume?: http://www.nashken.com/cartoons/techniks/my_resume.html 这篇关于MsgBox TitleBar文字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-01 19:49