"currency separator information" - NumberFormaInfo Error

daniele

New member
Joined
May 14, 2003
Messages
2
Hello everybody

Im developing a VB.net Application (my first one) and Im getting in trouble with it.

I used Win 2000 Pro, Visual StudioPro, to develop it.

The application read a DataBase file (.mdb) and Read-Write to it.

Running the application on my developing machine all work fine, but running the .exe file on other Windows machines (with .NET frameowrk 1.1 and MDAC 2.7 installed on them) I got this error:


"error - the currency separator information specified in the NumberFormatInfo is ambiguos for parsing"

When accessing some particular data into the DataBase.

How is it possible?

How can I solve the problem?

Thanks to everybody!!
 
Some more info about the starting thread.

Hello!

Now, Im testing more my app and I found a problem Here:

Im using:

> a ListView component (named ListView1)
> a Class I created, named Cliente
> a Class I created, named Macchina

This part of the code where I found the error (listed in the Exception).

Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.Click
-- 2003_05_14
-- Siccome non funziona... Creo uneccezione
Try
Dim selected As Integer = ListView1.SelectedIndices.Item(0)
Dim current As Integer = ListView1.Items(selected).SubItems(4).Text
Dim selectedId As Integer = ListView1.Items(selected).SubItems(3).Text
-- Forse c
 
Back
Top