Click here to Skip to main content
15,921,660 members
Home / Discussions / COM
   

COM

 
GeneralRe: Please help!! Pin
Mike_V9-Aug-03 11:55
Mike_V9-Aug-03 11:55 
GeneralInternet Explorer custom menu Pin
Mohsen Saad7-Aug-03 18:55
Mohsen Saad7-Aug-03 18:55 
Generalfor people with experience with ActiveX Controls.. Pin
safee ullah7-Aug-03 1:49
safee ullah7-Aug-03 1:49 
GeneralRe: for people with experience with ActiveX Controls.. Pin
Stephane Rodriguez.7-Aug-03 6:09
Stephane Rodriguez.7-Aug-03 6:09 
GeneralRe: for people with experience with ActiveX Controls.. Pin
safee ullah7-Aug-03 23:16
safee ullah7-Aug-03 23:16 
GeneralRe: for people with experience with ActiveX Controls.. Pin
Stephane Rodriguez.7-Aug-03 23:25
Stephane Rodriguez.7-Aug-03 23:25 
GeneralRe: for people with experience with ActiveX Controls.. Pin
safee ullah8-Aug-03 0:17
safee ullah8-Aug-03 0:17 
GeneralRe: for people with experience with ActiveX Controls.. Pin
Stephane Rodriguez.8-Aug-03 0:30
Stephane Rodriguez.8-Aug-03 0:30 
safeeullah wrote:
when i built it in release mode, my spreadsheet stopped taking in data entries to cells..

1) Check out you don't have significant code in a

#ifdef _DEBUG
...
#endif

section. Because in release mode, no code would be generated.



2) If the debug mode works fine, and the release mode doesn't, it's usually because the code is weak. There is a probably a bad use of pointers somewhere.

- check out the console window for all "exception errors" that might be produced by Excel (or any other ActiveX host).
- build the release mode with "Debug Info". And check the ".pdb" box. Doing so, you can put a breakpoint even in release mode.
- Add a DebugBreak() statement in your code. This allows to halt the code, start a session, and watch variables, etc. To have this to work properly, it's best to generate a release version with all the debug info (see above).
- add a few message boxes in your code, and watch them. That's the most primitive way of solving issues, but sometimes it's enough!

Good luck!

And if you are to go on with debugging, crash handlers, etc. don't hesitate to buy this book[^].




  RSS feed
Generalcalling vc6 dll from vb6 activex dll Pin
patwilliams6-Aug-03 5:53
patwilliams6-Aug-03 5:53 
GeneralUsing MS Web Browser ActiveX Control Pin
Douglas Troy5-Aug-03 5:11
Douglas Troy5-Aug-03 5:11 
GeneralRe: Using MS Web Browser ActiveX Control Pin
Stephane Rodriguez.6-Aug-03 10:53
Stephane Rodriguez.6-Aug-03 10:53 
GeneralRe: Using MS Web Browser ActiveX Control Pin
Douglas Troy7-Aug-03 5:57
Douglas Troy7-Aug-03 5:57 
GeneralRe: Using MS Web Browser ActiveX Control Pin
Stephane Rodriguez.7-Aug-03 6:07
Stephane Rodriguez.7-Aug-03 6:07 
GeneralRe: Using MS Web Browser ActiveX Control Pin
Douglas Troy7-Aug-03 7:03
Douglas Troy7-Aug-03 7:03 
QuestionQueryInterface -- How come this code doesn't work? Pin
Popeye Doyle Murray5-Aug-03 4:16
Popeye Doyle Murray5-Aug-03 4:16 
AnswerRe: QueryInterface -- How come this code doesn't work? Pin
Stephane Rodriguez.5-Aug-03 5:49
Stephane Rodriguez.5-Aug-03 5:49 
GeneralRe: QueryInterface -- How come this code doesn't work? Pin
geo_m5-Aug-03 22:26
geo_m5-Aug-03 22:26 
GeneralRe: QueryInterface -- How come this code doesn't work? Pin
Steve S5-Aug-03 23:20
Steve S5-Aug-03 23:20 
GeneralRe: QueryInterface -- How come this code doesn't work? Pin
Popeye Doyle Murray6-Aug-03 2:29
Popeye Doyle Murray6-Aug-03 2:29 
GeneralRe: QueryInterface -- How come this code doesn't work? Pin
Stephane Rodriguez.6-Aug-03 3:40
Stephane Rodriguez.6-Aug-03 3:40 
GeneralActiveX - COM - for Excel Application control Pin
jauss4-Aug-03 23:20
jauss4-Aug-03 23:20 
GeneralRe: ActiveX - COM - for Excel Application control Pin
Steve S4-Aug-03 23:26
Steve S4-Aug-03 23:26 
GeneralRe: ActiveX - COM - for Excel Application control Pin
Stephane Rodriguez.4-Aug-03 23:48
Stephane Rodriguez.4-Aug-03 23:48 
GeneralRe: ActiveX - COM - for Excel Application control Pin
jauss5-Aug-03 1:44
jauss5-Aug-03 1:44 
GeneralRe: ActiveX - COM - for Excel Application control Pin
Stephane Rodriguez.5-Aug-03 1:50
Stephane Rodriguez.5-Aug-03 1:50 

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.