2009-08-20 11 views
0

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") 
+4

メッセージのダイアログですべてのものを読み込もうとしたら、ユーザーの目が安心していますか? – redsquare

答えて

2

いいえ、できません。

あなたができることは、自分のMessageBoxフォームを巻くか、スペーシングで偽装することです。

2

あなた自身を作成する必要があると思いますフォームはメッセージボックスのように見えます。テキストを中央に配置し、カスタム関数から開くことができます(MsgBoxと同じように呼び出すことができます)

+0

私は一度、VB6アプリケーションをプログラミングするとき、私のアプリをクラッシュさせるために使用されるデフォルトのmsgboxを覚えています。 –

関連する問題