RichardRanney
New Member
- Joined
- Nov 15, 2019
- Messages
- 4
On this sheet, the only things that are actually there are in cells A1, A2 and A4. Everything else you can see is on some other 'veryhidden' sheet in this workbook. I'm using Office 365.
1. When I open this spreadsheet, I can type all over this sheet and hit enter and nothing happens.
2. If I go to any of the hidden sheets and click on any of the buttons, running a macro, and then come back to this sheet and type anything and hit enter, all these images show up. I typed a "1" in cell A4 and pressed enter.
2.b. If I scroll down and scroll back up, the words and color formats disappear, but the buttons remain. (Obviously, I can't click on the buttons; they're not really there.)
2.c. If I tab to a different sheet and tab back, the buttons also disappear.
2.d. If I try to type anything again, the images (not the same ones every time) reappear when I press enter.
3. If I remove the module, it doesn't happen.
4. These are very simple macros. I didn't use the macro recorder; I just typed them from scratch. They are basically just simple navigation tools for drilling around. I mean REALLY simple.
Sub MainDetail01()
Range("Submain!a1").Value = 1
SubMain.Visible = xlSheetVisible
SubMain.Select
Main.Visible = xlSheetVeryHidden
End Sub
5. Someone in IT told me this was a Graphics issue called Artifacting.
6. I have read several sites about this and can't solve the problem. (Disabling hardware graphics acceleration, not using ActiveX controls, etc.)
7. I have e-mailed the workbook to someone else and it happened on his machine too.
I am 3 weeks into a new job and VBA has been my friend for 20+ years. I don't know what's going on with this and my new coworkers are convinced that VBA is full of bugs and want nothing to do with this.
I am presently using Inserted shapes with hyperlinks to get around this problem, but that's not going to cut it in the long run.
Any help would be greatly appreciated.
1. When I open this spreadsheet, I can type all over this sheet and hit enter and nothing happens.
2. If I go to any of the hidden sheets and click on any of the buttons, running a macro, and then come back to this sheet and type anything and hit enter, all these images show up. I typed a "1" in cell A4 and pressed enter.
2.b. If I scroll down and scroll back up, the words and color formats disappear, but the buttons remain. (Obviously, I can't click on the buttons; they're not really there.)
2.c. If I tab to a different sheet and tab back, the buttons also disappear.
2.d. If I try to type anything again, the images (not the same ones every time) reappear when I press enter.
3. If I remove the module, it doesn't happen.
4. These are very simple macros. I didn't use the macro recorder; I just typed them from scratch. They are basically just simple navigation tools for drilling around. I mean REALLY simple.
Sub MainDetail01()
Range("Submain!a1").Value = 1
SubMain.Visible = xlSheetVisible
SubMain.Select
Main.Visible = xlSheetVeryHidden
End Sub
5. Someone in IT told me this was a Graphics issue called Artifacting.
6. I have read several sites about this and can't solve the problem. (Disabling hardware graphics acceleration, not using ActiveX controls, etc.)
7. I have e-mailed the workbook to someone else and it happened on his machine too.
I am 3 weeks into a new job and VBA has been my friend for 20+ years. I don't know what's going on with this and my new coworkers are convinced that VBA is full of bugs and want nothing to do with this.
I am presently using Inserted shapes with hyperlinks to get around this problem, but that's not going to cut it in the long run.
Any help would be greatly appreciated.