تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
حل مشكلة هذا الكود
#2
كود :
   Public Sub InsertNewRowIn_info(Lblid As Integer, Txtnom As String, Txttel As String, Txtwhats As String, Txtemail As String, Txtnotes As String)
       Dim CmdInsert As New OleDb.OleDbCommand
       With CmdInsert
           .Connection = Con
           .CommandType = CommandType.Text
           .CommandText = "Insert Into info (id , nom , tel , whats , email , notes)values( @id ,  @nom ,  @tel ,  @whats ,  @email ,  @notes)"
           .Parameters.Clear()
           .Parameters.AddWithValue("@id", OleDbType.Integer).Value = Lblid
           .Parameters.AddWithValue("@nom", OleDbType.VarChar).Value = Txtnom
           .Parameters.AddWithValue("@tel", OleDbType.VarChar).Value = Txttel
           .Parameters.AddWithValue("@whats", OleDbType.VarChar).Value = Txtwhats
           .Parameters.AddWithValue("@email", OleDbType.VarChar).Value = Txtemail
           .Parameters.AddWithValue("@notes", OleDbType.VarChar).Value = Txtnotes
       End With
       If con.State = ConnectionState.Closed Then con.Open()
       CmdInsert.ExecuteNonQuery()
       MsgBox("تم إضافة السجل بنجاح", MsgBoxStyle.Information, "حفظ")
       CmdInsert = Nothing
   End Sub

كود :
   Public Sub InsertNewRowIn_info(Lblid As Integer, Txtnom As String, Txttel As String, Txtwhats As String, Txtemail As String, Txtnotes As String)
       Dim CmdInsert As New OleDb.OleDbCommand
       With CmdInsert
           .Connection = con
           .CommandType = CommandType.Text
           .CommandText = "INSERT INTO info (id,nom,tel,whats,email,notes)VALUES(" & Lblid & ",'" & Txtnom & "','" & Txttel & "','" & Txtwhats & "','" & Txtemail & "','" & Txtnotes & "')"
       End With
       If con.State = ConnectionState.Closed Then con.Open()
       CmdInsert.ExecuteNonQuery()
       MsgBox("تم إضافة السجل بنجاح", MsgBoxStyle.Information, "حفظ")
       CmdInsert = Nothing
   End Sub
الرد }}}
تم الشكر بواسطة: imam_boune , elgokr


الردود في هذا الموضوع
حل مشكلة هذا الكود - بواسطة imam_boune - 23-11-18, 12:29 PM
RE: حل مشكلة هذا الكود - بواسطة asemshahen5 - 23-11-18, 01:03 PM
RE: حل مشكلة هذا الكود - بواسطة imam_boune - 23-11-18, 02:13 PM


التنقل السريع :


يقوم بقرائة الموضوع: