Click here to Skip to main content
15,887,331 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can you tell if an element in a datagrid has the focus? Pin
work_to_live24-Jul-03 13:31
work_to_live24-Jul-03 13:31 
General2 projects 1 class Pin
albean24-Jul-03 10:45
albean24-Jul-03 10:45 
GeneralRe: 2 projects 1 class Pin
David Stone24-Jul-03 10:51
sitebuilderDavid Stone24-Jul-03 10:51 
GeneralRe: 2 projects 1 class Pin
albean24-Jul-03 11:06
albean24-Jul-03 11:06 
GeneralRe: 2 projects 1 class Pin
Daniel Turini24-Jul-03 11:13
Daniel Turini24-Jul-03 11:13 
GeneralRe: 2 projects 1 class Pin
David Stone24-Jul-03 11:46
sitebuilderDavid Stone24-Jul-03 11:46 
GeneralRe: 2 projects 1 class Pin
albean25-Jul-03 9:19
albean25-Jul-03 9:19 
Generalaccessing controls through a collection Pin
Rbledwards24-Jul-03 10:44
Rbledwards24-Jul-03 10:44 
Hi, I am collaborating/taking over a project from another developer in my office. One part is a Windows form with a CheckBoxList controls on top and rows of ComboBoxes on bottom like this:

cbo1_1 cbo1_2 cbo1_3 cbo1_4
cbo2_1 cbo2_2 cbo2_3 cbo2_4
etc...

If there is anything selected in the CheckListBox then row 1 is enabled. More rows could be enabled depending on what exactly is checked.


The problem is that so much code is duplicated. For instance, each cbo is bound to a column in a dataset. For each cbo this code exists:
-------------------
private void Populatecbo1(System.Windows.Forms.ComboBox s)<br />
		{<br />
			s.Items.Clear();<br />
			int Count = _aColumn.Length;<br />
			for(int i =0; i < Count; i++)<br />
			{<br />
				s.Items.Add(_aColumn[i].ToString());<br />
			}<br />
		}
---------------------

and one for cbo2 and so on. Theres also literally thousands of lines of switch statements for enabling/disabling cbo's.

Isn't there a better way to do this without duplicating all of this code?

Thanks,


Robert
GeneralRe: accessing controls through a collection Pin
Furty24-Jul-03 15:15
Furty24-Jul-03 15:15 
GeneralRe: accessing controls through a collection Pin
LongRange.Shooter29-Jul-03 8:35
LongRange.Shooter29-Jul-03 8:35 
GeneralThread.Sleep is too slow Pin
eggie524-Jul-03 10:26
eggie524-Jul-03 10:26 
GeneralRe: Thread.Sleep is too slow Pin
albean24-Jul-03 10:30
albean24-Jul-03 10:30 
GeneralRe: Thread.Sleep is too slow Pin
eggie524-Jul-03 11:35
eggie524-Jul-03 11:35 
GeneralRe: Thread.Sleep is too slow Pin
albean24-Jul-03 14:26
albean24-Jul-03 14:26 
GeneralRe: Thread.Sleep is too slow Pin
eggie524-Jul-03 17:36
eggie524-Jul-03 17:36 
GeneralRe: Thread.Sleep is too slow Pin
albean25-Jul-03 9:09
albean25-Jul-03 9:09 
GeneralRe: Thread.Sleep is too slow Pin
eggie525-Jul-03 16:54
eggie525-Jul-03 16:54 
GeneralRe: Thread.Sleep is too slow Pin
LongRange.Shooter25-Jul-03 10:39
LongRange.Shooter25-Jul-03 10:39 
GeneralRe: Thread.Sleep is too slow Pin
Daniel Turini24-Jul-03 11:15
Daniel Turini24-Jul-03 11:15 
GeneralRe: Thread.Sleep is too slow Pin
eggie524-Jul-03 11:33
eggie524-Jul-03 11:33 
GeneralRe: Thread.Sleep is too slow Pin
jparsons24-Jul-03 15:02
jparsons24-Jul-03 15:02 
GeneralCan't Distribute C# Console App. Pin
Dato24-Jul-03 7:27
Dato24-Jul-03 7:27 
GeneralRe: Can't Distribute C# Console App. Pin
Daniel Turini24-Jul-03 8:12
Daniel Turini24-Jul-03 8:12 
GeneralRe: Can't Distribute C# Console App. Pin
Dato24-Jul-03 11:56
Dato24-Jul-03 11:56 
GeneralRe: Can't Distribute C# Console App. Pin
Anonymous24-Jul-03 16:12
Anonymous24-Jul-03 16:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.