Browse button in VB form
Browse button in VB form
(OP)
Hi all,
Does any one knows how to create a Browse button in VB form.
I want a browse button in my VB form. In the macro I want to select a folder by using the browse button as we do in windows explorer.
Vinay
Does any one knows how to create a Browse button in VB form.
I want a browse button in my VB form. In the macro I want to select a folder by using the browse button as we do in windows explorer.
Vinay






RE: Browse button in VB form
<http://www.daniweb.com/forums/thread14061.html>
http://www.EsoxRepublic.com-SolidWorks API VB programming help
RE: Browse button in VB form
Do I need to get VB6 to do this?
RE: Browse button in VB form
RE: Browse button in VB form
I will try.
RE: Browse button in VB form
http://
Ken
RE: Browse button in VB form
Its giving an error of a dll not found.
This is the part of code where its is giving error
Private Declare Function GetCurrentVbaProject _
Lib "vba332.dll" Alias "EbGetExecutingProj" _
(hProject As Long) As Long
Private Declare Function GetFuncID _
Lib "vba332.dll" Alias "TipGetFunctionId" _
(ByVal hProject As Long, ByVal strFunctionName As String, _
ByRef strFunctionId As String) As Long
Private Declare Function GetAddr _
Lib "vba332.dll" Alias "TipGetLpfnOfFunctionId" _
(ByVal hProject As Long, ByVal strFunctionId As String, _
ByRef lpfn As Long) As Long
Which dll name I have to specify for solidworks VBA to work?
Vinay