What would be the best way to study VB.NET?
I am very good in VB6 but have not studied VN.NET...
I know that VB6 is old technology right now ....
Any books, classes?
Thanks
Vlad
I am using the following statement to check the connection:
If CnDB.State <> 1 Then
'reconnect
End If
If the connection is open (CnDB.State = 1)
then I try to open the RecordSet based on this connection...
But sometimes I got the error 'Connection failure' even
CnDB.State still equals to...
Sometimes my users get the followign error:
error 94
Invalid use of null
But problem is there are just some users who got this error
I am using :
Public Function RNull(sIn As Variant) As String
If IsNull(sIn) Then
RNull = ""
Else
RNull = sIn
End If
End...
How to check if function returns true or false?
Can I use
this:
-----------------------------
function functionname1() {
if (condition1)
{return true;}
else
{return false;}
}
function functionname2() {
if (functionname1=true)
{
\\code...
}
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.