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

C#

 
GeneralRe: problem with enum type ?! Pin
Corinna John31-Jan-05 22:10
Corinna John31-Jan-05 22:10 
GeneralTcpClient doesn't close connection Pin
ehuysamer31-Jan-05 21:19
ehuysamer31-Jan-05 21:19 
GeneralRe: TcpClient doesn't close connection Pin
Arun Bhalla1-Feb-05 6:50
Arun Bhalla1-Feb-05 6:50 
GeneralInstaller woes Pin
Arun Bhalla31-Jan-05 19:28
Arun Bhalla31-Jan-05 19:28 
Questioni think create many table of dataset,i use gotdotnet,but what i creat it? Pin
xiaoyuan31-Jan-05 19:26
xiaoyuan31-Jan-05 19:26 
AnswerRe: i think create many table of dataset,i use gotdotnet,but what i creat it? Pin
Dave Kreskowiak1-Feb-05 4:18
mveDave Kreskowiak1-Feb-05 4:18 
Generalserialize hashtable within another hashtable Pin
rathishps31-Jan-05 18:10
rathishps31-Jan-05 18:10 
GeneralRe: serialize hashtable within another hashtable Pin
Robert Rohde1-Feb-05 3:38
Robert Rohde1-Feb-05 3:38 
The HashTable class is itsself serializable. If it only contains object which are either implementing ISerializable or having the Serializable attribute there no reason why you should not be able to serialize it.
Just try marking all classes within the HashTable (and also references other classes) with the Serializable attribute and then serialize it:
<br />
System.Runtime.Serialization.Formatter f = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();<br />
f.Serialize(myStream, myHashTable);<br />


Thats basically all you HAVE to do. There are many problems which can arise, especially when it comes to efficiency. You are free to ask again if you reach such a point Smile | :)
GeneralScrollBar is disappeareing Pin
FocusedWolf31-Jan-05 16:19
FocusedWolf31-Jan-05 16:19 
GeneralRe: ScrollBar is disappeareing Pin
Stefan Troschuetz31-Jan-05 21:25
Stefan Troschuetz31-Jan-05 21:25 
GeneralRe: ScrollBar is disappeareing Pin
FocusedWolf1-Feb-05 9:50
FocusedWolf1-Feb-05 9:50 
GeneralRe: ScrollBar is disappeareing Pin
FocusedWolf1-Feb-05 10:04
FocusedWolf1-Feb-05 10:04 
Generalemail Pin
Anonymous31-Jan-05 15:47
Anonymous31-Jan-05 15:47 
GeneralRe: email Pin
Corinna John31-Jan-05 20:52
Corinna John31-Jan-05 20:52 
GeneralRe: email Pin
Esmo20001-Feb-05 2:22
Esmo20001-Feb-05 2:22 
GeneralRe: email Pin
Anonymous1-Feb-05 11:58
Anonymous1-Feb-05 11:58 
GeneralRe: email Pin
Anonymous1-Feb-05 12:30
Anonymous1-Feb-05 12:30 
GeneralListView with a multiline ColumnHeader Pin
Lin Qi31-Jan-05 15:35
Lin Qi31-Jan-05 15:35 
GeneralVBA to C# dll Addin Pin
mitsemaj31-Jan-05 13:53
mitsemaj31-Jan-05 13:53 
GeneralRe: VBA to C# dll Addin Pin
Heath Stewart31-Jan-05 14:01
protectorHeath Stewart31-Jan-05 14:01 
GeneralRe: VBA to C# dll Addin Pin
mitsemaj31-Jan-05 15:24
mitsemaj31-Jan-05 15:24 
GeneralUsing SHFILEINFO to retrieve Special Folder Icons Pin
Drakkhen31-Jan-05 13:20
Drakkhen31-Jan-05 13:20 
GeneralRe: Using SHFILEINFO to retrieve Special Folder Icons Pin
Heath Stewart31-Jan-05 13:48
protectorHeath Stewart31-Jan-05 13:48 
Generalevent invocation Pin
cchere31-Jan-05 12:59
cchere31-Jan-05 12:59 
GeneralRe: event invocation Pin
Heath Stewart31-Jan-05 13:28
protectorHeath Stewart31-Jan-05 13:28 

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.