-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
です。リストはどこに初期化されていますか? –
ユーザーからの入力を受け取り、それをリストに追加するだけです。それはボタンのすべてのコードです。 – PhilDelph
私はそれが簡単な間違いだと感じますが、私は何を間違ってやっているのか分かりません。 – PhilDelph