Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
Questionaggregate functions Pin
Renuka Reddy13-Mar-07 2:11
Renuka Reddy13-Mar-07 2:11 
AnswerRe: aggregate functions Pin
rah_sin13-Mar-07 2:19
professionalrah_sin13-Mar-07 2:19 
AnswerRe: aggregate functions Pin
Pete O'Hanlon13-Mar-07 5:53
mvePete O'Hanlon13-Mar-07 5:53 
AnswerRe: aggregate functions Pin
mike montagne13-Mar-07 12:59
mike montagne13-Mar-07 12:59 
QuestionWindows Forms Pin
Illegal Operation13-Mar-07 1:29
Illegal Operation13-Mar-07 1:29 
AnswerRe: Windows Forms Pin
rah_sin13-Mar-07 1:48
professionalrah_sin13-Mar-07 1:48 
AnswerRe: Windows Forms Pin
waleed9913-Mar-07 4:23
waleed9913-Mar-07 4:23 
QuestionHow to access Serialised object of an application ? Pin
Mr Perfect13-Mar-07 1:20
Mr Perfect13-Mar-07 1:20 
Dear All,
I am using the below code to serialise my class object. i want to access this serialised object into another application . Please let me know how to go about it.
[Serializable]
class Sample
{
public int i = 0;
public int j = 0;
public string str = "";
static void Main(string[] args)
{
Sample objSample = new Sample();
objSample.i = 1222;
objSample.j = 5555;
objSample.str = "This is serialised data";
IFormatter formatter = new BinaryFormatter();
Stream fs = new FileStream("MyFile.bin", FileMode.Create, FileAccess.ReadWrite, FileShare.None);
formatter.Serialize(fs, objSample);
fs.Close();
Console.WriteLine("Class serialised");
}
AnswerRe: How to access Serialised object of an application ? Pin
jdkulkarni13-Mar-07 1:56
jdkulkarni13-Mar-07 1:56 
Questioncollapsable panels in GUI Pin
Keshav V. Kamat13-Mar-07 0:24
Keshav V. Kamat13-Mar-07 0:24 
AnswerRe: collapsable panels in GUI Pin
Colin Angus Mackay13-Mar-07 1:05
Colin Angus Mackay13-Mar-07 1:05 
AnswerRe: collapsable panels in GUI Pin
Ed.Poore13-Mar-07 2:10
Ed.Poore13-Mar-07 2:10 
AnswerRe: collapsable panels in GUI Pin
Matthew Cuba13-Mar-07 3:21
Matthew Cuba13-Mar-07 3:21 
QuestionCombo box Pin
hiremath7112-Mar-07 23:48
hiremath7112-Mar-07 23:48 
Questionconvert.ToByte Pin
Enter the Dragon12-Mar-07 23:43
Enter the Dragon12-Mar-07 23:43 
AnswerRe: convert.ToByte Pin
PS@Codeproj12-Mar-07 23:57
PS@Codeproj12-Mar-07 23:57 
QuestionFiles and Folders Pin
Member 391685612-Mar-07 23:30
Member 391685612-Mar-07 23:30 
AnswerRe: Files and Folders Pin
GaryWoodfine 12-Mar-07 23:59
professionalGaryWoodfine 12-Mar-07 23:59 
Questionxml problem Pin
darkcalin12-Mar-07 23:22
darkcalin12-Mar-07 23:22 
AnswerRe: xml problem Pin
Pete O'Hanlon12-Mar-07 23:29
mvePete O'Hanlon12-Mar-07 23:29 
AnswerRe: xml problem Pin
GaryWoodfine 12-Mar-07 23:55
professionalGaryWoodfine 12-Mar-07 23:55 
GeneralRe: xml problem [modified] Pin
darkcalin13-Mar-07 21:29
darkcalin13-Mar-07 21:29 
AnswerRe: xml problem Pin
Ed.Poore13-Mar-07 2:11
Ed.Poore13-Mar-07 2:11 
QuestionProblem with Form size? Pin
Khoramdin12-Mar-07 21:53
Khoramdin12-Mar-07 21:53 
AnswerRe: Problem with Form size? Pin
Russell Jones12-Mar-07 22:35
Russell Jones12-Mar-07 22:35 

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.