Click here to Skip to main content
15,914,452 members
Home / Discussions / COM
   

COM

 
AnswerRe: How to convert existing C# Windows Application to C# Web Application.. Pin
Colin Angus Mackay19-Mar-07 1:21
Colin Angus Mackay19-Mar-07 1:21 
AnswerRe: How to convert existing C# Windows Application to C# Web Application.. Pin
Dave Kreskowiak19-Mar-07 1:42
mveDave Kreskowiak19-Mar-07 1:42 
QuestionMapWindow ActiveX Control in MFC Application Pin
Maroon16-Mar-07 12:06
Maroon16-Mar-07 12:06 
Questionproblem with delete Pin
janadhana15-Mar-07 6:46
janadhana15-Mar-07 6:46 
AnswerRe: problem with delete Pin
Roger Stoltz15-Mar-07 7:13
Roger Stoltz15-Mar-07 7:13 
GeneralRe: problem with delete Pin
janadhana16-Mar-07 2:35
janadhana16-Mar-07 2:35 
GeneralRe: problem with delete Pin
Roger Stoltz16-Mar-07 3:15
Roger Stoltz16-Mar-07 3:15 
AnswerRe: problem with delete Pin
prasad_som15-Mar-07 18:38
prasad_som15-Mar-07 18:38 
To add to roger's suggestion,
jana_dhana wrote:
if(p)
delete p;

It is good practice to set pointer to NULL, after deletion, and no need to check pointer for NULL. It is safe to call delete on NULL pointer.
you can modify your code to,
delete p;
p = NULL;

And obviously, its needed some more code to see, to track down the problem.


GeneralRe: problem with delete Pin
janadhana16-Mar-07 2:38
janadhana16-Mar-07 2:38 
AnswerRe: problem with delete Pin
prasad_som16-Mar-07 2:42
prasad_som16-Mar-07 2:42 
QuestionHow to Create the plug-in toolbar for Windows Live Messenger using VC++? Pin
A.Venkata ramana14-Mar-07 23:48
A.Venkata ramana14-Mar-07 23:48 
QuestionInvalid pointer exception Pin
shivapriyak14-Mar-07 19:52
shivapriyak14-Mar-07 19:52 
AnswerRe: Invalid pointer exception Pin
prasad_som14-Mar-07 20:01
prasad_som14-Mar-07 20:01 
GeneralRe: Invalid pointer exception Pin
shivapriyak14-Mar-07 21:29
shivapriyak14-Mar-07 21:29 
AnswerRe: Invalid pointer exception Pin
prasad_som14-Mar-07 21:36
prasad_som14-Mar-07 21:36 
GeneralRe: Invalid pointer exception Pin
shivapriyak14-Mar-07 21:51
shivapriyak14-Mar-07 21:51 
GeneralRe: Invalid pointer exception Pin
prasad_som14-Mar-07 22:36
prasad_som14-Mar-07 22:36 
QuestionWhat does "THIS_" mean? Pin
[d3m0n]14-Mar-07 5:26
[d3m0n]14-Mar-07 5:26 
AnswerRe: What does "THIS_" mean? Pin
Roger Stoltz14-Mar-07 6:55
Roger Stoltz14-Mar-07 6:55 
GeneralRe: What does "THIS_" mean? Pin
[d3m0n]14-Mar-07 13:01
[d3m0n]14-Mar-07 13:01 
QuestionCapicom dll- require clarification urgently Pin
anufabian14-Mar-07 0:30
anufabian14-Mar-07 0:30 
QuestionA COM'S Events Problem Pin
huangdingjun13-Mar-07 20:53
huangdingjun13-Mar-07 20:53 
QuestionHow to Install .dll files in the Registry? Pin
senthil_rajesh_kavin12-Mar-07 19:12
senthil_rajesh_kavin12-Mar-07 19:12 
AnswerRe: How to Install .dll files in the Registry? Pin
prasad_som12-Mar-07 19:17
prasad_som12-Mar-07 19:17 
GeneralRe: How to Install .dll files in the Registry? Pin
senthil_rajesh_kavin12-Mar-07 19:24
senthil_rajesh_kavin12-Mar-07 19:24 

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.