C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

C# と VB.NET の入門サイト

Re[3]: コンボボックスの空白


(過去ログ 65 を表示中)

[トピック内 4 記事 (1 - 4 表示)]  << 0 >>

■37982 / inTopicNo.1)  コンボボックスの空白
  
□投稿者/ QuaterBack (3回)-(2009/07/05(Sun) 12:23:14)

分類:[.NET 全般] 

質問します。
テキストボックスの値が空白の時は、
Me.txtField.Text=""
で事はすみますが、

コンボボックスで現在悩んでいます。
this.cboFoodBigCategory_ID.Text
というコンボボックスがあるとして、
各々処理を実行した後の値を
MessageBox.Show(this.cboFoodBigCategory_ID.Text);
で確認しています。

●this.cboFoodBigCategory_ID.SelectedValue=0;を実行した場合に
this.cboFoodBigCategory_ID.SelectedText:(空白)
this.cboFoodBigCategory_ID.SelectionLength:0
this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最後のインデックス)
this.cboFoodBigCategory_ID.Text:(参照テーブルの最後の値)
となります。

●this.cboFoodBigCategory_ID.Text="";を実行した場合に
this.cboFoodBigCategory_ID.SelectedText:(空白)
this.cboFoodBigCategory_ID.SelectionLength:0
this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最初のインデックス)
this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
となります。

●this.cboFoodBigCategory_ID.SelectedText="";を実行した場合に
this.cboFoodBigCategory_ID.SelectedText:(空白)
this.cboFoodBigCategory_ID.SelectionLength:0
this.cboFoodBigCategory_ID.SelectedValue:(空白)
this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
となります。

理想は、
this.cboFoodBigCategory_ID.SelectedValue:null
this.cboFoodBigCategory_ID.Text:""かnull
なのですが、うまくいきません。

どなたか、よい方法をご教授ください。
よろしくお願いします。









引用返信 編集キー/
■37983 / inTopicNo.2)  Re[1]: コンボボックスの空白
□投稿者/ QuaterBack (4回)-(2009/07/05(Sun) 12:31:13)
すみません。
>this.cboFoodBigCategory_ID.Text
コンボボックスのID(Name)は
cboFoodBigCategory_ID
です。修正いたします。

