Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > Database and Reporting > decimal value problems


Reply
 
Thread Tools Display Modes
  #1  
Old 11-23-2006, 02:24 AM
cybermonster cybermonster is offline
Newcomer
 
Join Date: Nov 2006
Posts: 5
Default decimal value problems


A field in my access database is set to currency however whe i connect the database to my visual basic project using an ADO control the textbox only shows a rounded value which is to 1 decimal place ie. £1.70 in my database is shown as 1.7 in my VB textbox.

Is there any way of still having the currency sign and full value in the textbox whilst still having the database data type set to currency???

thanks
Reply With Quote
  #2  
Old 11-23-2006, 02:27 AM
DougT's Avatar
DougT DougT is offline
Ultimate Antique

Administrator
* Expert *
 
Join Date: Sep 2005
Location: Maldon,Essex, UK
Posts: 3,939
Default

Use the Format Function
eg
Code:
txtValue.Text = Format(sngVal,"##.#0")
__________________
semel insanivimus omnes
S Data in context = Information, S Information in context = Knowledge, S Knowledge in context = Experience
S Experience in context = Wisdom= Data
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->