RE: GXOpenInput by Shaik
Shaik
Sun Apr 08 05:30:03 CDT 2007
Dear DevRon, (Developer Ron...! good name)
The following detail was replied for your prior question in windows group...
ay be you got it or not...
Replying same for your convinience for choice....
Declare these two API functions in any module in a vb.net project
'* ---------------------------------------------------
<DllImport("gx.dll", _
CharSet:=CharSet.Auto, _
EntryPoint:="?XOpenInput@@YAHXZ")> _
Public Sub GXOpenInput()
End Sub
'* ---------------------------------------------------
<DllImport("gx.dll", _
CharSet:=CharSet.Auto, _
EntryPoint:="?GXCloseInput@@YAHXZ")> _
Public Sub GXCloseInput()
End Sub
'* ---------------------------------------------------
Just call GXOpenInput() in the start-up of your application
ex:
Sub Main() Startup Routine
'* -----------------
Sub Main()
GXOpenInput()
End Sub
'* -----------------
or
'* -----------------
frm_Load(...) Handles MyBase.Load events
GXOpenInput()
End Sub
'* -----------------
Note: Make sure to call GXCloseInput during exiting your form/application
Thanks / Best Regards
Shaik Faheem Ahmed
skfaheem@gmail.com
'* ----------------------------------------------------------