No37982 (QuaterBack さん) に返信
> 質問します。
> テキストボックスの値が空白の時は、
> Me.txtField.Text=""
> で事はすみますが、
>
> コンボボックスで現在悩んでいます。
> this.cboFoodBigCategory_ID.Text
> というコンボボックスがあるとして、
> 各々処理を実行した後の値を
> MessageBox.Show(this.cboFoodBigCategory_ID.Text);
> で確認しています。
>
> ●this.cboFoodBigCategory_ID.SelectedValue=0;を実行した場合に
> this.cboFoodBigCategory_ID.SelectedText:(空白)
> this.cboFoodBigCategory_ID.SelectionLength:0
> this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最後のインデックス)
> this.cboFoodBigCategory_ID.Text:(参照テーブルの最後の値)
> となります。
>
> ●this.cboFoodBigCategory_ID.Text="";を実行した場合に
> this.cboFoodBigCategory_ID.SelectedText:(空白)
> this.cboFoodBigCategory_ID.SelectionLength:0
> this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最初のインデックス)
> this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
> となります。
>
> ●this.cboFoodBigCategory_ID.SelectedText="";を実行した場合に
> this.cboFoodBigCategory_ID.SelectedText:(空白)
> this.cboFoodBigCategory_ID.SelectionLength:0
> this.cboFoodBigCategory_ID.SelectedValue:(空白)
> this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
> となります。
>
> 理想は、
> this.cboFoodBigCategory_ID.SelectedValue:null
> this.cboFoodBigCategory_ID.Text:""かnull
> なのですが、うまくいきません。
>
> どなたか、よい方法をご教授ください。
> よろしくお願いします。
>
>
>
>
>
>
>
>
>
引用返信 編集キー/
■37987 / inTopicNo.3)  Re[2]: コンボボックスの空白
□投稿者/ QuaterBack (5回)-(2009/07/05(Sun) 15:14:36)
追記します。
分類:C#
です。
No37983 (QuaterBack さん) に返信
> すみません。
> >this.cboFoodBigCategory_ID.Text
> コンボボックスのID(Name)は
> cboFoodBigCategory_ID
> です。修正いたします。
>
> ■No37982 (QuaterBack さん) に返信
>>質問します。
>>テキストボックスの値が空白の時は、
>>Me.txtField.Text=""
>>で事はすみますが、
>>
>>コンボボックスで現在悩んでいます。
>>this.cboFoodBigCategory_ID.Text
>>というコンボボックスがあるとして、
>>各々処理を実行した後の値を
>>MessageBox.Show(this.cboFoodBigCategory_ID.Text);
>>で確認しています。
>>
>>●this.cboFoodBigCategory_ID.SelectedValue=0;を実行した場合に
>>this.cboFoodBigCategory_ID.SelectedText:(空白)
>>this.cboFoodBigCategory_ID.SelectionLength:0
>>this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最後のインデックス)
>>this.cboFoodBigCategory_ID.Text:(参照テーブルの最後の値)
>>となります。
>>
>>●this.cboFoodBigCategory_ID.Text="";を実行した場合に
>>this.cboFoodBigCategory_ID.SelectedText:(空白)
>>this.cboFoodBigCategory_ID.SelectionLength:0
>>this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最初のインデックス)
>>this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
>>となります。
>>
>>●this.cboFoodBigCategory_ID.SelectedText="";を実行した場合に
>>this.cboFoodBigCategory_ID.SelectedText:(空白)
>>this.cboFoodBigCategory_ID.SelectionLength:0
>>this.cboFoodBigCategory_ID.SelectedValue:(空白)
>>this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
>>となります。
>>
>>理想は、
>>this.cboFoodBigCategory_ID.SelectedValue:null
>>this.cboFoodBigCategory_ID.Text:""かnull
>>なのですが、うまくいきません。
>>
>>どなたか、よい方法をご教授ください。
>>よろしくお願いします。
>>
>>
>>
>>
>>
>>
>>
>>
>>
引用返信 編集キー/
■37999 / inTopicNo.4)  Re[3]: コンボボックスの空白
□投稿者/ QuaterBack (6回)-(2009/07/05(Sun) 21:02:21)
質問を変えます。
終了いたします。
No37987 (QuaterBack さん) に返信
> 追記します。
> 分類:C#
> です。
> ■No37983 (QuaterBack さん) に返信
>>すみません。
>>>this.cboFoodBigCategory_ID.Text
>>コンボボックスのID(Name)は
>>cboFoodBigCategory_ID
>>です。修正いたします。
>>
>>■No37982 (QuaterBack さん) に返信
> >>質問します。
> >>テキストボックスの値が空白の時は、
> >>Me.txtField.Text=""
> >>で事はすみますが、
> >>
> >>コンボボックスで現在悩んでいます。
> >>this.cboFoodBigCategory_ID.Text
> >>というコンボボックスがあるとして、
> >>各々処理を実行した後の値を
> >>MessageBox.Show(this.cboFoodBigCategory_ID.Text);
> >>で確認しています。
> >>
> >>●this.cboFoodBigCategory_ID.SelectedValue=0;を実行した場合に
> >>this.cboFoodBigCategory_ID.SelectedText:(空白)
> >>this.cboFoodBigCategory_ID.SelectionLength:0
> >>this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最後のインデックス)
> >>this.cboFoodBigCategory_ID.Text:(参照テーブルの最後の値)
> >>となります。
> >>
> >>●this.cboFoodBigCategory_ID.Text="";を実行した場合に
> >>this.cboFoodBigCategory_ID.SelectedText:(空白)
> >>this.cboFoodBigCategory_ID.SelectionLength:0
> >>this.cboFoodBigCategory_ID.SelectedValue:(参照テーブルの最初のインデックス)
> >>this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
> >>となります。
> >>
> >>●this.cboFoodBigCategory_ID.SelectedText="";を実行した場合に
> >>this.cboFoodBigCategory_ID.SelectedText:(空白)
> >>this.cboFoodBigCategory_ID.SelectionLength:0
> >>this.cboFoodBigCategory_ID.SelectedValue:(空白)
> >>this.cboFoodBigCategory_ID.Text:(参照テーブルの最初の値)
> >>となります。
> >>
> >>理想は、
> >>this.cboFoodBigCategory_ID.SelectedValue:null
> >>this.cboFoodBigCategory_ID.Text:""かnull
> >>なのですが、うまくいきません。
> >>
> >>どなたか、よい方法をご教授ください。
> >>よろしくお願いします。
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
解決済み
引用返信 編集キー/


トピック内ページ移動 / << 0 >>

このトピックに書きこむ

過去ログには書き込み不可

管理者用

- Child Tree -