Viewing 7 posts - 1 through 7 (of 7 total)
If your field name has spaces, you would use bracketing as well like FIRST NAME would be [FIRST NAME]
November 28, 2006 at 7:01 am
It might be outside the scope of this area, but I would like to see examples of SQL statements used in VB 2003 for SQL Mobile or CE. Anyone recommend...
November 21, 2006 at 8:25 am
mkeast - are you sure he should drop table orders????
November 8, 2006 at 8:05 am
Might take a look at VB Express 2005. It's free!
November 8, 2006 at 6:55 am
-- This would give you a total count with one record
SELECT
count(custno) as Ordercount
FROM
Customer c
INNER JOiN Orders o ON c.custno = o.custno
-- This would give you a count by Date,...
November 8, 2006 at 6:52 am
Private Sub LastName_AfterUpdate()
Dim myString As String
myString = UCase(Mid(Me.LastName, 1, 1)) & Mid(Me.LastName, 2, Len(Me.LastName))
Me.LastName = myString
End Sub
February 28, 2006 at 6:59 am
Not sure about Word, but if it were me and I had the data in Excel, I would import it into Access then link to the SQL table, create an...
November 11, 2005 at 7:23 am
Viewing 7 posts - 1 through 7 (of 7 total)