Click here to Skip to main content
15,887,376 members
Home / Discussions / C#
   

C#

 
GeneralRe: Architectural question (crisis) Pin
Jan Vercauteren30-Apr-04 13:07
Jan Vercauteren30-Apr-04 13:07 
GeneralStupid string to int question Pin
Anonymous29-Apr-04 20:53
Anonymous29-Apr-04 20:53 
GeneralRe: Stupid string to int question Pin
Anonymous29-Apr-04 21:05
Anonymous29-Apr-04 21:05 
GeneralRe: Stupid string to int question Pin
Heath Stewart30-Apr-04 3:29
protectorHeath Stewart30-Apr-04 3:29 
GeneralRe: Stupid string to int question Pin
medcon29-Apr-04 22:41
medcon29-Apr-04 22:41 
GeneralCrystal Report fields Pin
DougW4829-Apr-04 20:01
DougW4829-Apr-04 20:01 
GeneralRe: Crystal Report fields Pin
..Hubert..29-Apr-04 22:55
..Hubert..29-Apr-04 22:55 
GeneralRe: Crystal Report fields Pin
hassan azizi1-May-04 7:51
hassan azizi1-May-04 7:51 
threre is 2 simple way :
1- using textobject for sending value to your report:
create textobject with TextTimeFrom name(or desired name) then
in your code set value for TextTimeFrom textobject
...C# code
((TextObject)ReportOne.ReportDefinition.ReportObjects["TextTimeFrom"]).Text = "12:25";
....

this value is placed on your report because textobject will be placed on report area
if you want to send parameter to conitional approach use formula field and you can place formula field object on your form or not!
second way byy using formula fields
2-
create one formula field with YearValue(or desired name,YearValue just is sample name) name and then set that value in your code like this :
...C# code
ReportOne.DataDefinition.FormulaFields["YearValue"].Text= "value;
(ReportOne is your report ReportDocument object)
....
you see it is very simple just with one line coding
enjoy of it


GeneralWeb request from Windows Forms user control Pin
Shree29-Apr-04 17:32
Shree29-Apr-04 17:32 
GeneralRe: Web request from Windows Forms user control Pin
Heath Stewart30-Apr-04 3:28
protectorHeath Stewart30-Apr-04 3:28 
Generalip address Pin
kendao29-Apr-04 15:37
kendao29-Apr-04 15:37 
GeneralRe: ip address Pin
Corinna John29-Apr-04 22:31
Corinna John29-Apr-04 22:31 
GeneralTo handle list view column width change Pin
machocr29-Apr-04 14:09
machocr29-Apr-04 14:09 
GeneralRe: To handle list view column width change Pin
Heath Stewart29-Apr-04 14:30
protectorHeath Stewart29-Apr-04 14:30 
GeneralRe: To handle list view column width change Pin
machocr29-Apr-04 14:51
machocr29-Apr-04 14:51 
GeneralRe: To handle list view column width change Pin
machocr29-Apr-04 15:08
machocr29-Apr-04 15:08 
GeneralRe: To handle list view column width change Pin
Heath Stewart30-Apr-04 3:23
protectorHeath Stewart30-Apr-04 3:23 
GeneralRe: To handle list view column width change Pin
machocr30-Apr-04 4:58
machocr30-Apr-04 4:58 
GeneralRe: To handle list view column width change Pin
Heath Stewart30-Apr-04 5:18
protectorHeath Stewart30-Apr-04 5:18 
GeneralRe: To handle list view column width change Pin
machocr30-Apr-04 6:14
machocr30-Apr-04 6:14 
GeneralRe: To handle list view column width change Pin
Heath Stewart30-Apr-04 6:29
protectorHeath Stewart30-Apr-04 6:29 
GeneralRe: To handle list view column width change Pin
Heath Stewart30-Apr-04 5:39
protectorHeath Stewart30-Apr-04 5:39 
GeneralID3 algorithm Pin
Member 75113929-Apr-04 10:14
Member 75113929-Apr-04 10:14 
GeneralRe: ID3 algorithm Pin
Heath Stewart29-Apr-04 10:34
protectorHeath Stewart29-Apr-04 10:34 
GeneralRun time change Pin
boruk29-Apr-04 10:09
boruk29-Apr-04 10:09 

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.