securityType

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

this line will not compile in my code class

Dim Secure As SecurityType = SecurityType.Insecure

throws an error:
Type 'SecurityType' is not defined

my imports are:

Imports System
Imports System.Configuration
Imports System.Web
Imports system.security

what am I missing ????
 
hi,

are you using .NET Framework 1.1 because it is available from that version.
And the namespace is System.Data.SqlServerCe in .NET CF.

rgds
joyjit
 
I'm using 1.1, but it doesn't recognize "System.Data.SqlServerCe"

error BC30466:
Namespace or type 'SqlServerCe' for the Imports 'System.Data.SqlServerCe'
cannot be found.

Imports System.Data.SqlServerCe
~~~~~~~~~~~~~~~~~~~~~~~
 
Back
Top