Click here to Skip to main content
15,890,438 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataTable.Select() has a problem Pin
Paul Riley26-Feb-03 16:17
Paul Riley26-Feb-03 16:17 
Generaltransparent user control - background image not lined up Pin
bwells26-Feb-03 9:23
bwells26-Feb-03 9:23 
GeneralCustom IE Toolbar w/C# Pin
C#iruzo26-Feb-03 5:59
C#iruzo26-Feb-03 5:59 
GeneralRe: Custom IE Toolbar w/C# Pin
leppie26-Feb-03 6:06
leppie26-Feb-03 6:06 
GeneralRe: Custom IE Toolbar w/C# Pin
C#iruzo26-Feb-03 6:23
C#iruzo26-Feb-03 6:23 
GeneralRe: Custom IE Toolbar w/C# Pin
leppie26-Feb-03 6:27
leppie26-Feb-03 6:27 
GeneralRe: Custom IE Toolbar w/C# Pin
Arun Bhalla5-Mar-03 7:39
Arun Bhalla5-Mar-03 7:39 
QuestionTextbox Control databinding, a bug? Pin
DionChen26-Feb-03 5:28
DionChen26-Feb-03 5:28 
Hi, all:

I have WinForm app to edit MS Access DB. On the dataset I have serveral Master-detail tables( the Relation is edited in the schema editorat design time, not runtime). The Master table is databind to a datagrid and detail tables are databind to either datagrids or a set of textbox controls. When I first load ( fill) the data, everything works fine and textboxes display the correct data. When I change selections in the master table, the textboxes change accordingly. Now, when I REOPEN the MDB file, the the tables which databind to the datagrid works as before, but the table that bind to a set of Textboxes do not have any data displayed. I can NOT figure it out what is wrong. I appreciate any help/insight you have. Thanks very much. The following is the code I used to bind the data after I open and fill the dataset: dsMain1

***************

textBox1.DataBindings.Clear();
textBox1.DataBindings.Add(new Binding("Text", dsMain1, "MyMaster.MasterToDetail.name"));
textBox2.DataBindings.Clear();
textBox2.DataBindings.Add(new Binding("Text", dsMain1, "MyMaster.MasterToDetail.Title"));
textBox3.DataBindings.Clear();
textBox3.DataBindings.Add(new Binding("Text", dsMain1, "MyMaster.MasterToDetail.Company"));

***************

Dion
QuestionIs it possible to send images in a client server application using socket programming?? Pin
dalia_azzam200326-Feb-03 4:56
dalia_azzam200326-Feb-03 4:56 
AnswerRe: Is it possible to send images in a client server application using socket programming?? Pin
Giles26-Feb-03 5:47
Giles26-Feb-03 5:47 
GeneralRe: Is it possible to send images in a client server application using socket programming?? Pin
dalia_azzam200326-Feb-03 6:42
dalia_azzam200326-Feb-03 6:42 
QuestionBeginner Question: Where's my window?? Pin
Mauritsius26-Feb-03 2:33
Mauritsius26-Feb-03 2:33 
AnswerRe: Beginner Question: Where's my window?? Pin
Stephane Rodriguez.26-Feb-03 4:32
Stephane Rodriguez.26-Feb-03 4:32 
GeneralRe: Beginner Question: Where's my window?? Pin
Hesham Amin26-Feb-03 5:00
Hesham Amin26-Feb-03 5:00 
GeneralRe: Beginner Question: Where's my window?? Pin
Stephane Rodriguez.26-Feb-03 5:18
Stephane Rodriguez.26-Feb-03 5:18 
AnswerRe: Beginner Question: Where's my window?? Pin
Mauritsius26-Feb-03 7:27
Mauritsius26-Feb-03 7:27 
Questionsyntax highlight with richtextbox, possible? Pin
Q&A26-Feb-03 2:12
Q&A26-Feb-03 2:12 
AnswerRe: syntax highlight with richtextbox, possible? Pin
se99ts26-Feb-03 2:40
se99ts26-Feb-03 2:40 
GeneralRe: syntax highlight with richtextbox, possible? Pin
Anonymous26-Feb-03 5:17
Anonymous26-Feb-03 5:17 
GeneralRe: syntax highlight with richtextbox, possible? Pin
Q&A26-Feb-03 7:26
Q&A26-Feb-03 7:26 
GeneralRe: syntax highlight with richtextbox, possible? Pin
se99ts26-Feb-03 9:33
se99ts26-Feb-03 9:33 
GeneralException Handling thru WinForm events Pin
Domster26-Feb-03 1:58
Domster26-Feb-03 1:58 
GeneralRe: Exception Handling thru WinForm events Pin
leppie26-Feb-03 6:13
leppie26-Feb-03 6:13 
GeneralOwnerDraw TextBox Pin
Furty26-Feb-03 1:44
Furty26-Feb-03 1:44 
GeneralRe: OwnerDraw TextBox Pin
Stephane Rodriguez.26-Feb-03 4:59
Stephane Rodriguez.26-Feb-03 4:59 

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.