A
A.S.
I have this code here that I wrote with the Visual Basic 2005 Express
Edition Beta. However, I can't use the executable on other computers
because it was compiled to use the .NET Framework 2 Beta. Could
someone please compile this to use the .NET Framework 1.1? Heck, I
don't even know if it's possible. I'm a VB newbie.
Module Main
Sub Main(ByVal files() As String)
Try
Dim vector As Object = CreateObject("WIA.Vector")
For Each file As String In files
vector.Add(file)
Next
Dim dialog As Object = CreateObject("WIA.CommonDialog")
dialog.ShowPhotoPrintingWizard(vector)
Catch e As Exception
End Try
End Sub
End Module
Edition Beta. However, I can't use the executable on other computers
because it was compiled to use the .NET Framework 2 Beta. Could
someone please compile this to use the .NET Framework 1.1? Heck, I
don't even know if it's possible. I'm a VB newbie.
Module Main
Sub Main(ByVal files() As String)
Try
Dim vector As Object = CreateObject("WIA.Vector")
For Each file As String In files
vector.Add(file)
Next
Dim dialog As Object = CreateObject("WIA.CommonDialog")
dialog.ShowPhotoPrintingWizard(vector)
Catch e As Exception
End Try
End Sub
End Module