Click here to Skip to main content
15,885,216 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Telerik radscheduler day view problem Pin
Eddy Vluggen18-Jun-17 2:37
professionalEddy Vluggen18-Jun-17 2:37 
GeneralRe: Telerik radscheduler day view problem Pin
Member 1326557818-Jun-17 2:51
Member 1326557818-Jun-17 2:51 
GeneralRe: Telerik radscheduler day view problem Pin
Eddy Vluggen18-Jun-17 3:03
professionalEddy Vluggen18-Jun-17 3:03 
GeneralRe: Telerik radscheduler day view problem Pin
Member 1326557818-Jun-17 3:07
Member 1326557818-Jun-17 3:07 
GeneralRe: Telerik radscheduler day view problem Pin
Eddy Vluggen18-Jun-17 3:14
professionalEddy Vluggen18-Jun-17 3:14 
GeneralRe: Telerik radscheduler day view problem Pin
Dave Kreskowiak18-Jun-17 3:45
mveDave Kreskowiak18-Jun-17 3:45 
QuestionRe: Telerik radscheduler day view problem Pin
Eddy Vluggen18-Jun-17 10:39
professionalEddy Vluggen18-Jun-17 10:39 
QuestionGet the logs from fingerprint device Pin
Meax6-Jun-17 22:39
Meax6-Jun-17 22:39 
hi,

i am trying to download data from fingerprint device.

below is the code provided by them in their demo application(vb).

with the code provided by them i can connect to device successfully
but i am not getting correct data.
VB
<pre>Private Sub btnGetGeneralLogData_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetGeneralLogData.Click
        If bIsConnected = False Then
            MsgBox("Please connect the device first", MsgBoxStyle.Exclamation, "Error")
            Return
        End If

        Dim idwTMachineNumber As Integer
        Dim idwEnrollNumber As Integer
        Dim idwEMachineNumber As Integer
        Dim idwVerifyMode As Integer
        Dim idwInOutMode As Integer
        Dim idwYear As Integer
        Dim idwMonth As Integer
        Dim idwDay As Integer
        Dim idwHour As Integer
        Dim idwMinute As Integer

        Dim idwErrorCode As Integer
        Dim iGLCount = 0
        Dim lvItem As New ListViewItem("Items", 0)

        Cursor = Cursors.WaitCursor
        lvLogs.Items.Clear()
        AxCZKEM1.EnableDevice(iMachineNumber, False) 'disable the device
        If AxCZKEM1.ReadGeneralLogData(iMachineNumber) Then 'read all the attendance records to the memory
            'get records from the memory
            While AxCZKEM1.GetGeneralLogData(iMachineNumber, idwTMachineNumber, idwEnrollNumber, idwEMachineNumber, idwVerifyMode, idwInOutMode, idwYear, idwMonth, idwDay, idwHour, idwMinute)
                iGLCount += 1
                lvItem = lvLogs.Items.Add(iGLCount.ToString())
                lvItem.SubItems.Add(idwEnrollNumber.ToString())
                lvItem.SubItems.Add(idwVerifyMode.ToString())
                lvItem.SubItems.Add(idwInOutMode.ToString())
                lvItem.SubItems.Add(idwYear.ToString() & "-" + idwMonth.ToString() & "-" & idwDay.ToString() & " " & idwHour.ToString() & ":" & idwMinute.ToString())
            End While
        Else
            Cursor = Cursors.Default
            AxCZKEM1.GetLastError(idwErrorCode)
            If idwErrorCode <> 0 Then
                MsgBox("Reading data from terminal failed,ErrorCode: " & idwErrorCode, MsgBoxStyle.Exclamation, "Error")
            Else
                MsgBox("No data from terminal returns!", MsgBoxStyle.Exclamation, "Error")
            End If
        End If

        AxCZKEM1.EnableDevice(iMachineNumber, True) 'enable the device
        Cursor = Cursors.Default
    End Sub


SuggestionRe: Get the logs from fingerprint device Pin
Richard MacCutchan6-Jun-17 22:53
mveRichard MacCutchan6-Jun-17 22:53 
AnswerRe: Get the logs from fingerprint device Pin
Patrice T9-Jun-17 10:59
mvePatrice T9-Jun-17 10:59 
AnswerRe: Get the logs from fingerprint device Pin
jschell15-Jun-17 9:36
jschell15-Jun-17 9:36 
Questionmvc identity, sending email confirmation with extra parameter Pin
orsini4430-May-17 10:10
orsini4430-May-17 10:10 
AnswerRe: mvc identity, sending email confirmation with extra parameter Pin
Peter_in_278030-May-17 13:17
professionalPeter_in_278030-May-17 13:17 
QuestionHi guys can you help me to deal with this error pls! Its an "End os statemente expect" Pls help! Pin
nseiV2.025-May-17 5:16
nseiV2.025-May-17 5:16 
AnswerRe: Hi guys can you help me to deal with this error pls! Its an "End os statemente expect" Pls help! Pin
NotPolitcallyCorrect25-May-17 5:23
NotPolitcallyCorrect25-May-17 5:23 
QuestionCannot get data to display in textbox from the database vb.net Pin
Member 1257814223-May-17 9:30
Member 1257814223-May-17 9:30 
AnswerRe: Cannot get data to display in textbox from the database vb.net Pin
NotPolitcallyCorrect23-May-17 9:50
NotPolitcallyCorrect23-May-17 9:50 
GeneralRe: Cannot get data to display in textbox from the database vb.net Pin
Member 1257814224-May-17 8:22
Member 1257814224-May-17 8:22 
GeneralRe: Cannot get data to display in textbox from the database vb.net Pin
NotPolitcallyCorrect24-May-17 9:24
NotPolitcallyCorrect24-May-17 9:24 
GeneralRe: Cannot get data to display in textbox from the database vb.net Pin
Member 1257814224-May-17 11:43
Member 1257814224-May-17 11:43 
GeneralRe: Cannot get data to display in textbox from the database vb.net Pin
Richard Deeming25-May-17 1:01
mveRichard Deeming25-May-17 1:01 
GeneralRe: Cannot get data to display in textbox from the database vb.net Pin
NotPolitcallyCorrect25-May-17 2:39
NotPolitcallyCorrect25-May-17 2:39 
SuggestionRe arranging the display on the list view Pin
Member 1257814219-May-17 9:03
Member 1257814219-May-17 9:03 
GeneralRe: Re arranging the display on the list view Pin
Richard MacCutchan19-May-17 21:30
mveRichard MacCutchan19-May-17 21:30 
QuestionConnecting to remote server <IP> failed with the following error message. Pin
Y_Kaushik19-May-17 2:54
Y_Kaushik19-May-17 2:54 

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.