Click here to Skip to main content
15,925,255 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralWeb Cam Simulation Pin
Watchman_2b19-Aug-04 8:22
Watchman_2b19-Aug-04 8:22 
GeneralHELP: unmanaged WMI Decoupled Provider Pin
tmangan19-Aug-04 8:03
tmangan19-Aug-04 8:03 
QuestionWhat should I use instead of for(;;) Pin
Micie19-Aug-04 7:57
Micie19-Aug-04 7:57 
AnswerRe: What should I use instead of for(;;) Pin
gamitech19-Aug-04 10:46
gamitech19-Aug-04 10:46 
AnswerRe: What should I use instead of for(;;) Pin
Archer28219-Aug-04 12:03
Archer28219-Aug-04 12:03 
AnswerRe: What should I use instead of for(;;) Pin
Henry miller20-Aug-04 3:47
Henry miller20-Aug-04 3:47 
GeneralNeed help with encryption/decryption program Pin
Quaydogg19-Aug-04 7:37
Quaydogg19-Aug-04 7:37 
GeneralRe: Need help with encryption/decryption program Pin
Micie19-Aug-04 9:17
Micie19-Aug-04 9:17 
I have an idea for encrypt implementation only.
Pointers are my bad side. Still working on them. Poke tongue | ;-P
[btw. You are a lucky guy, coz u have some1 who
can teach you... I'm learning from net and books.]

void encrypt(char array[])
{
   char getString[] = decryptedString;
   char encryptedString[];
   int size = sizeof(getString);
   for( int n=0 ; n < size ; n++ )
   {
        encryptedString[n] = char((reinterpret_cast<int>(decryptedString[n]))-1);
   }
}

I'm outta home now.. not sure if it will works.. can't check it now.. I think that code is close to truth though. Hope it works and will help you at least a little.

_________<br />
I'm made in C++... and I'm proud of it!

GeneralRe: Need help with encryption/decryption program Pin
Doug Mitchell19-Aug-04 9:42
Doug Mitchell19-Aug-04 9:42 
GeneralRe: Need help with encryption/decryption program Pin
cmk19-Aug-04 15:48
cmk19-Aug-04 15:48 
GeneralRe: Need help with encryption/decryption program Pin
JimmyRopes20-Aug-04 22:23
professionalJimmyRopes20-Aug-04 22:23 
GeneralMake CString to char* Pin
GGConsulting19-Aug-04 6:07
GGConsulting19-Aug-04 6:07 
GeneralRe: Make CString to char* Pin
toxcct19-Aug-04 6:15
toxcct19-Aug-04 6:15 
GeneralRe: Make CString to char* Pin
GGConsulting19-Aug-04 7:57
GGConsulting19-Aug-04 7:57 
GeneralRe: Make CString to char* Pin
GGConsulting19-Aug-04 8:00
GGConsulting19-Aug-04 8:00 
GeneralRe: Make CString to char* Pin
toxcct21-Aug-04 7:14
toxcct21-Aug-04 7:14 
GeneralRe: Make CString to char* Pin
Chris Meech19-Aug-04 6:43
Chris Meech19-Aug-04 6:43 
GeneralRe: Make CString to char* Pin
BlackDice19-Aug-04 10:13
BlackDice19-Aug-04 10:13 
GeneralRe: Make CString to char* Pin
Jeff Bogan19-Aug-04 15:20
Jeff Bogan19-Aug-04 15:20 
GeneralfShared Memory Pin
Krishnan V19-Aug-04 5:37
Krishnan V19-Aug-04 5:37 
GeneralUninstall Blues Pin
Monty219-Aug-04 3:57
Monty219-Aug-04 3:57 
GeneralRe: Uninstall Blues Pin
David Crow19-Aug-04 4:58
David Crow19-Aug-04 4:58 
GeneralRe: Uninstall Blues Pin
toxcct19-Aug-04 5:01
toxcct19-Aug-04 5:01 
GeneralRe: Uninstall Blues Pin
David Crow19-Aug-04 5:07
David Crow19-Aug-04 5:07 
QuestionHow to Initialize an array of user selected size Pin
Deepak Samuel19-Aug-04 3:45
Deepak Samuel19-Aug-04 3:45 

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.