इसके लिए मुझसे नफरत मत करो, क्योंकि इतने कम समय में मैं जो सबसे अच्छा कर सकता हूं वह है:
http://www.fileswap.com/dl/KusycS0QTC/
मूल रूप से यह एक एमडीआई पैरेंट फॉर्म और दो चाइल्ड फॉर्म वाला प्रोजेक्ट है। मेरे पास प्रत्येक पर एक डीजीवी है और मैं जानकारी को एक फॉर्म से दूसरे फॉर्म में स्थानांतरित करता हूं। आपको अपने सेटअप के लिए आवश्यक संपादन करने होंगे, लेकिन यह आपको एक विचार देने के लिए पर्याप्त होना चाहिए कि आप क्या चाहते हैं।
संपादित करें:
संभावित परिवर्तन:
Dim _Name As String = ""
Dim _Last As String = ""
For Each xRow In MasterForm.oTransferRows
_Name = xRow.Cells("GVName").Value.ToString()
_Last = xRow.Cells("GVLast").Value.ToString()
'क्या अगली पंक्ति सम्मिलित की जानी चाहिए?
Dim _sqlInsert As String = String.Format("Insert testing(Name, LastName) Values (@iName, @iLast)")
Using conn As New SqlClient.SqlConnection("Server = localhost; Username= root; Password =; Database = test")
Using cmd
With cmd
MsgBox("Connection Established")
.Connection = conn
.Parameters.Clear()
'Create Insert Query
.CommandText = _sqlInsert
.Parameters.Add(New SqlParameter("@iName", _Name))
.Parameters.Add(New SqlParameter("@iLast", _Last))
End With
Try
conn.Open()
Me.Validate()
cmd.ExecuteNonQuery()
Catch ex As Exception
MsgBox(ex.Message.ToString())
End Try
End Using
End Using
Next