Click here to Skip to main content
15,791,229 members
Home / Discussions / C#
   

C#

 
GeneralRe: .INI file usage in C# Pin
Karavaev Denis8-Nov-02 2:10
Karavaev Denis8-Nov-02 2:10 
GeneralClass/Collection tutorial Pin
hammackj7-Nov-02 11:34
hammackj7-Nov-02 11:34 
GeneralBeginner Q: How to create a splash screen Pin
matthias s.7-Nov-02 9:28
matthias s.7-Nov-02 9:28 
GeneralRe: Beginner Q: How to create a splash screen Pin
Daniel Turini7-Nov-02 9:43
Daniel Turini7-Nov-02 9:43 
GeneralRe: Beginner Q: How to create a splash screen Pin
matthias s.8-Nov-02 1:29
matthias s.8-Nov-02 1:29 
GeneralRe: Beginner Q: How to create a splash screen Pin
Ray Cassick8-Nov-02 9:16
Ray Cassick8-Nov-02 9:16 
GeneralSerializing an Exception object Pin
solidstore7-Nov-02 8:12
solidstore7-Nov-02 8:12 
GeneralRe: Serializing an Exception object Pin
Franz Pikal7-Nov-02 23:00
Franz Pikal7-Nov-02 23:00 
hi,
i use this exception class in my remoted components. this execption class is serializable and should help you with your problem.

[Serializable]
public class ComponentException: ApplicationException, ISerializable
{
public ComponentException()
{
}
public ComponentException(string message)
: base(message)
{
}
public ComponentException(string message, Exception inner)
: base(message, inner)
{
}
//Deserialization constructor.
public ComponentException (SerializationInfo info, StreamingContext context)
: base( info, context)
{

}
}

hope it helps
franz
GeneralRe: Serializing an Exception object Pin
solidstore7-Nov-02 23:47
solidstore7-Nov-02 23:47 
GeneralRe: Serializing an Exception object Pin
Franz Pikal8-Nov-02 0:05
Franz Pikal8-Nov-02 0:05 
GeneralDynamic load of objects and its effects Pin
LongRange.Shooter7-Nov-02 4:46
LongRange.Shooter7-Nov-02 4:46 
GeneralRe: Dynamic load of objects and its effects Pin
Stephane Rodriguez.7-Nov-02 5:43
Stephane Rodriguez.7-Nov-02 5:43 
GeneralRe: Dynamic load of objects and its effects Pin
LongRange.Shooter7-Nov-02 6:46
LongRange.Shooter7-Nov-02 6:46 
GeneralCan't change textbox.text from code after binding to dataset!!! Pin
cternek6-Nov-02 22:59
cternek6-Nov-02 22:59 
QuestionProcess.id ? Pin
imran_rafique6-Nov-02 11:07
imran_rafique6-Nov-02 11:07 
AnswerRe: Process.id ? Pin
leppie6-Nov-02 11:25
leppie6-Nov-02 11:25 
Questionhow to make a plugin Pin
Asim N.6-Nov-02 9:04
Asim N.6-Nov-02 9:04 
AnswerRe: how to make a plugin Pin
leppie6-Nov-02 11:31
leppie6-Nov-02 11:31 
GeneralRe: how to make a plugin Pin
Eric Gunnerson (msft)6-Nov-02 14:46
Eric Gunnerson (msft)6-Nov-02 14:46 
GeneralRe: how to make a plugin Pin
Philip Fitzsimons7-Nov-02 2:42
Philip Fitzsimons7-Nov-02 2:42 
GeneralRe: how to make a plugin Pin
Philip Fitzsimons7-Nov-02 2:45
Philip Fitzsimons7-Nov-02 2:45 
GeneralRe: how to make a plugin Pin
James T. Johnson7-Nov-02 3:41
James T. Johnson7-Nov-02 3:41 
AnswerRe: how to make a plugin Pin
Nnamdi Onyeyiri6-Nov-02 21:53
Nnamdi Onyeyiri6-Nov-02 21:53 
GeneralUsing Typed Datasets Pin
afronaut6-Nov-02 6:17
afronaut6-Nov-02 6:17 
GeneralRe: Using Typed Datasets Pin
leppie6-Nov-02 11:36
leppie6-Nov-02 11:36 

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.