imports statement

  • Thread starter Thread starter dennist
  • Start date Start date
D

dennist

Thank you Steve, but where within the form would I place
them? What if I'm not putting them in a module or a
class, but want to create connections and commands in a
form?

dennist
 
What Steve is saying still holds for forms. Remember dennist --- the form
code is a class too.

so for example, i have ....

Imports System.Data.Odbc
Imports System.Data.OleDB

Public Class Form1

<functions/subs code>

End Class

Bob J.
 
Back
Top