blah blah blah is here! blah blah » Close

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 ...

1
votes
2 answers

how to iterate through numeric textboxes on windows form??

I need to iterate through quite a few numeric textboxes using c# on my windows form, so that I can changet the textbox's contents and for the life of me, can't seem to figure this out. I've tried foreach (Control vControl in this.Control ...

Feedback