Ehaviv
Computer
- Jul 2, 2003
- 1,012
Hi
Compile throw this warning:
For this function:
Please can somone help to get rid from this compile warning.
Thank you.
Compile throw this warning:
Code:
warning BC42020: Variable declaration without an 'As' clause; type of Object assumed.
Public Function select_text_file(ByRef partFullPathName) As DialogResult
For this function:
Code:
Public Function select_text_file(ByRef partFullPathName) As DialogResult
Dim ofd As OpenFileDialog = new OpenFileDialog()
Dim result As DialogResult
ofd.Title = "Select assembly part"
ofd.AddExtension = true
ofd.DefaultExt = "prt"
ofd.Filter = "Files(*.txt;)|*.txt;"
ofd.FilterIndex = 1
' start browsing at current folder, uncomment for any other default directory
' ofd.InitialDirectory = GetEnvironmentVariable("UGII_BASE_DIR")
' ofd.InitialDirectory = GetEnvironmentVariable("UGII_BASE_DIR") + "\Moldwizard"
' ofd.InitialDirectory = "c:\mypath1\mypath2"
result = ofd.ShowDialog()
partFullPathName = ofd.filename
ofd.Dispose()
Return result
End Function
Please can somone help to get rid from this compile warning.
Thank you.