Click here to Skip to main content
15,891,926 members
Home / Discussions / C#
   

C#

 
AnswerRe: Access to another form's controls. Pin
Giorgi Dalakishvili9-Apr-09 19:56
mentorGiorgi Dalakishvili9-Apr-09 19:56 
AnswerRe: Access to another form's controls. Pin
jaypatel5129-Apr-09 20:04
jaypatel5129-Apr-09 20:04 
GeneralRe: Access to another form's controls. Pin
Fatemeh.k9-Apr-09 20:16
Fatemeh.k9-Apr-09 20:16 
GeneralRe: Access to another form's controls. Pin
DaveyM699-Apr-09 22:35
professionalDaveyM699-Apr-09 22:35 
GeneralRe: Access to another form's controls. Pin
Fatemeh.k13-Apr-09 21:46
Fatemeh.k13-Apr-09 21:46 
GeneralRe: Access to another form's controls. Pin
DaveyM6914-Apr-09 9:10
professionalDaveyM6914-Apr-09 9:10 
QuestionHow to add data from multiple table to datagrid in C# Pin
aashish.saalvi9-Apr-09 18:01
aashish.saalvi9-Apr-09 18:01 
AnswerRe: How to add data from multiple table to datagrid in C# Pin
jaypatel5129-Apr-09 20:09
jaypatel5129-Apr-09 20:09 
Your question is not so clear . .but as much i can understand you want to show all the tables columns in one data grid...

For that you cannot use such a code but u may need to use UNION in your query.
So you need to select all the data in single query using union and then populate data ina single table.

You can google union .. you will get it . ..

It should be something like this :

da1 = new OleDbDataAdapter("select * from InitialApproval where InitialApproval.PrNo='"+rd.GetString(0)+"' UNION select EstimatedVal,FwdDtByPSD from PSDApproval where PSDApproval.PrNo='" + rd.GetString(0) + "' UNION select POValue,rcd_dtCC,saving from CommonData where CommonData.PrNo='" + rd.GetString(0) + "'", con);
da.Fill(ds);
QuestionTabIndex Order problem Pin
soulidentities9-Apr-09 17:14
soulidentities9-Apr-09 17:14 
AnswerRe: TabIndex Order problem Pin
Henry Minute10-Apr-09 1:25
Henry Minute10-Apr-09 1:25 
QuestionHow can I make listBox in WPF set to a default index? Pin
FrankeyJames9-Apr-09 12:41
FrankeyJames9-Apr-09 12:41 
AnswerRe: How can I make listBox in WPF set to a default index? Pin
FrankeyJames10-Apr-09 8:14
FrankeyJames10-Apr-09 8:14 
GeneralRe: How can I make listBox in WPF set to a default index? Pin
FrankeyJames12-Apr-09 16:02
FrankeyJames12-Apr-09 16:02 
QuestionIDictionary on Abstract Class Pin
Jammer9-Apr-09 10:25
Jammer9-Apr-09 10:25 
AnswerRe: IDictionary on Abstract Class Pin
DaveyM699-Apr-09 11:07
professionalDaveyM699-Apr-09 11:07 
GeneralRe: IDictionary on Abstract Class Pin
Jammer9-Apr-09 11:09
Jammer9-Apr-09 11:09 
GeneralRe: IDictionary on Abstract Class Pin
harold aptroot9-Apr-09 11:32
harold aptroot9-Apr-09 11:32 
GeneralRe: IDictionary on Abstract Class Pin
Jammer9-Apr-09 12:20
Jammer9-Apr-09 12:20 
GeneralRe: IDictionary on Abstract Class Pin
harold aptroot9-Apr-09 12:49
harold aptroot9-Apr-09 12:49 
GeneralRe: IDictionary on Abstract Class Pin
Jammer9-Apr-09 12:55
Jammer9-Apr-09 12:55 
GeneralRe: IDictionary on Abstract Class Pin
S. Senthil Kumar11-Apr-09 4:01
S. Senthil Kumar11-Apr-09 4:01 
QuestionOne pixel alignment differences between designer and run time form Pin
Dan Neely9-Apr-09 9:41
Dan Neely9-Apr-09 9:41 
AnswerRe: One pixel alignment differences between designer and run time form Pin
Henry Minute10-Apr-09 1:31
Henry Minute10-Apr-09 1:31 
GeneralRe: One pixel alignment differences between designer and run time form Pin
Dan Neely10-Apr-09 2:55
Dan Neely10-Apr-09 2:55 
GeneralRe: One pixel alignment differences between designer and run time form Pin
Dan Neely10-Apr-09 11:07
Dan Neely10-Apr-09 11:07 

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.