Tech Tip - Turn off Rendered Views

How many times have users come to you complaining they wait ages for a file to load only to find they have every model attached with rendering turned on. Drives me nuts as users just won't turn them off to speed up model loading. 

Well, if they won't turn them off then we can. Another great addition to the autorun vb are a few lines that switch views back to wireframe:

CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 1"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 2"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 3"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 4"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 5"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 6"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 7"
CadInputQueue.SendCommand "CHANGE VIEW WIREFRAME 8"

Job done.

More soon.