Advertisement
Guest User

VB Example

a guest
Jul 9th, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.33 KB | None | 0 0
  1. Public Class Form1
  2.     Dim s1Lib As Nel_S1Library.Nel_S1Library
  3.     Dim s1 As IntPtr
  4.  
  5.     Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  6.         s1Lib = New Nel_S1Library.Nel_S1Library
  7.         Try
  8.             s1 = s1Lib.GetS1()
  9.         Catch ex As Exception
  10.             MessageBox.Show("Error: " & ex.Message)
  11.         End Try
  12.     End Sub
  13. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement