Click here to Skip to main content
15,909,835 members
Home / Discussions / C#
   

C#

 
GeneralRe: Clickable Multiple Labels Pin
djnevs17-Jun-08 9:04
djnevs17-Jun-08 9:04 
GeneralRe: Clickable Multiple Labels Pin
Judah Gabriel Himango17-Jun-08 9:57
sponsorJudah Gabriel Himango17-Jun-08 9:57 
QuestionC# Vocabulary Chart (or Flow Chart) [modified] Pin
JustBFlat4Now17-Jun-08 7:19
JustBFlat4Now17-Jun-08 7:19 
AnswerRe: C# Vocabulary Chart (or Flow Chart) Pin
Thomas Stockwell18-Jun-08 16:09
professionalThomas Stockwell18-Jun-08 16:09 
GeneralRe: C# Vocabulary Chart (or Flow Chart) Pin
JustBFlat4Now23-Jun-08 10:00
JustBFlat4Now23-Jun-08 10:00 
QuestionCrystal report XI keeps asking for a parameter Pin
Newbie_Toy17-Jun-08 6:36
Newbie_Toy17-Jun-08 6:36 
AnswerRe: Crystal report XI keeps asking for a parameter Pin
Newbie_Toy17-Jun-08 6:38
Newbie_Toy17-Jun-08 6:38 
AnswerRe: Crystal report XI keeps asking for a parameter Pin
SomeGuyThatIsMe17-Jun-08 7:08
SomeGuyThatIsMe17-Jun-08 7:08 
instead of creating new objects reference the ones in the report file, i.e.

ParameterField pfPurchaseDate = rpt.ParameterFields[0];
pfPurchaseDate.Name = "INVOICE_DATE";
pfPurchaseDate.HasCurrentValue = true;

ParameterDiscreteValue pdvPurchaseDate = new ParameterDiscreteValue();

pdvPurchaseDate.Value = purchaseDate;

pfPurchaseDate.CurrentValues.Add(pdvPurchaseDate);
crystalReportViewerSaleByDate.ReportSource = rpt;

crystalReportViewerSaleByDate.Refresh();

thats what you have to use in CR 2008, they keep removing setable properties in each version. Remember just because they release a new version doesnt mean they actually fixed any one perticular problem. There are quite a few people on the net complaining about things that dont work with CR, that were found a while ago that still havent been resolved.

Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

QuestionPCX Files in C# Pin
Chrisfrmatl17-Jun-08 6:28
Chrisfrmatl17-Jun-08 6:28 
AnswerRe: PCX Files in C# Pin
Judah Gabriel Himango17-Jun-08 6:40
sponsorJudah Gabriel Himango17-Jun-08 6:40 
GeneralRe: PCX Files in C# Pin
Chrisfrmatl17-Jun-08 9:24
Chrisfrmatl17-Jun-08 9:24 
GeneralRe: PCX Files in C# Pin
Judah Gabriel Himango17-Jun-08 9:57
sponsorJudah Gabriel Himango17-Jun-08 9:57 
GeneralRe: PCX Files in C# Pin
Chrisfrmatl18-Jun-08 4:27
Chrisfrmatl18-Jun-08 4:27 
QuestionMultiple Labels Pin
djnevs17-Jun-08 6:10
djnevs17-Jun-08 6:10 
AnswerRe: Multiple Labels Pin
Luc Pattyn17-Jun-08 6:18
sitebuilderLuc Pattyn17-Jun-08 6:18 
GeneralRe: Multiple Labels [modified] Pin
djnevs17-Jun-08 6:55
djnevs17-Jun-08 6:55 
QuestionList of sql server 2005 machines Pin
arkiboys17-Jun-08 5:32
arkiboys17-Jun-08 5:32 
AnswerRe: List of sql server 2005 machines Pin
DavidByram17-Jun-08 5:48
DavidByram17-Jun-08 5:48 
AnswerRe: List of sql server 2005 machines Pin
Parwej Ahamad17-Jun-08 5:50
professionalParwej Ahamad17-Jun-08 5:50 
QuestionConvert generic data to bytes Pin
j.newger17-Jun-08 4:56
j.newger17-Jun-08 4:56 
AnswerRe: Convert generic data to bytes Pin
Anthony Mushrow17-Jun-08 5:01
professionalAnthony Mushrow17-Jun-08 5:01 
GeneralRe: Convert generic data to bytes Pin
j.newger17-Jun-08 5:09
j.newger17-Jun-08 5:09 
AnswerRe: Convert generic data to bytes Pin
Le centriste17-Jun-08 5:07
Le centriste17-Jun-08 5:07 
QuestionRemote DataBase Access Pin
ahmedsamir17-Jun-08 4:34
ahmedsamir17-Jun-08 4:34 
AnswerRe: Remote DataBase Access Pin
Parwej Ahamad17-Jun-08 4:41
professionalParwej Ahamad17-Jun-08 4:41 

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.