Click here to Skip to main content
15,901,368 members
Home / Discussions / C#
   

C#

 
QuestionMultiview like control in C# Windows Forms App ? Pin
Yasen Georgiew24-Sep-06 0:49
Yasen Georgiew24-Sep-06 0:49 
AnswerRe: Multiview like control in C# Windows Forms App ? Pin
Christian Graus24-Sep-06 1:05
protectorChristian Graus24-Sep-06 1:05 
GeneralRe: Multiview like control in C# Windows Forms App ? Pin
Yasen Georgiew24-Sep-06 2:44
Yasen Georgiew24-Sep-06 2:44 
GeneralRe: Multiview like control in C# Windows Forms App ? Pin
Christian Graus24-Sep-06 10:33
protectorChristian Graus24-Sep-06 10:33 
Questionfill combobox by sqldatareader Pin
Mohammed Elkholy23-Sep-06 22:31
Mohammed Elkholy23-Sep-06 22:31 
AnswerRe: fill combobox by sqldatareader Pin
Garry Shutler23-Sep-06 22:58
Garry Shutler23-Sep-06 22:58 
AnswerRe: fill combobox by sqldatareader Pin
Nafiseh Salmani23-Sep-06 23:21
Nafiseh Salmani23-Sep-06 23:21 
AnswerRe: fill combobox by sqldatareader [modified] Pin
Tilewa24-Sep-06 5:47
Tilewa24-Sep-06 5:47 
better still, just after you execute your data reader, insert a do while loop to iterate all rows read (i.e:
if(dr_combo.HasRows())
{
do
{
comempnam.Add(dr_combo["Cust_Name"]);
// or if you choose to display the Cust_ID then:
//comempnam.Add(dr_combo["Cust_ID"]);
}
while (dr_combo.Read());
}
cn.close();

hopefully, this should work.

'Tilewa


-- modified at 12:38 Sunday 24th September, 2006
Questionhow do i read/save an enum in config file? Pin
Tilewa23-Sep-06 22:01
Tilewa23-Sep-06 22:01 
AnswerRe: how do i read/save an enum in config file? Pin
Christian Graus23-Sep-06 23:20
protectorChristian Graus23-Sep-06 23:20 
QuestionRe: how do i read/save an enum in config file? Pin
Tilewa24-Sep-06 2:48
Tilewa24-Sep-06 2:48 
AnswerRe: how do i read/save an enum in config file? Pin
S. Senthil Kumar24-Sep-06 20:20
S. Senthil Kumar24-Sep-06 20:20 
QuestionWindows Media Player Pin
ytubis23-Sep-06 20:53
ytubis23-Sep-06 20:53 
AnswerRe: Windows Media Player Pin
Nafiseh Salmani23-Sep-06 21:33
Nafiseh Salmani23-Sep-06 21:33 
QuestionDirectX.dll Pin
Nafiseh Salmani23-Sep-06 20:00
Nafiseh Salmani23-Sep-06 20:00 
AnswerRe: DirectX.dll Pin
Christian Graus23-Sep-06 20:11
protectorChristian Graus23-Sep-06 20:11 
GeneralRe: DirectX.dll Pin
Christian Graus23-Sep-06 20:46
protectorChristian Graus23-Sep-06 20:46 
GeneralRe: DirectX.dll Pin
Nafiseh Salmani23-Sep-06 21:08
Nafiseh Salmani23-Sep-06 21:08 
GeneralRe: DirectX.dll Pin
Nafiseh Salmani24-Sep-06 0:13
Nafiseh Salmani24-Sep-06 0:13 
QuestionView Text File Pin
sottos23-Sep-06 16:23
sottos23-Sep-06 16:23 
AnswerRe: View Text File Pin
Judah Gabriel Himango23-Sep-06 16:38
sponsorJudah Gabriel Himango23-Sep-06 16:38 
GeneralRe: View Text File Pin
sottos23-Sep-06 16:54
sottos23-Sep-06 16:54 
GeneralRe: View Text File Pin
Judah Gabriel Himango23-Sep-06 16:55
sponsorJudah Gabriel Himango23-Sep-06 16:55 
GeneralRe: View Text File Pin
sottos23-Sep-06 18:01
sottos23-Sep-06 18:01 
GeneralRe: View Text File Pin
Judah Gabriel Himango23-Sep-06 18:02
sponsorJudah Gabriel Himango23-Sep-06 18:02 

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.