Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
QuestionConverting word doc to xml Pin
Member 87628082-Apr-12 23:17
Member 87628082-Apr-12 23:17 
AnswerRe: Converting word doc to xml Pin
Richard MacCutchan2-Apr-12 23:50
mveRichard MacCutchan2-Apr-12 23:50 
AnswerRe: Converting word doc to xml Pin
Vipin_Arora3-Apr-12 0:32
Vipin_Arora3-Apr-12 0:32 
AnswerRe: Converting word doc to xml Pin
Member 87628084-Apr-12 23:43
Member 87628084-Apr-12 23:43 
QuestionDatabase connection pool thr application Pin
anishkannan2-Apr-12 18:16
anishkannan2-Apr-12 18:16 
AnswerRe: Database connection pool thr application Pin
Richard MacCutchan2-Apr-12 21:26
mveRichard MacCutchan2-Apr-12 21:26 
QuestionRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:04
professionalEddy Vluggen3-Apr-12 2:04 
AnswerRe: Database connection pool thr application Pin
Richard MacCutchan3-Apr-12 5:45
mveRichard MacCutchan3-Apr-12 5:45 
AnswerRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 1:54
professionalEddy Vluggen3-Apr-12 1:54 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:04
anishkannan3-Apr-12 2:04 
GeneralRe: Database connection pool thr application Pin
Pete O'Hanlon3-Apr-12 2:13
mvePete O'Hanlon3-Apr-12 2:13 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:30
anishkannan3-Apr-12 2:30 
AnswerRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:41
professionalEddy Vluggen3-Apr-12 2:41 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:45
anishkannan3-Apr-12 2:45 
GeneralRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:50
professionalEddy Vluggen3-Apr-12 2:50 
GeneralRe: Database connection pool thr application Pin
Pete O'Hanlon3-Apr-12 3:10
mvePete O'Hanlon3-Apr-12 3:10 
AnswerRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:39
professionalEddy Vluggen3-Apr-12 2:39 
QuestionRetrieve Value from scanner Pin
Reena Aleesya2-Apr-12 16:34
Reena Aleesya2-Apr-12 16:34 
Hi guys,
Currently, i've develop window based application using employee card to retrieve information and data once scan the card. The card id will merge with employee no and will display into page.
Below is my code:

VB
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
             If TextBox1.Text = True Then
           
           Dim CardID As String = TextBox1.Text
           Dim endID As String = CardID.Substring(5)
           con = New SqlConnection("Data Source=10.1.2.215;Initial Catalog=eExitPass;Persist Security Info=True;User ID=sa1;Password=sa1")
           con.Open()
           a = Val(TextBox1.Text)
           sql = "select D.CardID, A.EmpNo, convert(varchar,A.pplyDate,100) As ApplyDate, C.Status, " & _
                          "from " & _
                          "EmpDetails A left join Clock_Time D on A.EmpNo = D.EmpNo left join Status C on A. Status = C.StatusID where A.EmpNo='" & TextBox2.Text & "' "
          
           da.Fill(ds, "db1")
           MsgBox("Database is now open")

           con.Close()
           MsgBox("Database is now Closed")
       Else
           MsgBox("Incorrect Serial Number")
       End If
   End Sub



Thanks in advance
Ms Aleesya Shanngari
AnswerRe: Retrieve Value from scanner Pin
Abhinav S2-Apr-12 17:14
Abhinav S2-Apr-12 17:14 
AnswerRe: Retrieve Value from scanner Pin
Luc Pattyn2-Apr-12 17:34
sitebuilderLuc Pattyn2-Apr-12 17:34 
GeneralRe: Retrieve Value from scanner Pin
Abhinav S2-Apr-12 21:24
Abhinav S2-Apr-12 21:24 
AnswerRe: Retrieve Value from scanner Pin
Richard MacCutchan2-Apr-12 21:28
mveRichard MacCutchan2-Apr-12 21:28 
AnswerRe: Retrieve Value from scanner Pin
Richard Andrew x643-Apr-12 5:30
professionalRichard Andrew x643-Apr-12 5:30 
QuestionCrystal Report not displaying vertical line c# Pin
nhanlaptrinh2-Apr-12 15:59
nhanlaptrinh2-Apr-12 15:59 
AnswerRe: Crystal Report not displaying vertical line c# Pin
Vipin_Arora2-Apr-12 21:33
Vipin_Arora2-Apr-12 21:33 

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.