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. come into possession of the operating system

come into possession of the operating system

Scheduled Pinned Locked Moved C / C++ / MFC
13 Posts 4 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.
  • H Hellin

    When my application is runing ,other aplications of in Windows 2k don't work (when my application runing ,my application has a appropriation the operating system itself )

    C Offline
    C Offline
    Christian Graus
    wrote on last edited by
    #2

    You're writing a virus ? What is your question ? What does your program do ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

    A 1 Reply Last reply
    0
    • A Anonymous

      not virus , a user run my application ,don't ask him to run others ,the clients sue .this is for MIS . Do you understand ?

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #3

      No, I don't understand. What does 'don't ask him to run others' mean ? What's MIS ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

      A 1 Reply Last reply
      0
      • C Christian Graus

        You're writing a virus ? What is your question ? What does your program do ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

        A Offline
        A Offline
        Anonymous
        wrote on last edited by
        #4

        not virus , a user run my application ,don't ask him to run others ,the clients sue .this is for MIS . Do you understand ?

        C 1 Reply Last reply
        0
        • C Christian Graus

          No, I don't understand. What does 'don't ask him to run others' mean ? What's MIS ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

          A Offline
          A Offline
          Anonymous
          wrote on last edited by
          #5

          After you run my application ,the other application will be stoped .MIS(manager Information System).thank you .

          C 1 Reply Last reply
          0
          • A Anonymous

            After you run my application ,the other application will be stoped .MIS(manager Information System).thank you .

            C Offline
            C Offline
            Christian Graus
            wrote on last edited by
            #6

            Stopped as in a killed process, or as in stops doing anything ? What is Manager Information System ? What does this app of yours do ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

            A 1 Reply Last reply
            0
            • C Christian Graus

              Stopped as in a killed process, or as in stops doing anything ? What is Manager Information System ? What does this app of yours do ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

              A Offline
              A Offline
              Anonymous
              wrote on last edited by
              #7

              Not Virus .

              C 1 Reply Last reply
              0
              • A Anonymous

                Not Virus .

                C Offline
                C Offline
                Christian Graus
                wrote on last edited by
                #8

                Let's see - an anonymous guy won't tell me what his app is, or answer my other questions to try and figure out what his problem is. Should I be trying to help here ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

                A A 2 Replies Last reply
                0
                • C Christian Graus

                  Let's see - an anonymous guy won't tell me what his app is, or answer my other questions to try and figure out what his problem is. Should I be trying to help here ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

                  A Offline
                  A Offline
                  Anonymous
                  wrote on last edited by
                  #9

                  do you understand me ? are you a programmer ?

                  C 1 Reply Last reply
                  0
                  • A Anonymous

                    do you understand me ? are you a programmer ?

                    C Offline
                    C Offline
                    Christian Graus
                    wrote on last edited by
                    #10

                    Check how many articles I have on this site and then you decide. The problem is not who is and isn't a programmer, it's that you can't speak English ( which is not a crime ), and, more importantly, won't answer my questions. I still don't know if your program stops other processes from responding, or kills them. Did you understand when I asked you that ? Are you a programmer ? Apart from that, you're secretive about what your program does, and you're posting anonymously. You need to be less rude if you want to act like that and still get people to help you. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

                    1 Reply Last reply
                    0
                    • C Christian Graus

                      Let's see - an anonymous guy won't tell me what his app is, or answer my other questions to try and figure out what his problem is. Should I be trying to help here ? Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

                      A Offline
                      A Offline
                      Abin
                      wrote on last edited by
                      #11

                      hmm my guess is that, he wants his users not be able to run any other applications while his application is running, it probably works like a "lock" on the clients' machines: while my app is running, you cannot alt-tab out, cannot browse files/folders on the hard disks, cannot access "my computer" or "control panel", cannot do whatever until my app is terminated. That I think is reasonable since computers in some public environments such as libraries or internet bars are acting like this, in a library you can use their computers to search for some particular books you needed, but you can't delete their files or run you own programs on that machine right? Anyway, to the original poster, I think you might want to develop a program that runs in "full screen" and "exclusive" screen mode and install global hooks to disable system keys, such as "alt-tab", "ctrl-alt-del", etc... I'm not good on those stuff, though.

                      H A 2 Replies Last reply
                      0
                      • A Abin

                        hmm my guess is that, he wants his users not be able to run any other applications while his application is running, it probably works like a "lock" on the clients' machines: while my app is running, you cannot alt-tab out, cannot browse files/folders on the hard disks, cannot access "my computer" or "control panel", cannot do whatever until my app is terminated. That I think is reasonable since computers in some public environments such as libraries or internet bars are acting like this, in a library you can use their computers to search for some particular books you needed, but you can't delete their files or run you own programs on that machine right? Anyway, to the original poster, I think you might want to develop a program that runs in "full screen" and "exclusive" screen mode and install global hooks to disable system keys, such as "alt-tab", "ctrl-alt-del", etc... I'm not good on those stuff, though.

                        H Offline
                        H Offline
                        Hellin
                        wrote on last edited by
                        #12

                        Yes ,All right .thanks .

                        1 Reply Last reply
                        0
                        • A Abin

                          hmm my guess is that, he wants his users not be able to run any other applications while his application is running, it probably works like a "lock" on the clients' machines: while my app is running, you cannot alt-tab out, cannot browse files/folders on the hard disks, cannot access "my computer" or "control panel", cannot do whatever until my app is terminated. That I think is reasonable since computers in some public environments such as libraries or internet bars are acting like this, in a library you can use their computers to search for some particular books you needed, but you can't delete their files or run you own programs on that machine right? Anyway, to the original poster, I think you might want to develop a program that runs in "full screen" and "exclusive" screen mode and install global hooks to disable system keys, such as "alt-tab", "ctrl-alt-del", etc... I'm not good on those stuff, though.

                          A Offline
                          A Offline
                          Anonymous
                          wrote on last edited by
                          #13

                          thank you very much .:laugh:

                          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