Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Userform and screen resolution


Hi

I have a userform which is can be viewed perfectly on my machine
however on another users machine the text etc are all huge and they
cannot see the whole userform. Is there a quick way to resize the
windows/text etc?


--
funkymonkUK
------------------------------------------------------------------------
funkymonkUK's Profile: http://www.excelforum.com/member.php...o&userid=18135
View this thread: http://www.excelforum.com/showthread...hreadid=392475

  #2   Report Post  
Posted to microsoft.public.excel.programming
KR KR is offline
external usenet poster
 
Posts: 121
Default Userform and screen resolution

Not that I'm aware of, but I'll be watching for MVP replies in case I'm
wrong. AFAIK, if you wanted to resize everything you would have to do it all
in code, resizing and moving each item based on each target resolution.

My solution? I ended up setting my screen size to the lowest resolution I
was willing to support, built and tested my userforms at that resolution,
then switched my machine back for my own preferences- the end result being
that the userform is much less than full screen when run on my machine with
my normal settings invoked.

Best of luck,
Keith

"funkymonkUK"
wrote in message
...

Hi

I have a userform which is can be viewed perfectly on my machine
however on another users machine the text etc are all huge and they
cannot see the whole userform. Is there a quick way to resize the
windows/text etc?


--
funkymonkUK
------------------------------------------------------------------------
funkymonkUK's Profile:

http://www.excelforum.com/member.php...o&userid=18135
View this thread: http://www.excelforum.com/showthread...hreadid=392475



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default Userform and screen resolution

See if this works for you (courtesy of Ron de Bruin):

Private Sub UserForm_Initialize()

With Application

Me.Top = .Top

Me.Left = .Left

Me.Height = .Height

Me.Width = .Width

End With

End Sub


--
steveB

Remove "AYN" from email to respond
"KR" wrote in message
...
Not that I'm aware of, but I'll be watching for MVP replies in case I'm
wrong. AFAIK, if you wanted to resize everything you would have to do it
all
in code, resizing and moving each item based on each target resolution.

My solution? I ended up setting my screen size to the lowest resolution I
was willing to support, built and tested my userforms at that resolution,
then switched my machine back for my own preferences- the end result being
that the userform is much less than full screen when run on my machine
with
my normal settings invoked.

Best of luck,
Keith

"funkymonkUK"
wrote in message
...

Hi

I have a userform which is can be viewed perfectly on my machine
however on another users machine the text etc are all huge and they
cannot see the whole userform. Is there a quick way to resize the
windows/text etc?


--
funkymonkUK
------------------------------------------------------------------------
funkymonkUK's Profile:

http://www.excelforum.com/member.php...o&userid=18135
View this thread:
http://www.excelforum.com/showthread...hreadid=392475





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Userform and screen resolution


what is Me?


--
funkymonkUK
------------------------------------------------------------------------
funkymonkUK's Profile: http://www.excelforum.com/member.php...o&userid=18135
View this thread: http://www.excelforum.com/showthread...hreadid=392475

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Userform and screen resolution

It's the thing that owns the code.

In this case, since the code is under the userform, it's the userform.



funkymonkUK wrote:

what is Me?

--
funkymonkUK
------------------------------------------------------------------------
funkymonkUK's Profile: http://www.excelforum.com/member.php...o&userid=18135
View this thread: http://www.excelforum.com/showthread...hreadid=392475


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to let the userform autosize depending on the screen resolution Pierre via OfficeKB.com Excel Worksheet Functions 0 November 2nd 05 09:43 AM
Screen Resolution Ronbo Excel Programming 2 January 17th 05 08:45 PM
Screen Resolution Sheldon Excel Programming 1 November 2nd 04 05:52 PM
Screen resolution Arkimediz Excel Programming 3 April 1st 04 05:23 PM
Screen Area Resolution CJ[_4_] Excel Programming 3 December 5th 03 12:37 AM


All times are GMT +1. The time now is 08:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"