Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
GeneralRe: Conversion of C++ istream/ostream to C# Pin
Member 264997220-Oct-09 15:58
Member 264997220-Oct-09 15:58 
QuestionRdlc report Pin
T_Teef20-Oct-09 4:12
T_Teef20-Oct-09 4:12 
AnswerRe: Rdlc report Pin
Wes Aday20-Oct-09 4:56
professionalWes Aday20-Oct-09 4:56 
QuestionC# - Using Memory Streams with XML [modified] Pin
Ostrich2220-Oct-09 3:50
Ostrich2220-Oct-09 3:50 
AnswerRe: C# - Using Memory Streams with XML Pin
Keith Barrow20-Oct-09 4:00
professionalKeith Barrow20-Oct-09 4:00 
AnswerRe: C# - Using Memory Streams with XML Pin
Covean20-Oct-09 4:04
Covean20-Oct-09 4:04 
GeneralRe: C# - Using Memory Streams with XML Pin
Ostrich2220-Oct-09 4:06
Ostrich2220-Oct-09 4:06 
AnswerRe: C# - Using Memory Streams with XML Pin
OriginalGriff20-Oct-09 4:08
mveOriginalGriff20-Oct-09 4:08 
Keefb is coirrect, you have to rewind the stream, using:
if (ms.CanSeek)
   {
   ms.Seeek(0,SeekOrigin.Begin);
   }

But be aware it may not work! You may well need ms.FlushFinalBlock() to ensure that last bit of data is written.

No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced.

This message is made of fully recyclable Zeros and Ones

AnswerRe: C# - Using Memory Streams with XML Pin
Mirko198020-Oct-09 4:14
Mirko198020-Oct-09 4:14 
AnswerRe: C# - Using Memory Streams with XML Pin
Luc Pattyn20-Oct-09 4:24
sitebuilderLuc Pattyn20-Oct-09 4:24 
QuestionHow to catch an event fired within a late-binded, custom written DLL. [modified] Pin
MatthysDT20-Oct-09 2:55
MatthysDT20-Oct-09 2:55 
AnswerRe: How to catch an event fired within a late-binded, custom written DLL. Pin
Eddy Vluggen20-Oct-09 7:22
professionalEddy Vluggen20-Oct-09 7:22 
GeneralRe: How to catch an event fired within a late-binded, custom written DLL. Pin
MatthysDT21-Oct-09 20:15
MatthysDT21-Oct-09 20:15 
QuestionDateTimePicker with BackColor Pin
blind198520-Oct-09 2:54
blind198520-Oct-09 2:54 
Questiondatagridview question Pin
akram300220-Oct-09 2:27
akram300220-Oct-09 2:27 
AnswerRe: datagridview question Pin
Calla20-Oct-09 2:36
Calla20-Oct-09 2:36 
GeneralRe: datagridview question Pin
akram300220-Oct-09 2:40
akram300220-Oct-09 2:40 
AnswerRe: datagridview question Pin
stancrm20-Oct-09 2:39
stancrm20-Oct-09 2:39 
GeneralRe: datagridview question Pin
akram300220-Oct-09 2:44
akram300220-Oct-09 2:44 
GeneralRe: datagridview question Pin
akram300220-Oct-09 3:31
akram300220-Oct-09 3:31 
GeneralRe: datagridview question Pin
jaypatel51220-Oct-09 7:06
jaypatel51220-Oct-09 7:06 
QuestionCreation of a site collection in MOSS 2007 using C#.NET 2008 [modified] Pin
mgr_2k720-Oct-09 2:07
mgr_2k720-Oct-09 2:07 
AnswerRe: Creation of a site collection in MOSS 2007 using C#.NET 2008 Pin
Richard MacCutchan20-Oct-09 3:16
mveRichard MacCutchan20-Oct-09 3:16 
AnswerMy vote of 1 Pin
Keith Barrow20-Oct-09 3:22
professionalKeith Barrow20-Oct-09 3:22 
QuestionHow to merge 2 multidimensional Array into Single one in C# Pin
basantakumar20-Oct-09 1:44
basantakumar20-Oct-09 1:44 

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.