I have sqlite database with table and field.
Example :
nametable : SalesTables
field1 : |FieldId| number|
field2 : |FieldBookName| text|
field3 : |FieldPrice| currency|
| Id|BookName|Price |
|1 |abc |$10.000|
I build apk database to listview ( but use it class module Table.bas )
Problem : Table1 in Layout
| Id|BookName|Price |
|1 |abc |10000|
Expectation : Table1 in Layout
| Id|BookName|Price |
|1 |abc |$10.000 |
Example :
nametable : SalesTables
field1 : |FieldId| number|
field2 : |FieldBookName| text|
field3 : |FieldPrice| currency|
| Id|BookName|Price |
|1 |abc |$10.000|
I build apk database to listview ( but use it class module Table.bas )
Problem : Table1 in Layout
| Id|BookName|Price |
|1 |abc |10000|
Expectation : Table1 in Layout
| Id|BookName|Price |
|1 |abc |$10.000 |