Click here to Skip to main content
15,899,937 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need to Insert into TEXT1.TXT from TEXT2.TXT Pin
Tamimi - Code15-Nov-06 20:00
Tamimi - Code15-Nov-06 20:00 
GeneralRe: Need to Insert into TEXT1.TXT from TEXT2.TXT Pin
M Riaz Bashir15-Nov-06 20:07
M Riaz Bashir15-Nov-06 20:07 
GeneralRe: Need to Insert into TEXT1.TXT from TEXT2.TXT Pin
Eduard Keilholz15-Nov-06 20:20
Eduard Keilholz15-Nov-06 20:20 
GeneralRe: Need to Insert into TEXT1.TXT from TEXT2.TXT Pin
M Riaz Bashir15-Nov-06 20:32
M Riaz Bashir15-Nov-06 20:32 
QuestionPull/Driverless printing Pin
cathy_d'souza15-Nov-06 19:29
cathy_d'souza15-Nov-06 19:29 
Questionproblem with crystal reports Pin
Mridang Agarwalla15-Nov-06 19:11
Mridang Agarwalla15-Nov-06 19:11 
AnswerRe: problem with crystal reports Pin
Nadeem Akhter15-Nov-06 23:12
Nadeem Akhter15-Nov-06 23:12 
AnswerRe: problem with crystal reports Pin
sreenivasbukka15-Nov-06 23:47
sreenivasbukka15-Nov-06 23:47 
here is the code i'm sending to your values to crystal reports as parameters to crystal reports
call below montioned code into you application.

void para(string fldName, string valName)
{
ParameterField paramfield1 = new ParameterField();
ParameterDiscreteValue disval1 = new ParameterDiscreteValue();
ParameterValues val1 = new ParameterValues();

paramfield1.ParameterFieldName = fldName;
disval1.Value = valName;
val1.Add(disval1);
paramfield1.CurrentValues = val1;
CrystalReportViewer1.ParameterFieldInfo.Add(paramfield1);
}



Happy coading.........

B.Sriniva
Ramco Systems Ltd
Chennai
9940145626
Questioncolumn hiding in Gridview Pin
RanjithLogics15-Nov-06 16:57
RanjithLogics15-Nov-06 16:57 
AnswerRe: column hiding in Gridview Pin
AB777115-Nov-06 21:08
AB777115-Nov-06 21:08 
GeneralRe: column hiding in Gridview Pin
RanjithLogics16-Nov-06 17:34
RanjithLogics16-Nov-06 17:34 
GeneralRe: column hiding in Gridview Pin
AB777116-Nov-06 17:42
AB777116-Nov-06 17:42 
GeneralRe: column hiding in Gridview Pin
RanjithLogics16-Nov-06 18:07
RanjithLogics16-Nov-06 18:07 
AnswerRe: column hiding in Gridview Pin
shopi3015-Nov-06 21:53
shopi3015-Nov-06 21:53 
GeneralRe: column hiding in Gridview Pin
RanjithLogics16-Nov-06 17:50
RanjithLogics16-Nov-06 17:50 
Questionhelp for enabled property Pin
vamsimohan2115-Nov-06 16:34
vamsimohan2115-Nov-06 16:34 
AnswerRe: help for enabled property Pin
Christian Graus15-Nov-06 16:52
protectorChristian Graus15-Nov-06 16:52 
GeneralRe: help for enabled property Pin
vamsimohan2115-Nov-06 17:18
vamsimohan2115-Nov-06 17:18 
GeneralRe: help for enabled property Pin
Christian Graus15-Nov-06 17:22
protectorChristian Graus15-Nov-06 17:22 
GeneralRe: help for enabled property Pin
vamsimohan2115-Nov-06 17:30
vamsimohan2115-Nov-06 17:30 
GeneralRe: help for enabled property Pin
Christian Graus15-Nov-06 17:33
protectorChristian Graus15-Nov-06 17:33 
QuestionAsynchronous webrequest problem Pin
wajih.boukaram15-Nov-06 15:49
wajih.boukaram15-Nov-06 15:49 
AnswerRe: Asynchronous webrequest problem Pin
Christian Graus15-Nov-06 15:54
protectorChristian Graus15-Nov-06 15:54 
GeneralRe: Asynchronous webrequest problem Pin
wajih.boukaram15-Nov-06 16:10
wajih.boukaram15-Nov-06 16:10 
GeneralRe: Asynchronous webrequest problem Pin
Christian Graus15-Nov-06 16:53
protectorChristian Graus15-Nov-06 16:53 

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.