Click here to Skip to main content
15,918,485 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Question about CString Pin
LaHaHa5-Oct-05 12:21
LaHaHa5-Oct-05 12:21 
GeneralRe: Question about CString Pin
Roger Stoltz5-Oct-05 21:04
Roger Stoltz5-Oct-05 21:04 
GeneralRe: Question about CString Pin
LaHaHa5-Oct-05 22:54
LaHaHa5-Oct-05 22:54 
GeneralRe: Question about CString Pin
Roger Stoltz5-Oct-05 23:32
Roger Stoltz5-Oct-05 23:32 
GeneralRe: Question about CString Pin
LaHaHa6-Oct-05 1:01
LaHaHa6-Oct-05 1:01 
GeneralRe: Question about CString Pin
Roger Stoltz6-Oct-05 1:26
Roger Stoltz6-Oct-05 1:26 
GeneralRe: Question about CString Pin
LaHaHa6-Oct-05 16:17
LaHaHa6-Oct-05 16:17 
QuestionException 0xE06D7363 Problem? Pin
bosfan5-Oct-05 4:26
bosfan5-Oct-05 4:26 
AnswerRe: Exception 0xE06D7363 Problem? Pin
Bob Stanneveld5-Oct-05 6:17
Bob Stanneveld5-Oct-05 6:17 
GeneralRe: Exception 0xE06D7363 Problem? Pin
bosfan5-Oct-05 21:17
bosfan5-Oct-05 21:17 
QuestionGerman Umlaute in .tlh File Pin
MarcoNedwig5-Oct-05 3:40
MarcoNedwig5-Oct-05 3:40 
QuestionEditing Standard/Object Libraries... Pin
Milby0075-Oct-05 3:13
Milby0075-Oct-05 3:13 
AnswerRe: Editing Standard/Object Libraries... Pin
Bartosz Bien5-Oct-05 3:24
Bartosz Bien5-Oct-05 3:24 
GeneralRe: Editing Standard/Object Libraries... Pin
Milby00711-Oct-05 0:04
Milby00711-Oct-05 0:04 
GeneralRe: Editing Standard/Object Libraries... Pin
Bartosz Bien12-Oct-05 9:48
Bartosz Bien12-Oct-05 9:48 
GeneralRe: Editing Standard/Object Libraries... Pin
Milby00718-Oct-05 12:02
Milby00718-Oct-05 12:02 
Questionconversion from ini to xml Pin
swaapu5-Oct-05 3:04
swaapu5-Oct-05 3:04 
Questionconversion from ini to xml Pin
swaapu5-Oct-05 3:04
swaapu5-Oct-05 3:04 
AnswerRe: conversion from ini to xml Pin
vikas amin5-Oct-05 3:22
vikas amin5-Oct-05 3:22 
GeneralRe: conversion from ini to xml Pin
toxcct5-Oct-05 4:48
toxcct5-Oct-05 4:48 
GeneralRe: conversion from ini to xml Pin
Rage5-Oct-05 5:57
professionalRage5-Oct-05 5:57 
JokeRe: conversion from ini to xml Pin
toxcct5-Oct-05 6:09
toxcct5-Oct-05 6:09 
QuestionRe: conversion from ini to xml Pin
David Crow5-Oct-05 6:42
David Crow5-Oct-05 6:42 
AnswerRe: conversion from ini to xml Pin
David Crow5-Oct-05 3:50
David Crow5-Oct-05 3:50 
The first thing I would do is print out an .ini file on your system that fits on a single sheet of paper (for me this was win.ini). Then on a separate sheet of paper, write out what the resulting XML format should look like. Some things you should notice:

  • Each section in the .ini file should relate to a set of same-named tags in the XML file. For example, if the .ini file had a section named [Mail], then you should expect to have <Mail></Mail> tags in the XML file.

  • Each key in a given section of the .ini file should relate to a set of same-named tags within the aforementioned tags. For example, if the .ini file had a key named MAPIXVER with a value of 1.0.0.1 in the [Mail] section, then you should expect to have <MAPIXVER>1.0.0.1</MAPIXVER> in the XML file in between the <Mail></Mail> tags.

    Make sense?


    "One must learn from the bite of the fire to leave it alone." - Native American Proverb


  • GeneralRe: conversion from ini to xml Pin
    swaapu5-Oct-05 20:38
    swaapu5-Oct-05 20:38 

    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.