vb.netのmsgboxにテキストを中央揃えすることは可能ですか?これは、自分自身を中心にされていません(HTMLで> <中央に類似)msgboxにテキストを中央揃えすることは可能ですか?
:
MsgBox("Thank you for using Eyes At Ease" & Chr(153) & vbCrLf & _
"You can always access this screen by clicking on the icon in your taskbar" & vbCrLf & _
"To adjust the Hue and Saturation of the screen, please drag the bars" & vbCrLf & _
"You can also choose any color by clicking on CHOOSE and selecting a color" & vbCrLf & _
"If you like the color you are currently use it and want to save it, you can click on ADD COLOR" & vbCrLf & _
"The program will automatically start with the last colored you used", , "Eyes At Ease")
それはラインなしで中心ではないですが、どちらか壊れる:
MsgBox("Thank you for using Eyes At Ease" & Chr(153) & _
"You can always access this screen by clicking on the icon in your taskbar" & _
"To adjust the Hue and Saturation of the screen, please drag the bars" & _
"You can also choose any color by clicking on CHOOSE and selecting a color" & _
"If you like the color you are currently use it and want to save it, you can click on ADD COLOR" & _
"The program will automatically start with the last colored you used", , "Eyes At Ease")
メッセージのダイアログですべてのものを読み込もうとしたら、ユーザーの目が安心していますか? – redsquare