Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Some questions

Some questions

Scheduled Pinned Locked Moved C / C++ / MFC
helptutorialquestionlounge
5 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    DaFrawg
    wrote on last edited by
    #1
    1. Why doesn't \n work in CEdit controls, but \x0D\x0A has the right effect? 2) How to notify the compiler that you have ended the \x escape char? ("\x0D\x0AEllo world" will not be impreted as newline+"Ello world", but somehow as something where the first E will be a part of the second \x) 3) Programs like Alcohol 120% (advanced CD-ROM/-RW or DVD-ROM/-RW/+ROM/+RW etc. burning), have some controls that are not system standard, but have "TList" or something as template name. Where can I find them? (I have not yet tried to find them in the dependency files) 4) (Slightly offtopic) A) What sound event is launched when WinXP shows it's fatal exception error dialog? (click here to see some tech info on the crash etc.) B) How to set a set of sounds to one sound event, and each time te event is launched, one (random) of the sounds will be played? 5) How to make a static control which contains a hyperlink?
    M M 2 Replies Last reply
    0
    • D DaFrawg
      1. Why doesn't \n work in CEdit controls, but \x0D\x0A has the right effect? 2) How to notify the compiler that you have ended the \x escape char? ("\x0D\x0AEllo world" will not be impreted as newline+"Ello world", but somehow as something where the first E will be a part of the second \x) 3) Programs like Alcohol 120% (advanced CD-ROM/-RW or DVD-ROM/-RW/+ROM/+RW etc. burning), have some controls that are not system standard, but have "TList" or something as template name. Where can I find them? (I have not yet tried to find them in the dependency files) 4) (Slightly offtopic) A) What sound event is launched when WinXP shows it's fatal exception error dialog? (click here to see some tech info on the crash etc.) B) How to set a set of sounds to one sound event, and each time te event is launched, one (random) of the sounds will be played? 5) How to make a static control which contains a hyperlink?
      M Offline
      M Offline
      Michael P Butler
      wrote on last edited by
      #2

      DaFrawg wrote: 3) Programs like Alcohol 120% (advanced CD-ROM/-RW or DVD-ROM/-RW/+ROM/+RW etc. burning), have some controls that are not system standard, but have "TList" or something as template name. Where can I find them? (I have not yet tried to find them in the dependency files) These are custom window class controls. You won't be able to find them unless they are ActiveX controls. They are not part of the platform sdk or Windows common controls. TList maybe a Borland C++/Delphi control. DaFrawg wrote: 4) (Slightly offtopic) A) What sound event is launched when WinXP shows it's fatal exception error dialog? (click here to see some tech info on the crash etc.) B) How to set a set of sounds to one sound event, and each time te event is launched, one (random) of the sounds will be played? These are set in Control Panel under Sounds. DaFrawg wrote: 5) How to make a static control which contains a hyperlink? I use this http://www.codeproject.com/staticctrl/clabel.asp[^] Michael 'Logic, my dear Zoe, merely enables one to be wrong with authority.' - The Doctor: The Wheel in Space

      D 1 Reply Last reply
      0
      • D DaFrawg
        1. Why doesn't \n work in CEdit controls, but \x0D\x0A has the right effect? 2) How to notify the compiler that you have ended the \x escape char? ("\x0D\x0AEllo world" will not be impreted as newline+"Ello world", but somehow as something where the first E will be a part of the second \x) 3) Programs like Alcohol 120% (advanced CD-ROM/-RW or DVD-ROM/-RW/+ROM/+RW etc. burning), have some controls that are not system standard, but have "TList" or something as template name. Where can I find them? (I have not yet tried to find them in the dependency files) 4) (Slightly offtopic) A) What sound event is launched when WinXP shows it's fatal exception error dialog? (click here to see some tech info on the crash etc.) B) How to set a set of sounds to one sound event, and each time te event is launched, one (random) of the sounds will be played? 5) How to make a static control which contains a hyperlink?
        M Offline
        M Offline
        melwyn
        wrote on last edited by
        #3

        DaFrawg wrote: 1) Why doesn't \n work in CEdit controls, but \x0D\x0A has the right effect? have u tried giving a "\r\n" that's what \x0D\x0A corresponds to. DaFrawg wrote: 2) How to notify the compiler that you have ended the \x escape char? ("\x0D\x0AEllo world" will not be impreted as newline+"Ello world", but somehow as something where the first E will be a part of the second \x) maybe giving a space after the 2nd hex number. Or slit it into 2 string "\x0D\x0A" "Ello world" My 2 cents.

        D 1 Reply Last reply
        0
        • M Michael P Butler

          DaFrawg wrote: 3) Programs like Alcohol 120% (advanced CD-ROM/-RW or DVD-ROM/-RW/+ROM/+RW etc. burning), have some controls that are not system standard, but have "TList" or something as template name. Where can I find them? (I have not yet tried to find them in the dependency files) These are custom window class controls. You won't be able to find them unless they are ActiveX controls. They are not part of the platform sdk or Windows common controls. TList maybe a Borland C++/Delphi control. DaFrawg wrote: 4) (Slightly offtopic) A) What sound event is launched when WinXP shows it's fatal exception error dialog? (click here to see some tech info on the crash etc.) B) How to set a set of sounds to one sound event, and each time te event is launched, one (random) of the sounds will be played? These are set in Control Panel under Sounds. DaFrawg wrote: 5) How to make a static control which contains a hyperlink? I use this http://www.codeproject.com/staticctrl/clabel.asp[^] Michael 'Logic, my dear Zoe, merely enables one to be wrong with authority.' - The Doctor: The Wheel in Space

          D Offline
          D Offline
          DaFrawg
          wrote on last edited by
          #4
          1. Hm. Okay. I guess they are not really more than the SysListCtrl32. Tnx. 4) I see, but what name? There is a list (I know, TreeCtrl) with a lot of names. Not that I don't know what to do, but what's the description of that (Program Exception/Hang) sound event? 5) Thanks. I reviewed the problem, and it always seems to be a Button.
          1 Reply Last reply
          0
          • M melwyn

            DaFrawg wrote: 1) Why doesn't \n work in CEdit controls, but \x0D\x0A has the right effect? have u tried giving a "\r\n" that's what \x0D\x0A corresponds to. DaFrawg wrote: 2) How to notify the compiler that you have ended the \x escape char? ("\x0D\x0AEllo world" will not be impreted as newline+"Ello world", but somehow as something where the first E will be a part of the second \x) maybe giving a space after the 2nd hex number. Or slit it into 2 string "\x0D\x0A" "Ello world" My 2 cents.

            D Offline
            D Offline
            DaFrawg
            wrote on last edited by
            #5
            1. (Smashes his own head a bit too hard against the wall, because he is using far-fetched tricks in stead of the simple soltion) Okay, thanks. But why does only '\r\n' work in stead of a single '\n'?
            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups