Click here to Skip to main content
15,914,162 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: free ASP.NET message board(forums) system Pin
Tal Kain13-Jun-05 17:44
Tal Kain13-Jun-05 17:44 
GeneralRe: free ASP.NET message board(forums) system Pin
Christian Graus13-Jun-05 17:46
protectorChristian Graus13-Jun-05 17:46 
GeneralRe: free ASP.NET message board(forums) system Pin
Tal Kain13-Jun-05 17:53
Tal Kain13-Jun-05 17:53 
GeneralRe: free ASP.NET message board(forums) system Pin
MoustafaS13-Jun-05 18:17
MoustafaS13-Jun-05 18:17 
GeneralFileStream inserts extra characters Pin
xeaglex13-Jun-05 11:39
xeaglex13-Jun-05 11:39 
GeneralRe: FileStream inserts extra characters Pin
Saksida Bojan14-Jun-05 22:58
Saksida Bojan14-Jun-05 22:58 
GeneralRe: FileStream inserts extra characters Pin
xeaglex15-Jun-05 4:38
xeaglex15-Jun-05 4:38 
GeneralRe: FileStream inserts extra characters Pin
Saksida Bojan15-Jun-05 20:15
Saksida Bojan15-Jun-05 20:15 
Depends How you use it. If you use command from BinaryReader ReadBytes, Then incoming data will not be corupted.

Below is C++ Sample for copying File, I have tried about 1MB of File, and it make 1:1 Copy. (No Difrence)

String *fileName1 = S"Old.Dat";<br />
String *fileName2 = S"New.Dat";<br />
FileStream *fsOld = new FileStream(fileName1, FileMode::Open);<br />
FileStream *fsNew = new FileStream(fileName2, FileMode::Create);<br />
<br />
BinaryReader *br = new BinaryReader(fsOld);<br />
BinaryWriter *bw = new BinaryWriter(fsNew);<br />
	do <br />
	{<br />
		if (br->BaseStream->Length == br->BaseStream->Position)<br />
			break;<br />
<br />
		Byte q[] = br->ReadBytes(10);<br />
		bw->Write(q);<br />
				 	<br />
	} while(true);<br />
br->Close();<br />
bw->Close();

GeneralRe: FileStream inserts extra characters Pin
xeaglex16-Jun-05 4:23
xeaglex16-Jun-05 4:23 
GeneralRe: FileStream inserts extra characters Pin
Saksida Bojan16-Jun-05 10:15
Saksida Bojan16-Jun-05 10:15 
GeneralRe: FileStream inserts extra characters Pin
Saksida Bojan20-Jan-06 1:16
Saksida Bojan20-Jan-06 1:16 
GeneralRendering Forms Controls within rows of a listbox Pin
Ruth Ivimey-Cook13-Jun-05 7:46
Ruth Ivimey-Cook13-Jun-05 7:46 
GeneralRe: Rendering Forms Controls within rows of a listbox Pin
oykica13-Jun-05 17:41
oykica13-Jun-05 17:41 
GeneralRe: Rendering Forms Controls within rows of a listbox Pin
Ruth Ivimey-Cook13-Jun-05 22:11
Ruth Ivimey-Cook13-Jun-05 22:11 
GeneralRe: Rendering Forms Controls within rows of a listbox Pin
oykica13-Jun-05 22:52
oykica13-Jun-05 22:52 
GeneralCOM interop Pin
Manju13-Jun-05 3:19
Manju13-Jun-05 3:19 
GeneralVS 2002 and VS 2003 at the same time&#8230; Pin
anderslundsgard12-Jun-05 23:28
anderslundsgard12-Jun-05 23:28 
GeneralRe: VS 2002 and VS 2003 at the same time&#8230; Pin
toxcct13-Jun-05 1:10
toxcct13-Jun-05 1:10 
GeneralRe: VS 2002 and VS 2003 at the same time&#8230; Pin
anderslundsgard13-Jun-05 3:06
anderslundsgard13-Jun-05 3:06 
GeneralGetting rid of lag with pictureBox Pin
pcxboy11-Jun-05 19:00
pcxboy11-Jun-05 19:00 
GeneralRe: Getting rid of lag with pictureBox Pin
Robert Rohde11-Jun-05 20:42
Robert Rohde11-Jun-05 20:42 
GeneralRe: Getting rid of lag with pictureBox Pin
pcxboy11-Jun-05 20:50
pcxboy11-Jun-05 20:50 
GeneralRe: Getting rid of lag with pictureBox Pin
Robert Rohde11-Jun-05 21:16
Robert Rohde11-Jun-05 21:16 
GeneralRe: Getting rid of lag with pictureBox Pin
pcxboy12-Jun-05 0:31
pcxboy12-Jun-05 0:31 
GeneralRe: Getting rid of lag with pictureBox Pin
Robert Rohde12-Jun-05 1:02
Robert Rohde12-Jun-05 1:02 

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.