Click here to Skip to main content
15,907,492 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Getting version number of IUnknown interface? Pin
Jonathan de Halleux23-Sep-02 1:16
Jonathan de Halleux23-Sep-02 1:16 
QuestionHo to execute a last executable when I shutdown? Pin
Raphael Kindt22-Sep-02 22:57
Raphael Kindt22-Sep-02 22:57 
AnswerRe: Ho to execute a last executable when I shutdown? Pin
Stephane Rodriguez.23-Sep-02 0:29
Stephane Rodriguez.23-Sep-02 0:29 
GeneralRe: Ho to execute a last executable when I shutdown? Pin
Raphael Kindt23-Sep-02 0:47
Raphael Kindt23-Sep-02 0:47 
GeneralWindow message Pin
Anonymous22-Sep-02 22:52
Anonymous22-Sep-02 22:52 
GeneralRe: Window message Pin
jhwurmbach22-Sep-02 23:23
jhwurmbach22-Sep-02 23:23 
GeneralSelecting text in WebBrowser control Pin
Hans Ruck22-Sep-02 22:55
Hans Ruck22-Sep-02 22:55 
GeneralRe: Selecting text in WebBrowser control Pin
Stephane Rodriguez.23-Sep-02 0:26
Stephane Rodriguez.23-Sep-02 0:26 
If you have the XML file and are using C++, what you can do is override the default XSL stylesheet applied by IE when the XML content is rendered. To get the default XSL code, type res://msxml.dll/defaultss.xsl in your browser.

If you are an interactive user, you may find useful to select a region based on the current html tag under the mouse cursor. For instance, in Javascript, I have a onmouseover event handler implemented like this :
var elem = window.event.srcElement;
var rng = document.body.createTextRange();
rng.moveToElementText(elem);
rng.select();




MS quote (http://www.microsoft.com/ddk) : As of September 30, 2002, the Microsoft® Windows® 2000 DDK, the Microsoft Windows 98 DDK, and the Microsoft Windows NT® 4.0 DDK will no longer be available for purchase or download on this site.
GeneralRe: Selecting text in WebBrowser control Pin
Hans Ruck23-Sep-02 0:43
Hans Ruck23-Sep-02 0:43 
GeneralRe: Selecting text in WebBrowser control Pin
Stephane Rodriguez.23-Sep-02 1:12
Stephane Rodriguez.23-Sep-02 1:12 
GeneralRe: Selecting text in WebBrowser control Pin
Hans Ruck23-Sep-02 2:15
Hans Ruck23-Sep-02 2:15 
GeneralPostMessage Problem Pin
jmkhael22-Sep-02 21:51
jmkhael22-Sep-02 21:51 
GeneralRe: PostMessage Problem Pin
Lakitu23-Sep-02 0:04
Lakitu23-Sep-02 0:04 
GeneralRe: PostMessage Problem Pin
jmkhael23-Sep-02 0:30
jmkhael23-Sep-02 0:30 
GeneralRe: PostMessage Problem Pin
567890123423-Sep-02 0:38
567890123423-Sep-02 0:38 
GeneralRe: PostMessage Problem Pin
jmkhael23-Sep-02 0:41
jmkhael23-Sep-02 0:41 
GeneralRe: PostMessage Problem Pin
Andreas Saurwein23-Sep-02 2:40
Andreas Saurwein23-Sep-02 2:40 
GeneralRe: PostMessage Problem Pin
jmkhael23-Sep-02 2:47
jmkhael23-Sep-02 2:47 
GeneralRe: PostMessage Problem Pin
Andreas Saurwein23-Sep-02 3:03
Andreas Saurwein23-Sep-02 3:03 
GeneralRe: PostMessage Problem Pin
jmkhael23-Sep-02 3:58
jmkhael23-Sep-02 3:58 
GeneralFunction template and Fatal Error C1001 Pin
hierro22-Sep-02 21:47
hierro22-Sep-02 21:47 
GeneralRe: Function template and Fatal Error C1001 Pin
Anonymous22-Sep-02 22:38
Anonymous22-Sep-02 22:38 
GeneralRe: Function template and Fatal Error C1001 Pin
Mike Nordell23-Sep-02 8:40
Mike Nordell23-Sep-02 8:40 
GeneralRe: Function template and Fatal Error C1001 Pin
hierro23-Sep-02 18:33
hierro23-Sep-02 18:33 
GeneralCreate Specific Bitmap using CreateBitmap() Pin
Chintan22-Sep-02 21:22
Chintan22-Sep-02 21:22 

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.