473,395 Members | 1,456 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

VB.NET & Access Database

Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot the
answer.

When i run my prog i get a error saying 'Conver' is not a member of 'String'
on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.

Thanks for your Help

Regards
Si
Nov 20 '05 #1
13 1125
Cor
Hi Si

=DBnull.value were a lot of answers before christmas I thought

Cor

When i run my prog i get a error saying 'Conver' is not a member of 'String' on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

Nov 20 '05 #2
Hi,

Use nothing instead.

Ken
---------------
"Newbie!" <s_************@yahoo.co.uk> wrote in message
news:L-********************@karoo.co.uk...
Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot the
answer.

When i run my prog i get a error saying 'Conver' is not a member of
'String'
on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.

Thanks for your Help

Regards
Si

Nov 20 '05 #3
I carn`t seem to find them, my News reader seems to have deleted them:(

Ta
Si

"Newbie!" <s_************@yahoo.co.uk> wrote in message
news:L-********************@karoo.co.uk...
Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot the
answer.

When i run my prog i get a error saying 'Conver' is not a member of 'String' on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.

Thanks for your Help

Regards
Si

Nov 20 '05 #4
Hi ken, where do i use nothing?

Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.Nothing ????

Ta
Si
"Newbie!" <s_************@yahoo.co.uk> wrote in message
news:L-********************@karoo.co.uk...
Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot the
answer.

When i run my prog i get a error saying 'Conver' is not a member of 'String' on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.

Thanks for your Help

Regards
Si

Nov 20 '05 #5
Hi,

I am not sure what Me(Me.tablePasswordList.CreatedOnColumn) is
suppose to do. But if that is a string this will work.

Me(Me.tablePasswordList.CreatedOnColumn) = Nothing

Ken
-------------------

"Newbie!" <s_************@yahoo.co.uk> wrote in message
news:T4********************@karoo.co.uk...
Hi ken, where do i use nothing?

Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.Nothing ????

Ta
Si
"Newbie!" <s_************@yahoo.co.uk> wrote in message
news:L-********************@karoo.co.uk...
Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot the
answer.

When i run my prog i get a error saying 'Conver' is not a member of

'String'
on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.

Thanks for your Help

Regards
Si


Nov 20 '05 #6
"Newbie!" <s_************@yahoo.co.uk> schrieb
Hi Group, hope you all had a great Xmas/Holiday?

Just a quick one, i know i`ve asked this before but totally forgot
the answer.

When i run my prog i get a error saying 'Conver' is not a member of
'String' on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) =
System.Convert.DBNull
End Sub

This code was generatedm, When I generated my Dataset.


That's really a bad thing! (not you but the problem *g*)

You've got a table with a field named "System". The field is added as a
property to your typed Dataset. Consequently, the code
"System.Convert.DBnull" is not resolved to System.Convert.DBNull within
mscorlib.dll. Instead the name "System" is resolved to the property in the
class. As the property is of type String, System.Convert.DBNull is actually
resolved to System.String.Convert.DBnull - which does not exist.

I don't think there is a way around... but let's wait for more answers.
BTW, I've always wanted a "root" character to be able to write something
like

Me(Me.tablePasswordList.CreatedOnColumn) = \System.Convert.DBNull

(note the backslash)
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #7
Cor
Hi Newbie,

Seeing all those answers,
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull


What is this
me(me.tablepasswordlist.createdOnColumn)

I remember me from last time that Herfried said that that me(me) was useless

If it is a datatable I think there has to be a rownumber,

It can be something as

tablepaswordList.rows(0).item"CreatedOnColumn"=sys tem.dbnull.value

I hope this helps a little bit?

Cor

Nov 20 '05 #8
* "Armin Zingler" <az*******@freenet.de> scripsit:
BTW, I've always wanted a "root" character to be able to write something
like

Me(Me.tablePasswordList.CreatedOnColumn) = \System.Convert.DBNull

(note the backslash)


LOL -- Nice idea.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #9
* "Newbie!" <s_************@yahoo.co.uk> scripsit:
When i run my prog i get a error saying 'Conver' is not a member of 'String'
on the following code:

Public Sub SetCreatedOnNull()
Me(Me.tablePasswordList.CreatedOnColumn) = System.Convert.DBNull
\\\
<...> = DbNull.Value
///
This code was generatedm, When I generated my Dataset.


