Click here to Skip to main content
15,898,134 members
Home / Discussions / C#
   

C#

 
GeneralRe: 'Locking' entire folder Pin
Dave Kreskowiak4-Jan-05 16:50
mveDave Kreskowiak4-Jan-05 16:50 
Generalmousewheel!!! Pin
osto2-Jan-05 18:06
osto2-Jan-05 18:06 
GeneralPoll sample Pin
anandg_g2-Jan-05 17:04
anandg_g2-Jan-05 17:04 
GeneralTrouble with asynch sockets...program not exiting from taskmanager list Pin
FocusedWolf2-Jan-05 16:51
FocusedWolf2-Jan-05 16:51 
GeneralPassing Value Types by Reference Pin
paulsawyer2-Jan-05 16:44
paulsawyer2-Jan-05 16:44 
GeneralSerialization for an ArrayList Pin
zecodela2-Jan-05 15:46
zecodela2-Jan-05 15:46 
GeneralRe: Serialization for an ArrayList Pin
Robert Rohde2-Jan-05 18:38
Robert Rohde2-Jan-05 18:38 
GeneralRe: Serialization for an ArrayList Pin
zecodela3-Jan-05 14:37
zecodela3-Jan-05 14:37 
yes, the current method i used is the copy the arraylist to a object array like below code but it need extra work

private ArrayList listTradePattern;
public class TradePatternList
{
public TradePatternList()
{
listTradePattern = new ArrayList();
}

[XmlElement("Pattern")]
public TradePattern[] TradePatterns
{
get
{
TradePattern[] tradepatterns = new TradePattern[ listTradePattern.Count ];
listTradePattern.CopyTo( tradepatterns );
return tradepatterns;
}
set
{
if( value == null ) return;
TradePattern[] tradepatterns = (TradePattern[])value;
listTradePattern.Clear();
foreach( TradePattern tradepattern in tradepatterns )
listTradePattern.Add( tradepattern );
}
}
}

GeneralCrystal Reports to pdf Pin
2-Jan-05 15:45
suss2-Jan-05 15:45 
GeneralRe: Crystal Reports to pdf Pin
jareddavies3-Jan-05 12:57
jareddavies3-Jan-05 12:57 
GeneralWANT REAL TIME MOUSE COORD Pin
...---...2-Jan-05 11:28
...---...2-Jan-05 11:28 
GeneralRe: WANT REAL TIME MOUSE COORD Pin
DavidNohejl2-Jan-05 12:08
DavidNohejl2-Jan-05 12:08 
GeneralScrollbar maximum value problem Pin
Andrew Stampor2-Jan-05 11:11
Andrew Stampor2-Jan-05 11:11 
GeneralRe: Scrollbar maximum value problem Pin
Andrew Stampor2-Jan-05 13:41
Andrew Stampor2-Jan-05 13:41 
GeneralQuestion about Socket Flags Pin
MasudM2-Jan-05 9:24
MasudM2-Jan-05 9:24 
GeneralGravitating guns... Pin
Jacob Buys2-Jan-05 5:58
Jacob Buys2-Jan-05 5:58 
QuestionHow can I encapsulate my program? Pin
gyokusei2-Jan-05 5:16
gyokusei2-Jan-05 5:16 
AnswerRe: How can I encapsulate my program? Pin
Identity Undisclosed2-Jan-05 8:12
Identity Undisclosed2-Jan-05 8:12 
Generalturbo c Pin
Alvin142-Jan-05 4:17
Alvin142-Jan-05 4:17 
GeneralRe: turbo c Pin
Alex Korchemniy2-Jan-05 6:01
Alex Korchemniy2-Jan-05 6:01 
GeneralRe: turbo c Pin
Matt Gerrans3-Jan-05 13:24
Matt Gerrans3-Jan-05 13:24 
GeneralNamespace Extensions for Windows Explorer Pin
GeloSoft2-Jan-05 2:50
GeloSoft2-Jan-05 2:50 
Generaltrying to find a conversion of c to c#... Pin
RonBou2-Jan-05 2:08
RonBou2-Jan-05 2:08 
GeneralRe: trying to find a conversion of c to c#... Pin
DavidNohejl2-Jan-05 2:22
DavidNohejl2-Jan-05 2:22 
GeneralRe: trying to find a conversion of c to c#... Pin
RonBou2-Jan-05 15:50
RonBou2-Jan-05 15:50 

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.