Click here to Skip to main content
15,880,543 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: USING FSWATCHER TO MONITOR FILES COPIED TO ALL EXTERNAL DRIVES Pin
Dave Kreskowiak11-Jul-18 5:14
mveDave Kreskowiak11-Jul-18 5:14 
AnswerRe: USING FSWATCHER TO MONITOR FILES COPIED TO ALL EXTERNAL DRIVES Pin
mo149211-Jul-18 5:55
mo149211-Jul-18 5:55 
GeneralRe: USING FSWATCHER TO MONITOR FILES COPIED TO ALL EXTERNAL DRIVES Pin
Eddy Vluggen13-Jul-18 0:51
professionalEddy Vluggen13-Jul-18 0:51 
QuestionVisual Basic Codes 6.0 Pin
Asheeledio5-Jul-18 23:32
Asheeledio5-Jul-18 23:32 
AnswerRe: Visual Basic Codes 6.0 Pin
Richard MacCutchan5-Jul-18 23:36
mveRichard MacCutchan5-Jul-18 23:36 
AnswerRe: Visual Basic Codes 6.0 Pin
Chris Quinn5-Jul-18 23:41
Chris Quinn5-Jul-18 23:41 
AnswerRe: Visual Basic Codes 6.0 Pin
Dave Kreskowiak6-Jul-18 13:48
mveDave Kreskowiak6-Jul-18 13:48 
Questioncan't connect to finger print scanning device from windows server 2003 Pin
Meax5-Jul-18 0:36
Meax5-Jul-18 0:36 
i am using a windows application to connect to a finger print scanning device.

at the moment i can connect to machine and download all the logs. (using this DLL Interop.zkemkeeper.dll)

from my PC, windows 7 32bit it is working but when i installed the application on windows server 2003
32bit i am not able to connect to reader.

i installed visual studio 2010 on server and tried to build the Application on the server to make sure no reference were missing.

but still i can not connect to the reader. 

my question is why it connects and can even downloads all the logs from my pc but it doesnt work on server (windows server 2003 32bit)

reader IP 192.168.0.1 port: 4370.

Public axCZKEM1 As New zkemkeeper.CZKEM

code to connect to reader:
private sub ConnectToReader()
 If txtIP.Text.Trim() = "" Or txtPort.Text.Trim() = "" Then
            MsgBox("IP and Port cannot be null", MsgBoxStyle.Exclamation, "Error")
            Return
        End If
        Dim idwErrorCode As Integer
        Cursor = Cursors.WaitCursor
        If btnConnect.Text = "Disconnect" Then
            AxCZKEM1.Disconnect()
            bIsConnected = False
            btnConnect.Text = "Connect"
            lblState.Text = "Current State:Disconnected"
            Cursor = Cursors.Default
            Return
        End If

        bIsConnected = AxCZKEM1.Connect_Net(txtIP.Text.Trim(), Convert.ToInt32(txtPort.Text.Trim()))
        If bIsConnected = True Then
            btnConnect.Text = "Disconnect"
            btnConnect.Refresh()
            lblState.Text = "Current State:Connected"
            iMachineNumber = 1
            axCZKEM1.RegEvent(iMachineNumber, 65535)
        Else
            AxCZKEM1.GetLastError(idwErrorCode)
            MsgBox("Unable to connect the device,ErrorCode=" & idwErrorCode, MsgBoxStyle.Exclamation, "Error")
        End If
        Cursor = Cursors.Default
End Sub

AnswerRe: can't connect to finger print scanning device from windows server 2003 Pin
Richard Deeming5-Jul-18 1:38
mveRichard Deeming5-Jul-18 1:38 
GeneralRe: can't connect to finger print scanning device from windows server 2003 Pin
Meax5-Jul-18 8:06
Meax5-Jul-18 8:06 
Questionhow to highlight dates of Month Calendar from database windows form Pin
Meax2-Jul-18 20:01
Meax2-Jul-18 20:01 
AnswerRe: how to highlight dates of Month Calendar from database windows form Pin
Richard MacCutchan2-Jul-18 21:08
mveRichard MacCutchan2-Jul-18 21:08 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax2-Jul-18 22:19
Meax2-Jul-18 22:19 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Richard MacCutchan2-Jul-18 22:20
mveRichard MacCutchan2-Jul-18 22:20 
AnswerRe: how to highlight dates of Month Calendar from database windows form Pin
Richard Deeming3-Jul-18 0:48
mveRichard Deeming3-Jul-18 0:48 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax5-Jul-18 0:25
Meax5-Jul-18 0:25 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Mycroft Holmes5-Jul-18 13:00
professionalMycroft Holmes5-Jul-18 13:00 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax15-Jul-18 18:18
Meax15-Jul-18 18:18 
Questionhow to create a VB ActiveX interface Pin
Sakthiu1-Jul-18 23:50
Sakthiu1-Jul-18 23:50 
AnswerRe: how to create a VB ActiveX interface Pin
Richard MacCutchan2-Jul-18 0:27
mveRichard MacCutchan2-Jul-18 0:27 
Questionvb.net parsing of string data Pin
dcof26-Jun-18 6:23
dcof26-Jun-18 6:23 
AnswerRe: vb.net parsing of string data Pin
Richard MacCutchan26-Jun-18 6:30
mveRichard MacCutchan26-Jun-18 6:30 
GeneralRe: vb.net parsing of string data Pin
dcof26-Jun-18 7:41
dcof26-Jun-18 7:41 
GeneralRe: vb.net parsing of string data Pin
Richard MacCutchan26-Jun-18 8:40
mveRichard MacCutchan26-Jun-18 8:40 
AnswerRe: vb.net parsing of string data Pin
Richard Deeming26-Jun-18 12:14
mveRichard Deeming26-Jun-18 12:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.