tom | Fri, 23 May 2008 05:44:00 GMT |
gocushnot_this | Fri, 23 May 2008 05:45:00 GMT |
glen | Fri, 23 May 2008 05:47:00 GMT |
tom | Fri, 23 May 2008 05:47:00 GMT |
tom | Fri, 23 May 2008 05:48:00 GMT |
glen | Fri, 23 May 2008 05:49:00 GMT |
tom | Fri, 23 May 2008 05:51:00 GMT |
gocushnot_this | Fri, 23 May 2008 05:52:00 GMT |
tom | Fri, 23 May 2008 05:53:00 GMT |
Here's the scenario: I have two forms to display on the screen: Form1 and Form2. The Form2 is displayed after the user clicks a button on Form1 (which is already displayed). Form2 is automatically displayed in front of Form1. Both forms are loaded modeless (you can't load a second form...
Can anybody explain what's going on here ? Put two listboxes and two commandbuttons on a form and partially overlap the two listboxes. The code below should alternately bring to the front and then to the rear Listbox2. Private Sub CommandButton1_Click() ListBox2.ZOrder (0) End Sub Private S...
Argh! Form controls now *always* appear on top of shape/drawing objects. What's up with that? Prior versions of Excel allows you to send Form controls behind shape objects by right clicking on them and choosing "Order->Send to back". Ok, so you're probably asking "why would you ever...
Weird zoom/view issue. We open any existing Excel file on one computer. Sheet1 is at 75% zoom/view. Sheet2 is at 100% zoom/view. Sheet3 is at 200% zoom/view. Open Excel and start a new one, and it is fine. Saves normally as well. Is there some setting that determines or sets the zoom/view like t...
Dear All, I want to be able to open the zoombox on pressing shortcut (? a free one) for all cells in column R and S . Thanks³ Filip...
Hi,I have an excel workbook with multiple sheets. It is been used on differentcomputers and I would like my workbook to zoom always to right screen width.How can I do this?I have freezed panes on top of every sheet with a background picture thathas a width of 33,52 cm. I would like to have scree...
Hi, I have an excel workbook with multiple sheets. It is been used on different computers and I would like my workbook to zoom always to right screen width. How can I do this? I have freezed panes on top of every sheet with a background picture that has a width of 33,52 cm. I would like to have...
Whenever a user opens an Excel Spreadsheet the sheet automatically zooms to 400%. This happens when the user is connected to a projector or second monitor. I have updated the display driver and downloaded all MS Office Updates. Nothing else seems to be having issues except Excel and Word. The on...
I have a workbook with a chart and i have some VBA code to format the chart, etc., but there is an instruction that gives a Run Time error. The instruction is "ActiveWindow.Zoom=100". The error is: Run-Time Error '1004' "Unable to set the zoom property of the windo2 class." Can someone...
Please you know why setting the Window.Zoom property can have no effect on an activedocumenthost? Thnak you....
Please you know why setting the Window.Zoom property canhave no effect on an activedocumenthost?Thnak you....
When viewing a speadsheet at 50% or 75%, the number 1 does not line up properly in the column with the other numbers. I am using arial 12 font. When it is full screen, it lines up perfectly. Unfortunately, I need to see the whole speadsheet at one time, hence the 50% or 75%. Any help would be gr...
I've created a data entry Excel file at work, and have placed severa text boxes on the sheet to let users enter notes. My usual scree resolution is 800X600, so this is the resolution I created th application in, and am having no problems at this resolution. However some users have their scr...
My work sheet only prints on the first half of the page width? Setup and margins don't seem to work so I can print larger. My worksheet prints out 4" wide and 2" deep. I want it to print the full page' ANy help is appreciated...
I have the following code to "zoom" on a selection of one or more chosen cells.: Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Target.Cells.Count > 1 Then Exit Sub If Intersect(Target, Range ("B63:B65,G47:G48,G53,G64,G65,L58,L60:l65,M3")) Is Nothing Then ActiveWindow.Z...