Compact Scaling Mode

Accounting and inventory IFRS/GAAP suite for SMB. General questions. See 1C:AccountingSuite details

#1
People who like this:0Yes/0No
Active user
Rating: 2
Joined: Nov 11, 2013
Company: AVA HUB LTD

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...

 
#2
People who like this:0Yes/0No
Active user
Rating: 4
Joined: Jul 29, 2011
Company: 1C Company

Dan,

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

Best,

Konstantin
AccountingSuite

 
#3
People who like this:0Yes/0No
Active user
Rating: 2
Joined: Nov 11, 2013
Company: AVA HUB LTD

Thanks Konstantin, will be good.

 
#4
People who like this:0Yes/0No
Active user
Rating: 4
Joined: Nov 19, 2012
Company:

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

 
#5
People who like this:0Yes/0No
Active user
Rating: 2
Joined: Nov 11, 2013
Company: AVA HUB LTD

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

Edited: Dan Tomsa - Mar 11, 2014 05:12 PM
 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.