2016-03-21 25 views
-1

ユーザーが入力した文字列をリストに転送しようとしています。追加ボタンをクリックすると、リストが消去されます。ここにコードがあります。ここにあなたの助けfoはリストに項目を追加する

Const ModelPrompt As String = "Input Car Model" 
Const ModelTitle As String = "Car Model" 

Const PricePrompt As String = "Input Car MSRP" 
Const PriceTitle As String = "Car MSRP" 


carModel = InputBox(ModelPrompt, ModelTitle) 
carPrice = InputBox(PricePrompt, PriceTitle) 

Do While carModel <> String.Empty _ 
AndAlso carPrice <> String.Empty 

    carListBox.Items.Add(carModel) 
    msrpListBox.Items.Add(carPrice) 

Loop 
+0

です。リストはどこに初期化されていますか? –

+0

ユーザーからの入力を受け取り、それをリストに追加するだけです。それはボタンのすべてのコードです。 – PhilDelph

+0

私はそれが簡単な間違いだと感じますが、私は何を間違ってやっているのか分かりません。 – PhilDelph

答えて

0

をありがとう、私はあなたがあなたの全体のコードを投稿する必要があると思うコード私の友人

Const ModelPrompt As String = "Input Car Model" 
    Const ModelTitle As String = "Car Model" 

    Const PricePrompt As String = "Input Car MSRP" 
    Const PriceTitle As String = "Car MSRP" 

    Dim carModel As Object = InputBox(ModelPrompt, ModelTitle) 
    Dim carPrice As Object = InputBox(PricePrompt, PriceTitle) 

    If String.IsNullOrEmpty(carModel) = False And String.IsNullOrEmpty(carPrice) = False Then 
     ListBox1.Items.Add(carModel) 
     ListBox2.Items.Add(carPrice) 
    End If 
関連する問題