Desktop version

Main > Forum > Applications > 1C:AccountingSuite > Compact Scaling Mode

Forum

Search UsersRules
Compact Scaling Mode
#1
Active user
Points:: 0
Joined:: Nov 11, 2013

It is any way to change all the documents forms scaling mode to compact together not one by one...? (if will be a option in next version to change the scaling mode of forms...from general settings will be good) because by default scaling is in auto mode, on the laptop with normal resolution the page looks to full...

Profile
#2
Active user
Points:: 23
Joined:: Jul 29, 2011

Dan,

We are looking for such an option in 1C:Enterprise, and if it's available we'll let you know.

Best,

Konstantin
AccountingSuite

Profile
#3
Active user
Points:: 0
Joined:: Nov 11, 2013

Thanks Konstantin, will be good.

Profile
#4
Active user
Points:: 0
Joined:: Nov 19, 2012

Dan Tomsa,

Paste this code in a session module:

Code
   If RequiredParameters = Undefined Then
      
      SetPrivilegedMode(True);
      
      User = InfoBaseUsers.CurrentUser();
      
      If Not User = Undefined Then
         
         Options = SystemSettingsStorage.Load("Common/ClientSettings", "",, User.Name);
         
         If Not TypeOf(Options) = Type("ClientSettings") Then
            Options = New ClientSettings;
         EndIf;
         
         Options.ClientApplicationFormScaleVariant = ClientApplicationFormScaleVariant.Compact;
         
         SystemSettingsStorage.Save("Common/ClientSettings", "", Options,, User.Name);
         
      EndIf;
      
   EndIf;


It will make all forms of infobase to compact mode.

But - you should use 1C version >= 8.3.4

Profile
#5
Active user
Points:: 0
Joined:: Nov 11, 2013

Thank you Aleksey, it worked...you save me a lot of time...

Profile
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)



© 1C LLC. All rights reserved
1C Company respects the privacy of our customers and visitors
to our Web-site.