Click here to Skip to main content
15,920,596 members
Home / Discussions / C#
   

C#

 
QuestionStandard Deviation Graph?? Pin
parvinder sehrawat4-Oct-05 1:34
parvinder sehrawat4-Oct-05 1:34 
QuestionHandling .class files in C# Pin
Dsypher4-Oct-05 1:07
Dsypher4-Oct-05 1:07 
AnswerRe: Handling .class files in C# Pin
g00fyman4-Oct-05 3:19
g00fyman4-Oct-05 3:19 
AnswerRe: Handling .class files in C# Pin
Daniel Grunwald4-Oct-05 5:56
Daniel Grunwald4-Oct-05 5:56 
Questionbuild a forum Pin
Venkat60704-Oct-05 0:50
Venkat60704-Oct-05 0:50 
AnswerRe: build a forum Pin
ehuysamer4-Oct-05 4:05
ehuysamer4-Oct-05 4:05 
Questionshowing data in datagrid from two relational tables Pin
Rizwan Bashir4-Oct-05 0:50
Rizwan Bashir4-Oct-05 0:50 
AnswerRe: showing data in datagrid from two relational tables Pin
Robert Rohde4-Oct-05 1:17
Robert Rohde4-Oct-05 1:17 
You have to create computed columns in the parent table:

parentTable.Columns.Add("ChildField1", typeof(int), "Max(Child(RelationName).Field1)");


ChieldField1 is the name of the new column.
The type must be set to the type of the child column.
RelationName must be the name of the relation between parent and child table.
Field1 is the name of the child column you are referring to.
The Max is needed because there COULD be several childs existing for a single parent (you could also write Min, which would have the same effect when having a 1to1 relation).

For details about using expressions in DataColumn refer to this page.
QuestionError creating .exe Pin
sean_mufc4-Oct-05 0:42
sean_mufc4-Oct-05 0:42 
QuestionReplace a block of text file Pin
Bharath KR4-Oct-05 0:38
Bharath KR4-Oct-05 0:38 
AnswerRe: Replace a block of text file Pin
Robert Rohde4-Oct-05 1:33
Robert Rohde4-Oct-05 1:33 
QuestionRe: Replace a block of text file Pin
Sean Michael Murphy4-Oct-05 3:26
Sean Michael Murphy4-Oct-05 3:26 
AnswerRe: Replace a block of text file Pin
Bharath KR4-Oct-05 3:48
Bharath KR4-Oct-05 3:48 
QuestionReturning Custom Errors from a custom Action in Deployment projects Pin
lata07mahi4-Oct-05 0:02
lata07mahi4-Oct-05 0:02 
QuestionProblem with DataAdapter and DataSet Pin
kbalias3-Oct-05 23:18
kbalias3-Oct-05 23:18 
AnswerRe: Problem with DataAdapter and DataSet Pin
Guffa3-Oct-05 23:44
Guffa3-Oct-05 23:44 
QuestionC# Graphics Scaling Pin
michaelreian3-Oct-05 23:15
michaelreian3-Oct-05 23:15 
Questioncustom objects + remoting Pin
g00fyman3-Oct-05 23:11
g00fyman3-Oct-05 23:11 
AnswerRe: custom objects + remoting Pin
Robert Rohde3-Oct-05 23:40
Robert Rohde3-Oct-05 23:40 
GeneralRe: custom objects + remoting Pin
g00fyman3-Oct-05 23:56
g00fyman3-Oct-05 23:56 
QuestionSelect Node in TreeView Pin
mimei3-Oct-05 21:52
mimei3-Oct-05 21:52 
AnswerRe: Select Node in TreeView Pin
mav.northwind3-Oct-05 22:35
mav.northwind3-Oct-05 22:35 
QuestionRedirect ALL http request to local proxy server Pin
Anonymous3-Oct-05 20:22
Anonymous3-Oct-05 20:22 
QuestionDouble.NaN question Pin
User 5838523-Oct-05 20:21
User 5838523-Oct-05 20:21 
AnswerRe: Double.NaN question Pin
leppie3-Oct-05 20:28
leppie3-Oct-05 20:28 

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.