Click here to Skip to main content
15,906,223 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Transfer Files over Network Pin
Ashman7-Feb-04 15:12
Ashman7-Feb-04 15:12 
GeneralRe: Transfer Files over Network Pin
John M. Drescher7-Feb-04 19:08
John M. Drescher7-Feb-04 19:08 
GeneralRe: Transfer Files over Network Pin
Tom Larsen8-Feb-04 7:39
Tom Larsen8-Feb-04 7:39 
Generalcreate a toolber in MFC Pin
Zeeshan Bilal6-Feb-04 18:24
Zeeshan Bilal6-Feb-04 18:24 
GeneralRe: create a toolber in MFC Pin
Selvam R6-Feb-04 18:46
professionalSelvam R6-Feb-04 18:46 
GeneralRe: create a toolber in MFC Pin
Anonymous6-Feb-04 18:48
Anonymous6-Feb-04 18:48 
GeneralHelp with user input problem. Pin
Pakled6-Feb-04 15:41
Pakled6-Feb-04 15:41 
GeneralRe: Help with user input problem. Pin
Daniel13246-Feb-04 16:02
Daniel13246-Feb-04 16:02 
If you want to use a blank instead of the password, you can print what you need to as far as telling the user to enter a password, then set the text color to the same color as the background color. When the user enters the password and presses enter, you can set the text color to what it was before.

This way, when the user enters the password, nothing will be seen.

<br />
int main(void)<br />
{<br />
   char password[10];<br />
   printf("Enter password...\n");<br />
   SetTextColorToSameAsBackground();<br />
   gets(password);<br />
   SetTextColorToWhatItWasBefore();<br />
   return 0;<br />
}<br />

GeneralGet local IP addresses &amp; netmask Pin
Anonymous___6-Feb-04 14:58
sussAnonymous___6-Feb-04 14:58 
GeneralRe: Get local IP addresses &amp; netmask Pin
David Crow6-Feb-04 15:40
David Crow6-Feb-04 15:40 
GeneralRe: Get local IP addresses &amp; netmask Pin
Anonymous7-Feb-04 3:07
Anonymous7-Feb-04 3:07 
GeneralBandwidth Throttling... Pin
code-frog6-Feb-04 12:51
professionalcode-frog6-Feb-04 12:51 
GeneralRe: Bandwidth Throttling... Pin
Jörgen Sigvardsson7-Feb-04 14:10
Jörgen Sigvardsson7-Feb-04 14:10 
GeneralRe: Bandwidth Throttling... Pin
code-frog7-Feb-04 15:47
professionalcode-frog7-Feb-04 15:47 
GeneralRe: Bandwidth Throttling... Pin
Jörgen Sigvardsson7-Feb-04 22:44
Jörgen Sigvardsson7-Feb-04 22:44 
GeneralRe: Bandwidth Throttling... Pin
code-frog8-Feb-04 6:44
professionalcode-frog8-Feb-04 6:44 
GeneralProblem with MFC function Pin
Dev5786-Feb-04 12:42
Dev5786-Feb-04 12:42 
GeneralRe: Problem with MFC function Pin
Ravi Bhavnani6-Feb-04 15:02
professionalRavi Bhavnani6-Feb-04 15:02 
GeneralRe: Problem with MFC function Pin
Michael Dunn7-Feb-04 16:02
sitebuilderMichael Dunn7-Feb-04 16:02 
QuestionWhy does this fail? Pin
Anonymous6-Feb-04 11:40
Anonymous6-Feb-04 11:40 
AnswerRe: Why does this fail? Pin
Anonymous7-Feb-04 3:11
Anonymous7-Feb-04 3:11 
GeneralRe: Why does this fail? Pin
John M. Drescher7-Feb-04 19:23
John M. Drescher7-Feb-04 19:23 
GeneralClosing an application Pin
krugger6-Feb-04 11:37
krugger6-Feb-04 11:37 
GeneralRe: Closing an application Pin
Ravi Bhavnani6-Feb-04 13:02
professionalRavi Bhavnani6-Feb-04 13:02 
GeneralRe: Closing an application Pin
Jim Crafton6-Feb-04 13:05
Jim Crafton6-Feb-04 13:05 

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.