Function BlnIsValidIC (ByVal strInput)
If Len(strInput) <> 9 Then
BlnIsValidIC = False
Else
If IsNumeric(Right(strInput, 1)) = True Or IsNumeric(Left(strInput, 1)) = True Or IsNumeric(Mid(strInput,2,7))
end if
End Function
-----------------------------------------------------------...
Hi guys,
I am in a project of doing an 3D anime programming,just want to check up if VB could be used to program a DirectX anime. Intend to use VB.Net 2003 to do it.
Completed work, is use in a local host pc, and it should be able to upload from a server for any update information.
Rgds,
Koaz
Hi all,
I have a question here. How could close the form when condition is true. For example, if the condition require appear to be true and done, the form will close.
I only know that, in visual Basic is 'End'. But it don't work in Ms Access.
Thanz n i do appreciate any help from the folk!
Hi all,
I had try writng the following statement in two access version, but it only worked in access 97.
Private Sub command0_click()
Dim frm As Form
Set frm = [Forms]![form1]
Dim dbs1 As Database
Dim rst1 As Recordset
Dim mrst As Recordset
Dim SQL As String
Set dbs1 = CurrentDb()
*Set rst1 =...
Hi all,
I know that inserting the data to table, had to use sql statement, but I am not sure how do i execute them? After writing all this.
Sub DB_Connect()
Dim db
Dim sql As String
db = "C:\Documents and Settings\HoRiZoN\Desktop\Eleave_convert.mdb"
DataConn.ConnectionString =...
How could i do a connection between the form and table, using DSN-less?
I had try something like this:
Sub DB_Connect()
Dim DataConn
Set DataConn = server.CreateObject("ADODB.Connection")
Dim db
db = "C:\Documents and Settings\HoRiZoN\Desktop\Eleave_convert.mdb"...
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.