Click here to Skip to main content
15,908,020 members
Home / Discussions / C#
   

C#

 
QuestionHow to automatically back up a database from the Windows Application Pin
Rocky#21-Dec-06 23:01
Rocky#21-Dec-06 23:01 
AnswerRe: How to automatically back up a database from the Windows Application Pin
Frank Kerrigan21-Dec-06 23:35
Frank Kerrigan21-Dec-06 23:35 
GeneralRe: How to automatically back up a database from the Windows Application Pin
Rocky#21-Dec-06 23:49
Rocky#21-Dec-06 23:49 
Questiontoolstrip in reverse order Pin
GunaChinna21-Dec-06 22:45
GunaChinna21-Dec-06 22:45 
AnswerRe: toolstrip in reverse order Pin
quiteSmart21-Dec-06 22:54
quiteSmart21-Dec-06 22:54 
GeneralRe: toolstrip in reverse order Pin
GunaChinna21-Dec-06 23:05
GunaChinna21-Dec-06 23:05 
QuestionHow to save data in file from a NetowrkStream? Pin
choopie21-Dec-06 21:53
choopie21-Dec-06 21:53 
AnswerRe: How to save data in file from a NetowrkStream? Pin
MarkPhB21-Dec-06 22:24
MarkPhB21-Dec-06 22:24 
You can save the data like this

using System.IO;

...

NetworkStream ns = new NetworkStream( socket );

byte[] bytes = null;
Int32 reveivedDataLenght = ns.Read( bytes, 0, bytes.Length );

FileInfo receivedDataFile = new FileInfo( @"C:\receivedDataFile.bin" );
FileStream fs = receivedDataFile.Open( FileMode.Append, FileAccess.Write, FileShare.Read );
fs.Write( bytes, 0, reveivedDataLenght  );

GeneralRe: How to save data in file from a NetowrkStream? Pin
choopie21-Dec-06 23:40
choopie21-Dec-06 23:40 
QuestionMouse point inside-outside the client area Pin
kkadir21-Dec-06 21:46
kkadir21-Dec-06 21:46 
AnswerRe: Mouse point inside-outside the client area Pin
Martin#21-Dec-06 22:07
Martin#21-Dec-06 22:07 
GeneralRe: Mouse point inside-outside the client area Pin
kkadir21-Dec-06 22:32
kkadir21-Dec-06 22:32 
GeneralRe: Mouse point inside-outside the client area Pin
quiteSmart21-Dec-06 22:43
quiteSmart21-Dec-06 22:43 
GeneralRe: Mouse point inside-outside the client area Pin
kkadir21-Dec-06 22:54
kkadir21-Dec-06 22:54 
GeneralRe: Mouse point inside-outside the client area Pin
Martin#21-Dec-06 22:56
Martin#21-Dec-06 22:56 
GeneralRe: Mouse point inside-outside the client area Pin
kkadir21-Dec-06 23:03
kkadir21-Dec-06 23:03 
GeneralRe: Mouse point inside-outside the client area Pin
Martin#21-Dec-06 23:11
Martin#21-Dec-06 23:11 
GeneralRe: Mouse point inside-outside the client area Pin
kmuthuk16-Jan-07 9:30
kmuthuk16-Jan-07 9:30 
GeneralRe: Mouse point inside-outside the client area Pin
Martin#23-Jan-07 3:23
Martin#23-Jan-07 3:23 
QuestionShowing progress of process run in helper class? Pin
kbalias21-Dec-06 19:36
kbalias21-Dec-06 19:36 
AnswerRe: Showing progress of process run in helper class? Pin
Stefan Troschuetz21-Dec-06 22:11
Stefan Troschuetz21-Dec-06 22:11 
GeneralRe: Showing progress of process run in helper class? Pin
Thomas Stockwell22-Dec-06 13:46
professionalThomas Stockwell22-Dec-06 13:46 
AnswerRe: Showing progress of process run in helper class? Pin
Thomas Stockwell22-Dec-06 13:43
professionalThomas Stockwell22-Dec-06 13:43 
Questionadding data in drop down from database Pin
ursbuddy21-Dec-06 19:35
ursbuddy21-Dec-06 19:35 
AnswerRe: adding data in drop down from database Pin
albCode21-Dec-06 21:38
albCode21-Dec-06 21:38 

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.