我现在有Runtime code但是不知道怎么发布程序,查询帮助只有vb的,不知道怎么翻译一下
Visual Basic
1) Add a declaration to the UnlockRuntime method where your program starts up and pass the 4 unlock codes as the parameters to the method. 2) If you are using the SmartScan Xpress Barcode control as a COM object in VB, you must do step #1 above AND declare the UnlockControl function as outlined below: a) Add a reference to the SmartScan Xpress Barcode 4 control via Project|References. b) Declare the UnlockControl function as follows: Private Declare Sub BC_UnlockControl Lib "PegasusImaging.ActiveX.SSXBC4.dll" Alias "UnlockControl" _ (ByVal pw1 As Long, ByVal pw2 As Long, ByVal pw3 As Long, ByVal pw4 As Long) c) Declare the SmartScan Xpress Barcode control object: Dim ss As PegasusImagingActiveXSSXBarcode4.SSXBarcode d) Call the unlock method: BC_UnlockControl 12345, 12345, 12345, 12345 Set ss = New PegasusImagingActiveXSSXBarcode4.SSXBarcode 3) If you are using the SmartScan Xpress Barcode ActiveX control, open your project with your development tool (Visual Basic or Delphi) and rebuild the EXE. The new registration information will be automatically incorporated in the new executable