Click here to Skip to main content
15,885,309 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Richard MacCutchan16-Sep-14 21:44
mveRichard MacCutchan16-Sep-14 21:44 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika17-Sep-14 4:19
dilkonika17-Sep-14 4:19 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak17-Sep-14 4:58
mveDave Kreskowiak17-Sep-14 4:58 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika17-Sep-14 5:02
dilkonika17-Sep-14 5:02 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak17-Sep-14 5:08
mveDave Kreskowiak17-Sep-14 5:08 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Eddy Vluggen17-Sep-14 5:13
professionalEddy Vluggen17-Sep-14 5:13 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Eddy Vluggen17-Sep-14 7:27
professionalEddy Vluggen17-Sep-14 7:27 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Richard MacCutchan17-Sep-14 5:03
mveRichard MacCutchan17-Sep-14 5:03 
dilkonika wrote:
I need to choose between float and decimal.
No you don't, you need to use some creative thinking. Dave K's response above is a good illustration of why you should never use float. As to allowing the user to enter something like 450.37, that is just a string of text. You can quite easily split that into two strings and convert each one to an integer. You could then multiply the first number by 100 and add the second, to use the smallest unti type, or use them separately as dollars and cents, or rupees and paisa, whatever.
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika17-Sep-14 6:37
dilkonika17-Sep-14 6:37 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Richard MacCutchan17-Sep-14 7:23
mveRichard MacCutchan17-Sep-14 7:23 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika17-Sep-14 14:26
dilkonika17-Sep-14 14:26 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak17-Sep-14 17:15
mveDave Kreskowiak17-Sep-14 17:15 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Richard MacCutchan17-Sep-14 20:57
mveRichard MacCutchan17-Sep-14 20:57 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Eddy Vluggen17-Sep-14 7:49
professionalEddy Vluggen17-Sep-14 7:49 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika17-Sep-14 8:04
dilkonika17-Sep-14 8:04 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak17-Sep-14 17:18
mveDave Kreskowiak17-Sep-14 17:18 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika18-Sep-14 4:39
dilkonika18-Sep-14 4:39 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak18-Sep-14 5:41
mveDave Kreskowiak18-Sep-14 5:41 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika18-Sep-14 6:08
dilkonika18-Sep-14 6:08 
QuestionRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Eddy Vluggen18-Sep-14 7:27
professionalEddy Vluggen18-Sep-14 7:27 
AnswerRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika18-Sep-14 13:18
dilkonika18-Sep-14 13:18 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak18-Sep-14 14:23
mveDave Kreskowiak18-Sep-14 14:23 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
dilkonika18-Sep-14 14:50
dilkonika18-Sep-14 14:50 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Dave Kreskowiak18-Sep-14 15:18
mveDave Kreskowiak18-Sep-14 15:18 
GeneralRe: Vb.net + SQL Server : Speed difference using float vs Decimal Pin
Eddy Vluggen18-Sep-14 22:27
professionalEddy Vluggen18-Sep-14 22:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.