Click here to Skip to main content
15,917,174 members
Home / Discussions / C#
   

C#

 
QuestionOrphan Processes Pin
convivial.developer12-Feb-07 11:40
convivial.developer12-Feb-07 11:40 
Questionkeyboard handling for short-cuts using "Switch" Pin
Khoramdin12-Feb-07 10:03
Khoramdin12-Feb-07 10:03 
AnswerRe: keyboard handling for short-cuts using "Switch" Pin
Stefan Troschuetz12-Feb-07 10:37
Stefan Troschuetz12-Feb-07 10:37 
Questionhey, how can i retrive a letter from a controll under the cursor?? Pin
NZSmartie12-Feb-07 9:53
NZSmartie12-Feb-07 9:53 
AnswerRe: hey, how can i retrive a letter from a controll under the cursor?? Pin
Christian Graus12-Feb-07 10:34
protectorChristian Graus12-Feb-07 10:34 
GeneralRe: hey, how can i retrive a letter from a controll under the cursor?? Pin
NZSmartie12-Feb-07 10:39
NZSmartie12-Feb-07 10:39 
QuestionConvert Arraylist to Byte[] and back again Pin
DeepToot12-Feb-07 9:50
DeepToot12-Feb-07 9:50 
AnswerRe: Convert Arraylist to Byte[] and back again Pin
Pete O'Hanlon12-Feb-07 10:17
mvePete O'Hanlon12-Feb-07 10:17 
Try this:

public ArrayList ToArrayList(byte[] buffer)
{
  if (buffer == null || buffer.Length == 0)
    return null;

  ArrayList list = new ArrayList();
  list.AddRange(buffer);

  return list;
}



the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer

Deja View - the feeling that you've seen this post before.

GeneralRe: Convert Arraylist to Byte[] and back again Pin
DeepToot12-Feb-07 10:25
DeepToot12-Feb-07 10:25 
GeneralRe: Convert Arraylist to Byte[] and back again Pin
Pete O'Hanlon12-Feb-07 10:27
mvePete O'Hanlon12-Feb-07 10:27 
QuestionHow to read the IDE Pin
electriac12-Feb-07 9:39
electriac12-Feb-07 9:39 
AnswerRe: How to read the IDE Pin
Christian Graus12-Feb-07 9:49
protectorChristian Graus12-Feb-07 9:49 
GeneralRe: How to read the IDE Pin
electriac12-Feb-07 9:53
electriac12-Feb-07 9:53 
GeneralRe: How to read the IDE Pin
Ed.Poore12-Feb-07 12:25
Ed.Poore12-Feb-07 12:25 
GeneralRe: How to read the IDE Pin
electriac12-Feb-07 12:35
electriac12-Feb-07 12:35 
GeneralRe: How to read the IDE Pin
Ed.Poore12-Feb-07 12:40
Ed.Poore12-Feb-07 12:40 
QuestionC# simulation of Memory Paging Pin
usmanali12312-Feb-07 9:30
usmanali12312-Feb-07 9:30 
AnswerRe: C# simulation of Memory Paging Pin
Marc Clifton12-Feb-07 9:34
mvaMarc Clifton12-Feb-07 9:34 
GeneralRe: C# simulation of Memory Paging Pin
usmanali12312-Feb-07 9:47
usmanali12312-Feb-07 9:47 
QuestionChat program Pin
CodeItWell12-Feb-07 9:29
CodeItWell12-Feb-07 9:29 
AnswerRe: Chat program Pin
PIEBALDconsult12-Feb-07 9:35
mvePIEBALDconsult12-Feb-07 9:35 
GeneralRe: Chat program Pin
CodeItWell12-Feb-07 9:49
CodeItWell12-Feb-07 9:49 
GeneralRe: Chat program Pin
Ed.Poore12-Feb-07 12:26
Ed.Poore12-Feb-07 12:26 
QuestionDatagrid Scrollbar Help Needed Pin
Rabbit1712-Feb-07 9:17
Rabbit1712-Feb-07 9:17 
AnswerRe: Datagrid Scrollbar Help Needed Pin
gauthee12-Feb-07 17:10
gauthee12-Feb-07 17:10 

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.