I have a VBA Excel userform with a control for autodesk volo view called AvViewX1, and a ComboBox that is populated with file paths from a list in the spreadsheet that the AvViewX1 control should display. The code for that ComboBox is basically:
Private Sub ComboBox1_Change()
Dim VarPath As String
VarPath = ComboBox1.Value
AvViewX1.src = VarPath
End Sub
This code used to work with a different control when the company I work for used a viewer called CadWhizz. Why do I only get a blank screen now that I am using the AvViewX1 control for volo view?
We also have DWG TrueView 2010. Is there a control that will work with that viewer?
Private Sub ComboBox1_Change()
Dim VarPath As String
VarPath = ComboBox1.Value
AvViewX1.src = VarPath
End Sub
This code used to work with a different control when the company I work for used a viewer called CadWhizz. Why do I only get a blank screen now that I am using the AvViewX1 control for volo view?
We also have DWG TrueView 2010. Is there a control that will work with that viewer?