Hi All,

I have the following Code:

Public Sub SetAccessLevelNull()
Me(Me.tableGeneralPasswords.AccessLevelColumn) = System.Convert.DBNull
End Sub

Im getting a ErroR on this Saying "Convert is Not a Member of String"
Could somebody kindly point me in the right direct?

Many Thanks
NSC

Re: Convert is not a member of String by Cor

Cor
Thu Nov 24 07:34:52 CST 2005

NSC

The strongly typed dataset is to prevent that you use wrong types.

You tell that something has to be a string and than you start giving it a
kind of whatever but not important value that not is from the type of
string.

Cor



Re: Convert is not a member of String by NOT_SO_CLEVER

NOT_SO_CLEVER
Fri Nov 25 02:45:04 CST 2005

Hi Group,

Yes indeed I did have a coloum named System. Change it to SysytemProfile now
and it works great:)
Just on the same not: Is there any other Keywords which will cause this
problem?

Many Thanks for everyones Help
NSC

"Cor Ligthert [MVP]" <notmyfirstname@planet.nl> wrote in message
news:eMSp$vP8FHA.1140@tk2msftngp13.phx.gbl...
> NSC
>
> The strongly typed dataset is to prevent that you use wrong types.
>
> You tell that something has to be a string and than you start giving it a
> kind of whatever but not important value that not is from the type of
> string.
>
> Cor
>