Click here to Skip to main content
15,886,720 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Getting alerts (messagebox) with an integer value Pin
kk_vp10-Feb-06 3:16
kk_vp10-Feb-06 3:16 
GeneralRe: Getting alerts (messagebox) with an integer value Pin
David Crow10-Feb-06 3:21
David Crow10-Feb-06 3:21 
GeneralRe: Getting alerts (messagebox) with an integer value Pin
toxcct10-Feb-06 3:26
toxcct10-Feb-06 3:26 
GeneralRe: Getting alerts (messagebox) with an integer value Pin
kk_vp10-Feb-06 3:27
kk_vp10-Feb-06 3:27 
QuestionWindow in MDI Pin
Anu_Bala9-Feb-06 23:43
Anu_Bala9-Feb-06 23:43 
AnswerRe: Window in MDI Pin
_anil_9-Feb-06 23:53
_anil_9-Feb-06 23:53 
QuestionXmlCDataSection Pin
swaapu9-Feb-06 23:23
swaapu9-Feb-06 23:23 
AnswerRe: XmlCDataSection Pin
Blake Miller10-Feb-06 4:09
Blake Miller10-Feb-06 4:09 
This is one exmaple why the CDATA element type is used...

We use CDATA sections in our XML files so our product's scripting language can be embedded within the XML without freaking the XML parsers.

For example, we might have a script line like this:

iTag001 <> 10;

If you don't put that in CDATA and and XML parseer tries to interpret it, you will have trouble.

So, now we have a node like this:

<ONHIDE>
<SCRIPT>
<![CDATA[
IF iTag001 <> 10 THEN
iTag001 = 10;
ENDIF;
]]>
</SCRIPT>
</ONHIDE>


Instead of like this:

<ONHIDE
SCRIPT = '
IF iTag001 <> 10 THEN
iTag001 = 10;
ENDIF;
'>
</ONHIDE>


We use the straight XML COM calls and interface pointers to process the XML, so I can't help you directly with the XmlCDataSection.

People that start writing code immediately are programmers (or hackers), people that ask questions first are Software Engineers - Graham Shanks
QuestionAdding new window to SDI Application Pin
Anu_Bala9-Feb-06 23:16
Anu_Bala9-Feb-06 23:16 
QuestionA new window in SDI Pin
Anu_Bala9-Feb-06 23:09
Anu_Bala9-Feb-06 23:09 
AnswerRe: A new window in SDI Pin
Rage10-Feb-06 2:49
professionalRage10-Feb-06 2:49 
QuestionAutomation for MS word Pin
KongHL9-Feb-06 22:39
KongHL9-Feb-06 22:39 
Questionclass view of project work space is not showing all the classes Pin
BiswaR9-Feb-06 22:34
BiswaR9-Feb-06 22:34 
AnswerRe: class view of project work space is not showing all the classes Pin
Maxwell Chen9-Feb-06 22:38
Maxwell Chen9-Feb-06 22:38 
GeneralRe: class view of project work space is not showing all the classes Pin
BiswaR9-Feb-06 23:08
BiswaR9-Feb-06 23:08 
GeneralRe: class view of project work space is not showing all the classes Pin
_anil_9-Feb-06 23:43
_anil_9-Feb-06 23:43 
GeneralRe: class view of project work space is not showing all the classes Pin
BiswaR10-Feb-06 0:15
BiswaR10-Feb-06 0:15 
GeneralRe: class view of project work space is not showing all the classes Pin
toxcct10-Feb-06 1:35
toxcct10-Feb-06 1:35 
AnswerRe: class view of project work space is not showing all the classes Pin
_anil_9-Feb-06 22:58
_anil_9-Feb-06 22:58 
QuestionContactless Smart Card library for programming with VC++ ? Pin
Maxwell Chen9-Feb-06 22:33
Maxwell Chen9-Feb-06 22:33 
QuestionClose a dialog from OnInitDialog Pin
peterchen9-Feb-06 22:32
peterchen9-Feb-06 22:32 
AnswerRe: Close a dialog from OnInitDialog Pin
Maxwell Chen9-Feb-06 22:43
Maxwell Chen9-Feb-06 22:43 
AnswerRe: Close a dialog from OnInitDialog Pin
toxcct9-Feb-06 23:37
toxcct9-Feb-06 23:37 
GeneralRe: Close a dialog from OnInitDialog Pin
ThatsAlok10-Feb-06 0:14
ThatsAlok10-Feb-06 0:14 
GeneralRe: Close a dialog from OnInitDialog Pin
toxcct10-Feb-06 0:16
toxcct10-Feb-06 0:16 

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.