Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
GeneralRe: enabling pictures during processing Pin
Rüpel5-Jul-02 2:28
Rüpel5-Jul-02 2:28 
GeneralEXCEL Access Pin
Özgür5-Jul-02 0:22
Özgür5-Jul-02 0:22 
GeneralRe: EXCEL Access Pin
7-Jul-02 16:16
suss7-Jul-02 16:16 
GeneralRemove focus from Form Pin
Bo Norgaard4-Jul-02 20:47
Bo Norgaard4-Jul-02 20:47 
GeneralRe: Remove focus from Form Pin
Bo Norgaard4-Jul-02 23:21
Bo Norgaard4-Jul-02 23:21 
GeneralWrite User in the Event Log Pin
Vanclei4-Jul-02 4:50
Vanclei4-Jul-02 4:50 
Generalunsafe code Pin
Member 169774-Jul-02 2:23
Member 169774-Jul-02 2:23 
GeneralRe: unsafe code Pin
James T. Johnson4-Jul-02 7:07
James T. Johnson4-Jul-02 7:07 
unsafe
{
  char [] data = new char[4000];
 
  fixed(char* pData = &data)
  {
    SomeFunction(0, (void*) pData, 0);
  }
}
You have to use the fixed statement so that if a GC happens it won't move the memory around on you Smile | :)

James
"Java is free - and worth every penny." - Christian Graus
GeneralRe: unsafe code Pin
Nish Nishant4-Jul-02 15:24
sitebuilderNish Nishant4-Jul-02 15:24 
GeneralOk You C# People Pin
Swinefeaster4-Jul-02 1:11
Swinefeaster4-Jul-02 1:11 
GeneralRe: Ok You C# People Pin
leppie4-Jul-02 2:37
leppie4-Jul-02 2:37 
GeneralRe: Ok You C# People Pin
leppie4-Jul-02 10:51
leppie4-Jul-02 10:51 
GeneralRe: Ok You C# People Pin
Swinefeaster4-Jul-02 12:50
Swinefeaster4-Jul-02 12:50 
GeneralRe: Ok You C# People Pin
SHaroz5-Jul-02 6:12
SHaroz5-Jul-02 6:12 
QuestionWindows Explorer like Control ??? Pin
4-Jul-02 0:08
suss4-Jul-02 0:08 
AnswerRe: Windows Explorer like Control ??? Pin
SimonS4-Jul-02 0:42
SimonS4-Jul-02 0:42 
GeneralRe: Windows Explorer like Control ??? Pin
4-Jul-02 4:40
suss4-Jul-02 4:40 
GeneralComboBox SelectedItemChanged event Pin
paulb3-Jul-02 14:11
paulb3-Jul-02 14:11 
GeneralRe: ComboBox SelectedItemChanged event Pin
James T. Johnson3-Jul-02 14:43
James T. Johnson3-Jul-02 14:43 
GeneralRe: ComboBox SelectedItemChanged event Pin
paulb4-Jul-02 13:16
paulb4-Jul-02 13:16 
GeneralListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 12:19
Brandon Parker3-Jul-02 12:19 
GeneralRe: ListView remove item problem!! Help please Pin
Orion Buttigieg3-Jul-02 12:44
Orion Buttigieg3-Jul-02 12:44 
GeneralRe: ListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 13:00
Brandon Parker3-Jul-02 13:00 
GeneralRe: ListView remove item problem!! Help please Pin
James T. Johnson3-Jul-02 14:35
James T. Johnson3-Jul-02 14:35 
GeneralRe: ListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 15:00
Brandon Parker3-Jul-02 15:00 

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.