Click here to Skip to main content
15,900,417 members
Home / Discussions / C#
   

C#

 
GeneralRe: Annoying ListBox problem Pin
Henry Minute22-Oct-10 6:48
Henry Minute22-Oct-10 6:48 
GeneralRe: Annoying ListBox problem Pin
Henry Minute22-Oct-10 7:08
Henry Minute22-Oct-10 7:08 
GeneralRe: Annoying ListBox problem Pin
Luc Pattyn22-Oct-10 7:33
sitebuilderLuc Pattyn22-Oct-10 7:33 
GeneralRe: Annoying ListBox problem Pin
Henry Minute22-Oct-10 7:41
Henry Minute22-Oct-10 7:41 
GeneralRe: Annoying ListBox problem Pin
Luc Pattyn22-Oct-10 14:36
sitebuilderLuc Pattyn22-Oct-10 14:36 
GeneralRe: Annoying ListBox problem Pin
Henry Minute22-Oct-10 5:31
Henry Minute22-Oct-10 5:31 
QuestionCrystal Report Formula needed Pin
Nikhil Bhivgade22-Oct-10 1:29
professionalNikhil Bhivgade22-Oct-10 1:29 
AnswerRe: Crystal Report Formula needed [modified] Pin
Sivaraman Dhamodharan22-Oct-10 2:51
Sivaraman Dhamodharan22-Oct-10 2:51 
Use a global variable. Global variable is visible for all the sections of the report. String Append Sr.No and Name of the subject based the status pass or fail.

The formula can be:
FormulaA : [Used in the PageHeader][Display of Formula Suppressed]
Global stringvar FailedDetails;
FailedDetails = "";

FormulaB: [Used in Detail Section][Display of Formula Suppressed]
Global stringvar FailedDetails;

WhileReadingRecords;
if (status = "fail")
FailedDetails = FailedDetails + SrNo + " " + Subject

FormulaC: [Used in Footer Section] [Display of Formula Not Sppressed]
Global stringvar FailedDetails;
FailedDetails;

For more information: Search in google with the keyword - "WhileReadingRecords" and "WhilePrintingRecords"
The above formula do not work by copy paste. You need to make some adjustment based on the Syntax.

Hope it Helps Smile | :)
GeneralRe: Crystal Report Formula needed Pin
Nikhil Bhivgade22-Oct-10 21:35
professionalNikhil Bhivgade22-Oct-10 21:35 
QuestionHost WPF application on WEB Pin
VisualLive22-Oct-10 0:15
VisualLive22-Oct-10 0:15 
AnswerRe: Host WPF application on WEB Pin
Simon P Stevens22-Oct-10 1:13
Simon P Stevens22-Oct-10 1:13 
AnswerRe: Host WPF application on WEB Pin
#realJSOP22-Oct-10 1:41
professional#realJSOP22-Oct-10 1:41 
AnswerRe: Host WPF application on WEB Pin
Nish Nishant22-Oct-10 2:02
sitebuilderNish Nishant22-Oct-10 2:02 
GeneralRe: Host WPF application on WEB Pin
Abhinav S22-Oct-10 2:47
Abhinav S22-Oct-10 2:47 
GeneralRe: Host WPF application on WEB Pin
Nish Nishant22-Oct-10 4:15
sitebuilderNish Nishant22-Oct-10 4:15 
AnswerRe: Host WPF application on WEB Pin
Abhinav S22-Oct-10 2:46
Abhinav S22-Oct-10 2:46 
GeneralRe: Host WPF application on WEB Pin
VisualLive23-Oct-10 19:17
VisualLive23-Oct-10 19:17 
QuestionFind Label in Gridview Footer Row in javascript Pin
SatyaKeerthi1521-Oct-10 23:33
SatyaKeerthi1521-Oct-10 23:33 
AnswerRe: Find Label in Gridview Footer Row in javascript Pin
OriginalGriff22-Oct-10 1:10
mveOriginalGriff22-Oct-10 1:10 
AnswerRe: Find Label in Gridview Footer Row in javascript Pin
Abhinav S22-Oct-10 3:06
Abhinav S22-Oct-10 3:06 
QuestionPage refresh Pin
juman_achu21-Oct-10 23:15
juman_achu21-Oct-10 23:15 
AnswerRe: Page refresh Pin
Łukasz Nowakowski21-Oct-10 23:27
Łukasz Nowakowski21-Oct-10 23:27 
GeneralRe: Page refresh Pin
juman_achu21-Oct-10 23:33
juman_achu21-Oct-10 23:33 
GeneralRe: Page refresh Pin
Łukasz Nowakowski21-Oct-10 23:34
Łukasz Nowakowski21-Oct-10 23:34 
GeneralRe: Page refresh Pin
juman_achu21-Oct-10 23:40
juman_achu21-Oct-10 23:40 

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.