Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Koaz
  • Content: Threads
  • Order by date
  1. Koaz

    Why the left(string,1) function could not be used??

    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 -----------------------------------------------------------...
  2. Koaz

    How easy was it, to program a DirectX with VB?

    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
  3. Koaz

    Closing the form if condition matches!

    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!
  4. Koaz

    Different in access 97 &amp; 2000. In &quot;OpenRecordset&quot;?

    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 =...
  5. Koaz

    inserting a row from form to Table?

    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 = &quot;C:\Documents and Settings\HoRiZoN\Desktop\Eleave_convert.mdb&quot; DataConn.ConnectionString =...
  6. Koaz

    connection between Table and forms!

    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(&quot;ADODB.Connection&quot;) Dim db db = &quot;C:\Documents and Settings\HoRiZoN\Desktop\Eleave_convert.mdb&quot...

Part and Inventory Search

Back
Top