Jump to content

Recommended Posts

Posted

Is it possible to automatically resize fonts when controls are resized?

#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$Label1 = GUICtrlCreateLabel("TESTE 1", 176, 128, 80, 30, $SS_CENTERIMAGE + $SS_CENTER)
GUICtrlSetFont(-1, 12, 800, 0, "Arial Black")
GUICtrlSetBkColor(-1, 0XFF0000)
GUISetState(@SW_SHOW)

Sleep(1000)
GUICtrlSetData($Label1, "")
ControlMove($Form1, "", $Label1, 176, 128, 160, 60)
GUICtrlSetData($Label1, "TESTE 2")
Sleep(2000)
Exit

 

Posted

@ Melba23 thanks a lot for the help, problem solved!

  • Moderators
Posted

Belini,

My pleasure as always.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted (edited)

I wish it had been this easy in VB 6 without custom controls. I had to do all the computing based on the screen size

Edited by Earthshine

My resources are limited. You must ask the right questions

 

  • 6 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...