:-(

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #10
"Cor" <no*@non.com> schrieb
Hi Newbie,

Seeing all those answers,
Me(Me.tablePasswordList.CreatedOnColumn) =
System.Convert.DBNull


What is this
me(me.tablepasswordlist.createdOnColumn)

I remember me from last time that Herfried said that that me(me) was
useless

If it is a datatable I think there has to be a rownumber,

It can be something as

tablepaswordList.rows(0).item"CreatedOnColumn"=sys tem.dbnull.value

I hope this helps a little bit?

The default property of a datarow is the item property. You can pass either
an index or a datacolumn object.
--
Armin

Nov 20 '05 #11
Cor
Hi Armin,

There was an type error,
tablepaswordList.rows(0).item"CreatedOnColumn"=sys tem.dbnull.value
It had to be
tablepaswordList.rows(0).item("CreatedOnColumn")=s ystem.dbnull.value
The default property of a datarow is the item property. You can pass either an index or a datacolumn object.


And then it is as far as I know
tablepaswordList.rows(0)("CreatedOnColumn")=system .dbnull.value or
tablepaswordList.rows(0)(0)=system.dbnull.value

That I did use in past in my samples, but I find this more complete now.

Or do I see something wrong?

Cor

Nov 20 '05 #12
"Cor" <no*@non.com> schrieb
Hi Armin,

There was an type error,
tablepaswordList.rows(0).item"CreatedOnColumn"
=system.dbnull.value

It had to be
tablepaswordList.rows(0).item("CreatedOnColumn")
=system.dbnull.value
The default property of a datarow is the item property. You can
pass

either
an index or a datacolumn object.


And then it is as far as I know
tablepaswordList.rows(0)("CreatedOnColumn")= system.dbnull.value
or tablepaswordList.rows(0)(0)=system.dbnull.value

That I did use in past in my samples, but I find this more complete
now.

Or do I see something wrong?

Maybe *I* see something wrong, but...

I think that within the datarow class itself you don't have to refer to the
table or to a row in the table.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #13
Cor
Hi Armin,
Maybe *I* see something wrong, but...

I think that within the datarow class itself you don't have to refer to the table or to a row in the table.

A problem with this is that when you make a dataset using the designer, it
makes a datasetclass with which you can return properties using a function,
but that you do not see because it is all made for you)

Without that it would be if you are right

tablepaswordList(0)=system.dbnull.value
But giving a datarow the name tablepasswordList brrrrrrrrr

For me this can be EOT

Cor
Nov 20 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Will | last post by:
On the subject of Data Warehouses, Data Cubes & OLAP…. I would like to speak frankly about Data Warehouses, Data Cubes and OLAP (on-line analytical processing). Has it dawned on anyone else...
2
by: lobrys | last post by:
hi I build a VB .NET application that makes file access, environnemet acess, database access, etc.... If I ran the app locally, everything works....(normal) If I copy the app on a server, and...
9
by: Greg Gursky | last post by:
Hello: I'm doing some planning on a potential project with which I need some help. The database at the focus of this question is a MS Access database that is currently accessed by DAO from a...
2
by: kma | last post by:
I am designing an Access 2000 database on a computer running Windows 98. I have one form with several tabs; all of which have sub forms, some with a subform on a subform. For example, on my...
2
by: cisco | last post by:
Could anyone point me in the direction of a document that describes the difference between JET and Access? I can't seem to find anything. Another question i have is i have this application (.net)...
3
by: Tim Marshall | last post by:
My A2003 is set up so that the default file format is Access 2000 (options, advanced tab). I've just tried to make my first A2003 mdb into an mde and I get an error saying: "you cannot create a...
15
by: Bart | last post by:
Hi, I receive an utf8 character from a database, like 田 (Japanese Character, style: &#XXXXX). How can I visualize the Japanese character on my application? I have found the class...
5
by: XFER | last post by:
Does anyone know how well 10 concurrent users will perform on the above config? Are there any known issues, limits to using MS Access with IIS 5 and ASP.net on a non- ..net server (NT)? thanks.
3
by: MW de Jager | last post by:
I'm having endless problems with gaining access to an Access Database that sits on a different server. My ASP.NET app cannot gain control. The errror message I get is: The Microsoft Jet...
4
by: Suzette | last post by:
I have an excel file that automatically updates when opened, pulling information from an Access database into into various pivot tables. I created a macro in Access to perform various necessary...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.