blah blah blah is here! blah blah » Close

0
votes
0 answers

ComboBox filtering

AK01
15

Hi! The question is quite straight - is there a way to filter data based on input. Sure, there is a handy autocompletion feature, but I'd like to filter it like in tables since you have to type the ListItems starting exactly with first le ...

2
votes
1 answers

access value in combobox

I've got a combobox: To populate it, we have: [code]cmbNotes.DataSource = Globals.LookUpHash[EnumList.LookupColumn.NOTES_ID.ToString()]; cmbNotes.DisplayMember = "Name"; cmbNotes.ValueMember = "Id";[/code] But w ...

0
votes
0 answers

A few questions

Hi guys. Been a while since I have asked anything here and the same amount of time since I worked with VB2008. I have decided to make a program for my uncle and then try to sell it to a larger company if it works the way I think it can. ...

0
votes
1 answers

Combobox Items.

I need to compare combobox items (text) with the filename. I tried doing something like this: [code]for(int x =0; x>comboBox1.Items.Count; x++) { if (comboBox1.Items[x].ToString() == filename) // something }[/code] But this is n ...

-1
votes
1 answers

how to give the coding for combobox in c#.

please any one tell me the source code for combobox in c#.

0
votes
16 answers

New set of doubts

I'm trying to create a login code and I'm not able to figureout the code, I'm just trying to compare the username & the password value from access table. Usernames and passwords are in same access table, Table(User)>Column1(Users) ...

0
votes
1 answers

ComboBox 'Un-Selected' Index -1

eeboy
499

I have a situation where the user will pick a selection of 'Actions' from a combo box which is bound to a list. However, it's possible that the user doesn't want to perform any action. Since the action 'None' is not in the bound list (and I ...

0
votes
1 answers

two linked comboboxes (see pics)

[img]http://i49.tinypic.com/2afbbqc.jpg[/img] [img]http://i47.tinypic.com/29j01v.jpg[/img] I have 2 comboboxes, when i select data from top combo, bottom needs to reflect this changes. How to set both datasources in bottom combobox, de ...

1
votes
1 answers

Isn't this simple?

How to make a combobox read only in C# (windows form)? I had manually populated the collection in the list of combobox items, I want that the user should not be able to change the visible text in the combobox.

Feedback