Click here to Skip to main content
15,916,835 members
Home / Discussions / C#
   

C#

 
GeneralRe: Debug unsafe function with fixed keyword Pin
Aleksan8-Nov-04 22:43
Aleksan8-Nov-04 22:43 
GeneralMenu Pin
Yulianto.8-Nov-04 18:25
Yulianto.8-Nov-04 18:25 
GeneralRe: Menu Pin
Alex Korchemniy8-Nov-04 18:37
Alex Korchemniy8-Nov-04 18:37 
GeneralRe: Menu Pin
Yulianto.8-Nov-04 18:40
Yulianto.8-Nov-04 18:40 
GeneralRe: Menu Pin
Alex Korchemniy8-Nov-04 18:47
Alex Korchemniy8-Nov-04 18:47 
GeneralQuestion about random access file Pin
momer8-Nov-04 16:46
momer8-Nov-04 16:46 
GeneralRe: Question about random access file Pin
Alex Korchemniy8-Nov-04 18:02
Alex Korchemniy8-Nov-04 18:02 
GeneralRe: Question about random access file Pin
momer8-Nov-04 18:28
momer8-Nov-04 18:28 
Hi!
Thank you!
//at present,before test,I must choose the
//sourcefilename which meet the proper size of the
//card to be test.The following code can do the right
//thing when I offer the correct sourcefilename.
......
FileStream sourcefile = new FileStream(sourcefilename,FileMode.Open,FileAccess.Read,FileShare.Read,4096,true);
File.Copy(sourcefilename,destfilename,true);
FileStream destfile = new FileStream(destfilename,FileMode.Open,FileAccess.ReadWrite,FileShare.ReadWrite,1024,true);
destfile.Seek(0L,SeekOrigin.Begin);
sourcefile.Seek(0L,SeekOrigin.Begin);
while (((i = sourcefile.ReadByte())==(j = destfile.ReadByte()))&&(i!=-1)&&(j!=-1));
if ((i==j)&&(i==-1))
{
mylusbs[threadnumble].Text = "PASS!";//currentlusb.text = "PASS!";
mylusbs[threadnumble].ForeColor = System.Drawing.Color.Blue;
}
......
? can you offer me a way to create 1GB file from 1MB fileSmile | :)
Thanks!
momer
GeneralRe: Question about random access file Pin
Alex Korchemniy8-Nov-04 18:35
Alex Korchemniy8-Nov-04 18:35 
GeneralRe: Question about random access file Pin
momer8-Nov-04 21:36
momer8-Nov-04 21:36 
QuestionHow to rename the table?( SQL Server 2000 wince ) Pin
ting6688-Nov-04 16:11
ting6688-Nov-04 16:11 
AnswerRe: How to rename the table?( SQL Server 2000 wince ) Pin
Alex Korchemniy8-Nov-04 17:30
Alex Korchemniy8-Nov-04 17:30 
GeneralC# Programs by Microsoft, Not Borland. Pin
Underhillron8-Nov-04 14:41
Underhillron8-Nov-04 14:41 
GeneralRe: C# Programs by Microsoft, Not Borland. Pin
Alex Korchemniy8-Nov-04 17:22
Alex Korchemniy8-Nov-04 17:22 
QuestionWay to avoid Events to be sent ? Pin
fickdb8-Nov-04 14:38
fickdb8-Nov-04 14:38 
AnswerRe: Way to avoid Events to be sent ? Pin
Alex Korchemniy8-Nov-04 18:41
Alex Korchemniy8-Nov-04 18:41 
AnswerRe: Way to avoid Events to be sent ? Pin
Stefan Troschuetz8-Nov-04 21:34
Stefan Troschuetz8-Nov-04 21:34 
GeneralRe: Way to avoid Events to be sent ? Pin
fickdb9-Nov-04 0:10
fickdb9-Nov-04 0:10 
Generalradiobutton and checkbox in c# Pin
youssef8-Nov-04 14:20
youssef8-Nov-04 14:20 
GeneralRe: radiobutton and checkbox in c# Pin
Alex Korchemniy8-Nov-04 16:54
Alex Korchemniy8-Nov-04 16:54 
GeneralRe: radiobutton and checkbox in c# Pin
Kiran Satish8-Nov-04 20:11
Kiran Satish8-Nov-04 20:11 
QuestionHow can I use objects created in external program? Pin
rudy.net8-Nov-04 12:30
rudy.net8-Nov-04 12:30 
AnswerRe: How can I use objects created in external program? Pin
Skynyrd8-Nov-04 12:47
Skynyrd8-Nov-04 12:47 
GeneralRe: How can I use objects created in external program? Pin
rudy.net8-Nov-04 20:57
rudy.net8-Nov-04 20:57 
AnswerRe: How can I use objects created in external program? Pin
Nick Parker8-Nov-04 13:16
protectorNick Parker8-Nov-04 13:16 

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.