bar below page tabs problem

IanJG

New Member
Joined
Jul 17, 2014
Messages
18
I have a problem on a clients computer that runs a complete excel spreadsheet with significant VBA coding.
occasionally a bar (large white space ) appears at the bottom of the window below the buttons , ready across to 100%.
when this happens functionality of the workbook stops. it can be resolved when it occurs by minimizing the window and expanding it again.
It only happens on clients machine, not mine when i am coding improvements etc.
Any ideas what might be causing it and what a fix might be.
does happen all the time but might happen for a week twice a day then stop form a month.
HELP, thanks
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Have you managed to narrow down in the code where this happens
 
Upvote 0
Have you managed to narrow down in the code where this happens
i don't think it is in the vba code because the sheets get used numerous times every day, and this happens only sometimes and only on clients machine is it was in the code it should happen on my computer as well.
 
Upvote 0
An image can be found at
view
https://drive.google.com/file/d/0B_GH7IWqZ770RHFnVzJ6OWhIVWs/view?usp=sharing
view
 
Upvote 0
do you run at 100% and they at 190% views ?. Seen some stage effects when different zooms are used, not always expected
 
Upvote 0
The issue appears to happen after printing from the print preview generated by this code, but only on clients computer.

image from todays testing is at https://drive.google.com/open?id=0B_GH7IWqZ770cVNHSXlqbkh4VEU

This code has been in place for months with no problem, that is why i don't think it is the code i think it is some sort of bug or incompatibility issue

Code:
[FONT=Calibri]Private SubCommandButton1_Click()[/FONT]
[FONT=Calibri] [/FONT]
[FONT=Calibri]Call printers[/FONT]
[FONT=Calibri]ThisWorkbook.Sheets("DataSheet").Range("DATASHEETTYPE") = "WORKSHEET"[/FONT]
[FONT=Calibri]ThisWorkbook.Sheets("DataSheet").Range("datasheetindex") = ""[/FONT]
[FONT=Calibri]DATALOGGINGFORM.Hide[/FONT]
[FONT=Calibri]ActiveWorkbook.Save[/FONT]
[FONT=Calibri]ActiveWorkbook.Sheets("DataSheet").Activate[/FONT]
[FONT=Calibri]Application.ActivePrinter= whichprinter[/FONT]
[FONT=Calibri]ActiveSheet.PrintOut_[/FONT]
[FONT=Calibri]From:=1, _[/FONT]
[FONT=Calibri]To:=1, _[/FONT]
[FONT=Calibri]Copies:=1, _[/FONT]
[FONT=Calibri][B]Preview:=True, _[/B][/FONT]
[FONT=Calibri]ActivePrinter:="",_[/FONT]
[FONT=Calibri]PrintToFile:=False,_[/FONT]
[FONT=Calibri]Collate:=True, _[/FONT]
[FONT=Calibri]PrToFileName:="",_[/FONT]
[FONT=Calibri]IgnorePrintAreas:=False[/FONT]
[FONT=Calibri]ThisWorkbook.Sheets("DataSheet").Range("DATASHEETTYPE") = ""[/FONT]
[FONT=Calibri]ThisWorkbook.Sheets("DataSheet").Range("datasheetindex") = ""[/FONT]
[FONT=Calibri]DATALOGGINGFORM.Show[/FONT]
[FONT=Calibri]End Sub[/FONT]
 
Upvote 0
PrintPreview sometimes causes hiccups I recall, and I can't see why it needs to be used in the print routine
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top