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

Author Topic: batch file  (Read 4542 times)

0 Members and 1 Guest are viewing this topic.

night-rider

    Topic Starter


    Beginner

    batch file
    « on: April 28, 2010, 03:55:11 AM »
    can anyone help me please...!!!
    what is the code to resize the window of a bat file into 11 x 18?
     
    thank you in advance!

    glaba



      Rookie

      • Experience: Experienced
      • OS: Windows 7
      Re: batch file
      « Reply #1 on: April 28, 2010, 04:43:35 PM »
      you might want to create an exe file to take care of that. i dont think you can do that in batch.
      use vbs

      night-rider

        Topic Starter


        Beginner

        Re: batch file
        « Reply #2 on: April 30, 2010, 03:17:27 AM »
        oic!
        thanks for the reply ::)

        Helpmeh



          Guru

        • Roar.
        • Thanked: 123
          • Yes
          • Yes
        • Computer: Specs
        • Experience: Familiar
        • OS: Windows 8
        Re: batch file
        « Reply #3 on: April 30, 2010, 04:12:40 AM »
        It is easily possible in batch.

        Mode con cols=11 lines=18

        Now, if you mean 11x18 with some kind of measurement involved, it's not going to happen.
        Where's MagicSpeed?
        Quote from: 'matt'
        He's playing a game called IRL. Great graphics, *censored* gameplay.

        night-rider

          Topic Starter


          Beginner

          Re: batch file
          « Reply #4 on: May 06, 2010, 04:43:31 AM »
          i tried your suggestion sir but it says like this

          ' the screen cannot be set to the number of lines and columns specified '

          what if it will automatically in full screen without editing the properties?

          is there a code for that sir?

          Helpmeh



            Guru

          • Roar.
          • Thanked: 123
            • Yes
            • Yes
          • Computer: Specs
          • Experience: Familiar
          • OS: Windows 8
          Re: batch file
          « Reply #5 on: May 06, 2010, 05:16:51 PM »
          Those numbers are just too small. I just did it as an example. Try experimenting with other numbers.
          Where's MagicSpeed?
          Quote from: 'matt'
          He's playing a game called IRL. Great graphics, *censored* gameplay.

          robinson



            Rookie

            Re: batch file
            « Reply #6 on: May 22, 2010, 01:54:43 AM »
            Yes it is great idea that you want to create an exe file to take care of that.I think you have use vbs its very easy to use.
            You can easily code to resize the window of a bat file into 11 x 18.

            Helpmeh



              Guru

            • Roar.
            • Thanked: 123
              • Yes
              • Yes
            • Computer: Specs
            • Experience: Familiar
            • OS: Windows 8
            Re: batch file
            « Reply #7 on: May 22, 2010, 07:11:29 AM »
            Yes it is great idea that you want to create an exe file to take care of that.I think you have use vbs its very easy to use.
            You can easily code to resize the window of a bat file into 11 x 18.
            mode con cols=11 lines=18
            will not have the same effect as changing the window to 11px by 18px.
            Where's MagicSpeed?
            Quote from: 'matt'
            He's playing a game called IRL. Great graphics, *censored* gameplay.

            GaryD45

            • Guest
            Re: batch file
            « Reply #8 on: May 22, 2010, 07:28:37 AM »
            I've looked for DAYS for a way to change the command-line window properties from within the window but found only two possibilities:

            (1) temporarily change them by right-clicking the CMD icon in the upper-left corner and changing Properties (http://commandwindows.com/configure.htm).

            (2) permanently change the properties of a command-line window by editing the Registry and then rebooting; just Google it and you'll get more replies than you can shake a stick at in a day.

            Helpmeh



              Guru

            • Roar.
            • Thanked: 123
              • Yes
              • Yes
            • Computer: Specs
            • Experience: Familiar
            • OS: Windows 8
            Re: batch file
            « Reply #9 on: May 22, 2010, 07:36:06 AM »
            I've looked for DAYS for a way to change the command-line window properties from within the window but found only two possibilities:

            (1) temporarily change them by right-clicking the CMD icon in the upper-left corner and changing Properties (http://commandwindows.com/configure.htm).

            (2) permanently change the properties of a command-line window by editing the Registry and then rebooting; just Google it and you'll get more replies than you can shake a stick at in a day.
            Regarding (1), try clicking on Defaults instead.
            Where's MagicSpeed?
            Quote from: 'matt'
            He's playing a game called IRL. Great graphics, *censored* gameplay.

            night-rider

              Topic Starter


              Beginner

              Re: batch file
              « Reply #10 on: May 23, 2010, 10:50:40 PM »
              OK thanks for your suggestions!