Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~602 People Reached

4 Posted Topics

Member Avatar for abrars

Here is my code [code] Dim i As Integer Dim arrList As ArrayList If Session("Cart") Is Nothing Then arrList = New ArrayList() Else arrList = CType(Session("Cart"), ArrayList) Session("cart") = arrList Label1.Text = arrList.Count End If Dim s = arrList.Count For i = 0 To s - 1 Dim dvdid As …

Member Avatar for serkan sendur
0
66
Member Avatar for abrars

the code seems to be fine dont know why its not working. when i execute the same sql directly in database it works fine. the error is get is oledbexception was unhandled syntax error in from clause. please help me thanks is advance. Private Sub Button2_Click(ByVal sender As System.Object, ByVal …

Member Avatar for abrars
0
157
Member Avatar for kn2790

Public Class login Public userName As String Public password As String Public Sub loginCheck(ByVal username As String, ByVal password As String) Dim connection As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\abrar\My Documents\Database2.mdb") Dim sql = "SELECT Username,Password FROM Customer WHERE Username = '" & Trim(username) & "' AND Password = '" & …

Member Avatar for Teme64
0
293
Member Avatar for abrars

Hi Thanks in advance. For the past one day I am struggling with this problem. I want to display values from database in data grid I am sucessful in that.and I added a column to the table using the columns property of the datagrid to show the check box column. …

Member Avatar for abrars
0
86

The End.