Click here to Skip to main content
15,921,643 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Shell open & working dir Pin
Paolo Vernazza23-Apr-03 4:32
Paolo Vernazza23-Apr-03 4:32 
GeneralRe: Shell open & working dir Pin
Rage23-Apr-03 20:54
professionalRage23-Apr-03 20:54 
GeneralRe: Shell open & working dir Pin
Paolo Vernazza23-Apr-03 22:58
Paolo Vernazza23-Apr-03 22:58 
GeneralRe: Shell open & working dir Pin
Rage23-Apr-03 23:05
professionalRage23-Apr-03 23:05 
GeneralRe: Shell open & working dir Pin
Paolo Vernazza23-Apr-03 23:46
Paolo Vernazza23-Apr-03 23:46 
GeneralRe: Shell open & working dir Pin
David Crow23-Apr-03 8:11
David Crow23-Apr-03 8:11 
GeneralProblem in deleting a specific record in an array in C++ Pin
grscot23-Apr-03 1:53
grscot23-Apr-03 1:53 
GeneralRe: Problem in deleting a specific record in an array in C++ Pin
David Crow23-Apr-03 2:57
David Crow23-Apr-03 2:57 
First you would need to delete the block of memory that the array element is pointing to. Then you would need to delete the array element itself by moving all elements after the one to be deleted to the left. Let me see if a picture will help:

-----------------<br />
|0|1|2|3|4|5|6|7|<br />
-----------------


If you wanted to remove element #4, elements 5, 6, and 7 would be moved to the left one time, like:

-----------------<br />
|0|1|2|3|5|6|7| |<br />
-----------------


Now you have an empty spot where element #7 used to be. You can either free it up, or leave it so that when another element is added, the memory is already allocated.
GeneralRe: Problem in deleting a specific record in an array in C++ Pin
Rickard Andersson2023-Apr-03 3:03
Rickard Andersson2023-Apr-03 3:03 
GeneralRe: Problem in deleting a specific record in an array in C++ Pin
Cambalindo23-Apr-03 6:31
Cambalindo23-Apr-03 6:31 
GeneralRe: Problem in deleting a specific record in an array in C++ Pin
Cambalindo23-Apr-03 6:37
Cambalindo23-Apr-03 6:37 
GeneralWant to find sample codes used to send E-Mail. Pin
George223-Apr-03 1:53
George223-Apr-03 1:53 
GeneralRe: Want to find sample codes used to send E-Mail. Pin
imsniper23-Apr-03 4:12
imsniper23-Apr-03 4:12 
GeneralRe: Want to find sample codes used to send E-Mail. Pin
George224-Apr-03 0:18
George224-Apr-03 0:18 
Generalupdating a list control in a parent window Pin
si_6923-Apr-03 1:45
si_6923-Apr-03 1:45 
GeneralRe: updating a list control in a parent window Pin
Rage23-Apr-03 4:09
professionalRage23-Apr-03 4:09 
QuestionWhat function should i use for displaying movies on a screen? Pin
Redeemer-dk23-Apr-03 1:19
Redeemer-dk23-Apr-03 1:19 
AnswerRe: What function should i use for displaying movies on a screen? Pin
Rage23-Apr-03 4:04
professionalRage23-Apr-03 4:04 
GeneralRe: What function should i use for displaying movies on a screen? Pin
Redeemer-dk23-Apr-03 5:24
Redeemer-dk23-Apr-03 5:24 
GeneralLocating Function Address in PE file Pin
Nitin Shukla23-Apr-03 0:47
Nitin Shukla23-Apr-03 0:47 
GeneralRe: Locating Function Address in PE file Pin
basementman24-Apr-03 7:28
basementman24-Apr-03 7:28 
GeneralInternet explorer functions Pin
svsrikanth23-Apr-03 0:17
svsrikanth23-Apr-03 0:17 
GeneralRe: Internet explorer functions Pin
David Crow23-Apr-03 3:00
David Crow23-Apr-03 3:00 
GeneralGDI programming question Pin
pankajdaga22-Apr-03 23:45
pankajdaga22-Apr-03 23:45 
GeneralRe: GDI programming question Pin
zeki yugnak23-Apr-03 3:02
zeki yugnak23-Apr-03 3:02 

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.