Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: full screen  (Read 10573 times)

0 Members and 1 Guest are viewing this topic.

11victory11

    Topic Starter


    Rookie

    full screen
    « on: March 15, 2008, 04:41:03 PM »
    whats the code to make the dos window to be come FULL screen

    Broni


      Mastermind
    • Kraków my love :)
    • Thanked: 614
      • Computer Help Forum
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 8
    Re: full screen
    « Reply #1 on: March 15, 2008, 05:57:00 PM »
    Alt+Enter

    11victory11

      Topic Starter


      Rookie

      Re: full screen
      « Reply #2 on: March 15, 2008, 06:19:11 PM »
      like...is there a code that when the dos program starts it goes to the full screen ( computer screen size)

      Dias de verano

      • Guest
      Re: full screen
      « Reply #3 on: March 15, 2008, 06:23:43 PM »
      There is no such code

      11victory11

        Topic Starter


        Rookie

        Re: full screen
        « Reply #4 on: March 15, 2008, 07:00:25 PM »
        well that stinks

        derekford95



          Greenhorn

          Re: full screen
          « Reply #5 on: March 15, 2008, 08:12:00 PM »
          You can make a shortcut of the file, then go to Properties, Options, and Do "Full Screen". Now whenever you open the shortcut It'll be in full screan. If you want, you can just make the original file invisible.

          llmeyer1000



            Intermediate

            Thanked: 1
            Re: full screen
            « Reply #6 on: March 16, 2008, 08:25:05 AM »
            Hey There,
            It's not exactly code, but it may serve your purpose:  :)

            This solution works in XP
            I have not tested it in older versions.
            It saves your settings in the registry, so ...
            it will work for the computer you are on only.
            If you change your mind after doing this, I know of no way to reverse the settings without going to regedit.

            Start your program with a line like the following:
            start "My Program Full" "My Program.exe"
            In this example "My Program Full" is a title for the command window.
            (If you skip the title, it will use the name of the executable as the title instead.)

            After your program opens,
            Right Click on the title bar
            Click "Properties"
            Under - Options Tab - Display Options - Click "Full Screen"
            Click "OK"
            Click "Save properties for future windows with same title"
            Click "OK"
            Close your program and test.

            Now go to Regedit an look for this key:
            [HKEY_CURRENT_USER\Console\My Program Full]

            Or, if you didn't title it:
            [HKEY_CURRENT_USER\Console\My Program.exe]

            The settings will be something like this:
            "FullScreen"=dword:00000001
            "FontSize"=dword:000c0008
            "FontFamily"=dword:00000030
            "FontWeight"=dword:00000190
            "HistoryNoDup"=dword:00000000

            If you want to change back to a window change the "FullScreen" value from 1 to 0
            "FullScreen"=dword:00000000    = Window
            "FullScreen"=dword:00000001    = Full Screen

            As you can see, there are any number of other settings you can save this way.
            It is possible under the - Layout Tab - to change "Window Size".

            I like working in the CMD window, but under a larger than default size.
            The default is 80 x 25. Try 120 x 50.
            You might want to try this before you go to the "Full Screen" option.

            If you wanted to use these settings on another computer automatically,
            You could export the key to a *.reg file.
            Then import the registry data to the other computer from the batch file before opening the program.

            I'm not familiar with the command line to do that. Maybe someone else can help you there. :)

            P.S. What "DOS" program are you running?
            I tested this on a copy of "CMD.exe", renamed to "My Program.exe". It may not work on all "DOS" programs. And it is possible that the registry data will be stored under another key.(A different program = a different key - I'm not sure.) In case that happens, you would have to search for the title to find it. (That's how I found the key in my example.)
            « Last Edit: March 16, 2008, 09:00:53 AM by llmeyer1000 »

            11victory11

              Topic Starter


              Rookie

              Re: full screen
              « Reply #7 on: March 20, 2008, 04:15:01 PM »
              thank you for this llmeyer1000 this worked