Click here to Skip to main content
15,891,864 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is it possible to copy or delete or move a locked file? Pin
Tom Larsen25-Oct-05 7:48
Tom Larsen25-Oct-05 7:48 
GeneralRe: Is it possible to copy or delete or move a locked file? Pin
Sasuko25-Oct-05 12:48
Sasuko25-Oct-05 12:48 
GeneralRe: Is it possible to copy or delete or move a locked file? Pin
Tom Larsen26-Oct-05 5:00
Tom Larsen26-Oct-05 5:00 
QuestionI thought my problem is simple, please help Pin
Gulfraz Khan25-Oct-05 6:11
Gulfraz Khan25-Oct-05 6:11 
AnswerRe: I thought my problem is simple, please help Pin
Rob Philpott25-Oct-05 8:17
Rob Philpott25-Oct-05 8:17 
QuestionProblem with Memory Stream Code Pin
farhan197625-Oct-05 5:25
farhan197625-Oct-05 5:25 
AnswerRe: Problem with Memory Stream Code Pin
CiNN25-Oct-05 10:41
CiNN25-Oct-05 10:41 
AnswerRe: Problem with Memory Stream Code Pin
farhan197625-Oct-05 18:31
farhan197625-Oct-05 18:31 
In the component Class, I did write data to the Memory stream - I opened Local File and read its contents -> string variable : data

//read the contents of the file
byte[] bytesIn = new byte[fs.Length];

fs.Read(bytesIn,0,bytesIn.Length);

data = Encoding.ASCII.GetString(bytesIn);

//close fs
fs.Close();
fs= null;

//Write the read data into the memory
byte[] bytesOut = new byte[data.Length];
bytesOut = Encoding.ASCII.GetBytes(data);

ms.Write(bytesOut,0,bytesOut.Length);
return ms;

GeneralRe: Problem with Memory Stream Code Pin
CiNN26-Oct-05 2:02
CiNN26-Oct-05 2:02 
QuestionDirectX and TV Pin
Anonymous25-Oct-05 4:21
Anonymous25-Oct-05 4:21 
QuestionDirectX and TV Pin
Anonymous25-Oct-05 4:20
Anonymous25-Oct-05 4:20 
QuestionMessageBox Pin
zaboboa25-Oct-05 3:58
zaboboa25-Oct-05 3:58 
AnswerRe: MessageBox Pin
Wjousts25-Oct-05 4:15
Wjousts25-Oct-05 4:15 
GeneralRe: MessageBox Pin
zaboboa25-Oct-05 9:39
zaboboa25-Oct-05 9:39 
QuestionWindows Forms Pin
Robert M Greene25-Oct-05 3:32
Robert M Greene25-Oct-05 3:32 
QuestionDisabling Print Screen Pin
memoboy25-Oct-05 3:32
memoboy25-Oct-05 3:32 
AnswerRe: Disabling Print Screen Pin
Wjousts25-Oct-05 4:17
Wjousts25-Oct-05 4:17 
AnswerRe: Disabling Print Screen Pin
Dave Kreskowiak25-Oct-05 10:16
mveDave Kreskowiak25-Oct-05 10:16 
GeneralRe: Disabling Print Screen Pin
Dan Neely25-Oct-05 10:58
Dan Neely25-Oct-05 10:58 
GeneralRe: Disabling Print Screen Pin
Dave Kreskowiak25-Oct-05 23:04
mveDave Kreskowiak25-Oct-05 23:04 
Generalregistery hot key Pin
memoboy27-Oct-05 3:00
memoboy27-Oct-05 3:00 
GeneralRe: registery hot key Pin
Dave Kreskowiak27-Oct-05 14:45
mveDave Kreskowiak27-Oct-05 14:45 
QuestionReadonly DataRow Pin
PaulaM25-Oct-05 3:14
PaulaM25-Oct-05 3:14 
AnswerRe: Readonly DataRow Pin
rudy.net25-Oct-05 19:27
rudy.net25-Oct-05 19:27 
QuestionHiding column in DataGrid Pin
zaboboa25-Oct-05 2:43
zaboboa25-Oct-05 2:43 

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.