Click here to Skip to main content
15,922,007 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: captureing right click mouse event........ Pin
SandipG 7-Sep-08 21:25
SandipG 7-Sep-08 21:25 
GeneralRe: captureing right click mouse event........ Pin
ani_ikram9-Sep-08 17:23
ani_ikram9-Sep-08 17:23 
GeneralRe: captureing right click mouse event........ Pin
SandipG 9-Sep-08 19:02
SandipG 9-Sep-08 19:02 
QuestionRegSetValueEx crashing Pin
monsieur_jj7-Sep-08 19:28
monsieur_jj7-Sep-08 19:28 
AnswerRe: RegSetValueEx crashing Pin
Rane7-Sep-08 20:04
Rane7-Sep-08 20:04 
GeneralRe: RegSetValueEx crashing Pin
monsieur_jj7-Sep-08 20:22
monsieur_jj7-Sep-08 20:22 
GeneralRe: RegSetValueEx crashing Pin
Rane8-Sep-08 0:07
Rane8-Sep-08 0:07 
QuestionRe: RegSetValueEx crashing Pin
CPallini7-Sep-08 23:45
mveCPallini7-Sep-08 23:45 
QuestionRe: RegSetValueEx crashing Pin
David Crow8-Sep-08 4:02
David Crow8-Sep-08 4:02 
QuestionGetting the IP adress of the computer Pin
Deepu Antony7-Sep-08 19:02
Deepu Antony7-Sep-08 19:02 
AnswerRe: Getting the IP adress of the computer Pin
_AnsHUMAN_ 7-Sep-08 19:12
_AnsHUMAN_ 7-Sep-08 19:12 
GeneralRe: Getting the IP adress of the computer Pin
Deepu Antony7-Sep-08 21:35
Deepu Antony7-Sep-08 21:35 
AnswerRe: Getting the IP adress of the computer Pin
Rane7-Sep-08 19:13
Rane7-Sep-08 19:13 
GeneralRe: Getting the IP adress of the computer Pin
Deepu Antony7-Sep-08 21:33
Deepu Antony7-Sep-08 21:33 
GeneralRe: Getting the IP adress of the computer Pin
SandipG 7-Sep-08 21:40
SandipG 7-Sep-08 21:40 
QuestionRun as Service Pin
cpvc++7-Sep-08 18:55
cpvc++7-Sep-08 18:55 
AnswerRe: Run as Service Pin
Rane7-Sep-08 19:00
Rane7-Sep-08 19:00 
AnswerRe: Run as Service Pin
Mark Salsbery8-Sep-08 6:25
Mark Salsbery8-Sep-08 6:25 
QuestionSingle Row Selection in CListCtrl ! Pin
Le@rner7-Sep-08 18:49
Le@rner7-Sep-08 18:49 
AnswerRe: Single Row Selection in CListCtrl ! Pin
_AnsHUMAN_ 7-Sep-08 19:00
_AnsHUMAN_ 7-Sep-08 19:00 
AnswerRe: Single Row Selection in CListCtrl ! Pin
Naveen7-Sep-08 19:01
Naveen7-Sep-08 19:01 
GeneralRe: Single Row Selection in CListCtrl ! Pin
Le@rner7-Sep-08 19:42
Le@rner7-Sep-08 19:42 
QuestionDrive name Pin
MsmVc7-Sep-08 18:41
MsmVc7-Sep-08 18:41 
AnswerRe: Drive name Pin
_AnsHUMAN_ 7-Sep-08 18:46
_AnsHUMAN_ 7-Sep-08 18:46 
is _getdrive() helpful?
From MSDN:
int main( void )
{
   int ch, drive, curdrive;
   static char path[_MAX_PATH];

   /* Save current drive. */
   curdrive = _getdrive();

   printf( "Available drives are:\n" );

   /* If we can switch to the drive, it exists. */
   for( drive = 1; drive <= 26; drive++ )
   {
      if( !_chdrive( drive ) )
      {
         printf( "%c:", drive + 'A' - 1 );
         if( _getdcwd( drive, path, _MAX_PATH ) != NULL )
            printf( " (Current directory is %s)", path );
         putchar( '\n' );
      }
   }

   /* Restore original drive.*/
   _chdrive( curdrive );
}


Somethings seem HARD to do, until we know how to do them.
Wink | ;-) _AnShUmAn_

GeneralRe: Drive name Pin
MsmVc7-Sep-08 19:31
MsmVc7-Sep-08 19:31 

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.