Started 4 days, 14 hours ago (2009-11-10 19:22:00)
by vb5prgrmr
Either Microsoft SQL Server or
Structured Query Language. (A whole lot of information missing here but since this is third hand information it is not surprising.)
Good Luck
Started 6 days, 5 hours ago (2009-11-09 04:28:00)
by Pkchaturvedi Pkchaturvedi is offline Newcomer
Dear friends
Pls give me solutions that how can we set
authentication mode(Windows authentication/Sql authentication) in crystal report 8.5 through vb 6.0 and database is
sql server 2008.
I designed my report with Windows authentication and now through vb code i want to connect report through Sql authentication(which required user name & password.)
is there any way ...
Started 4 days, 17 hours ago (2009-11-10 16:31:00)
by gibra
Quote:
Let's say "User A"
Selects records 1,2 & 3 and calls up their detailed view.
whilst "User A" is happy viewing them, "User B" comes along on his machine and deletes record 2.
If "User A" then tries to edit record 2, the program will crash.
You must to check if record exists 'each time' you try to open it.
How to is depend ...
Started 5 days ago (2009-11-10 09:21:00)
by jerome_gail26
You can save the path of the picture on a field in your database.
Goodluck,
Jerome and Gail
Started 4 days, 3 hours ago (2009-11-11 06:36:00)
by gibra
Started 1 week, 1 day ago (2009-11-06 10:37:00)
by loquin
where (and how) is the connection declared?
IMO, it's usually better to declare and instantiate the database objects explicitly , and not implicitly. The resulting
machine code is more efficient.
Code:
dim rs as adodb.recordset
'...
set rs = new ADODB.recordset
'...
rs.open strSQL, cn
'...
rs.close
set rs = nothing