VB コンソールアプリケーションへのコマンドライン引数の渡し方

フォームの中にテキストボックスを作成し、コマンドライン引数によりテキストを設定する方法。

0

1

 

 

 

 

 

 

 

 

 

 

 

 

 

①でプロジェクトを右クリックし、プロパティを選択し、②、③の手順でコマンドライン引数を設定する。

ソースコード

Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        TextBox1.Text = Microsoft.VisualBasic.Command
    End Sub
End Class

3

 

 

 

 

 

 

プログラムを実行し、コマンドライン引数により、テキストに値が設定された。


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket