Click here to Skip to main content
15,902,492 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help to a new user please Pin
musefan29-Jan-09 6:04
musefan29-Jan-09 6:04 
GeneralRe: Help to a new user please Pin
sridhar88729-Jan-09 18:18
sridhar88729-Jan-09 18:18 
QuestionNew values and Old Values Pin
ziwez029-Jan-09 4:12
ziwez029-Jan-09 4:12 
AnswerRe: New values and Old Values Pin
musefan29-Jan-09 4:22
musefan29-Jan-09 4:22 
AnswerRe: New values and Old Values Pin
Rob Philpott29-Jan-09 5:11
Rob Philpott29-Jan-09 5:11 
AnswerRe: New values and Old Values Pin
N a v a n e e t h29-Jan-09 5:25
N a v a n e e t h29-Jan-09 5:25 
GeneralRe: New values and Old Values Pin
ziwez029-Jan-09 7:36
ziwez029-Jan-09 7:36 
QuestionA problem with DataBinding. [modified] Pin
AxiliuM29-Jan-09 4:09
AxiliuM29-Jan-09 4:09 
I have 2 tables

>>Tb_orders (date, ... , id_cust1, id_cust2)
>>Tb_customers(id_cust, name ...)

and I need to edit the fields id_cust1, id_cust2 using ComboBox
cBox1.DataSource = Tb_customers;
cBox1.DisplayMember = "name";
cBox1.ValueMember = "id_cust";
cBox1.DataBindings.Add("SelectedValue", Tb_orders, "id_cust1");
cBox2.DataSource = Tb_customers;
cBox2.DisplayMember = "name";
cBox2.ValueMember = "id_cust";
cBox2.DataBindings.Add("SelectedValue", Tb_orders, "id_cust2");


everything is clear but cBox1 and cBox2 have the same value. I dont know what I have to do..

modified on Saturday, January 31, 2009 2:03 AM

AnswerRe: A problem with DataBinding. Pin
MadArtSoft29-Jan-09 23:27
MadArtSoft29-Jan-09 23:27 
GeneralRe: A problem with DataBinding. Pin
AxiliuM30-Jan-09 20:03
AxiliuM30-Jan-09 20:03 
QuestionSend e-mail with .mht body from program Pin
collapo29-Jan-09 3:47
collapo29-Jan-09 3:47 
AnswerRe: Send e-mail with .mht body from program Pin
vaghelabhavesh29-Jan-09 13:36
vaghelabhavesh29-Jan-09 13:36 
GeneralRe: Send e-mail with .mht body from program Pin
collapo29-Jan-09 22:02
collapo29-Jan-09 22:02 
Questionaccessing database in SQL server 2005 through C# Pin
Deepali Khalkar29-Jan-09 2:35
Deepali Khalkar29-Jan-09 2:35 
AnswerRe: accessing database in SQL server 2005 through C# Pin
musefan29-Jan-09 2:45
musefan29-Jan-09 2:45 
AnswerRe: accessing database in SQL server 2005 through C# Pin
vaghelabhavesh29-Jan-09 13:28
vaghelabhavesh29-Jan-09 13:28 
QuestionDynamically Creating Treeview Nodes Question Pin
Rafone29-Jan-09 2:30
Rafone29-Jan-09 2:30 
AnswerRe: Dynamically Creating Treeview Nodes Question Pin
musefan29-Jan-09 2:44
musefan29-Jan-09 2:44 
GeneralRe: Dynamically Creating Treeview Nodes Question Pin
Rafone29-Jan-09 3:17
Rafone29-Jan-09 3:17 
AnswerRe: Dynamically Creating Treeview Nodes Question Pin
musefan29-Jan-09 3:32
musefan29-Jan-09 3:32 
GeneralRe: Dynamically Creating Treeview Nodes Question Pin
Rafone29-Jan-09 11:42
Rafone29-Jan-09 11:42 
Questionmemory allocated on heap in method Pin
devvvy29-Jan-09 2:14
devvvy29-Jan-09 2:14 
AnswerRe: memory allocated on heap in method Pin
Rob Philpott29-Jan-09 2:17
Rob Philpott29-Jan-09 2:17 
QuestionRe: memory allocated on heap in method Pin
Eddy Vluggen29-Jan-09 2:22
professionalEddy Vluggen29-Jan-09 2:22 
AnswerRe: memory allocated on heap in method Pin
devvvy29-Jan-09 2:27
devvvy29-Jan-09 2:27 

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.