投稿者 初心者  (社会人) 投稿日時 2018/5/24 14:01:07
魔界の仮面弁士さま

>下記の違いは分かりますよね。
>Label1.Text = ComboBox1.GetItemText(ComboBox1.SelectedItem)
>Label2.Text = "ComboBox1.GetItemText(ComboBox1.SelectedItem)"

文字列として扱うかという認識なのですがあってますでしょうか?

Dim adapter As New SqlDataAdapter("SELECT [ID], [所在], [種類] FROM [Table] WHERE " & ComboBox1.GetItemText(ComboBox1.SelectedItem) & " Like N'%" & TextBox1.Text & "%'", cnn)

と直したら大丈夫でした。

" & ○ & "の"&はどうゆう役割なのでしょうか?

それと

Dim adapter As New SqlDataAdapter("SELECT [ID], [所在], [種類] FROM [Table] WHERE " & ComboBox1.SelectedItem & " Like N'%" & TextBox1.Text & "%'", cnn)

という形でも動くのですがどうなんでしょうか?