0
votes
2answers
54 views
Determine if DataColumn is numeric
Is there a better way than this to check if a DataColumn in a DataTable is numeric (coming from a SQL Server database)?
Database db = DatabaseFactory.CreateDatabase();
DbComma …
1
vote
1answer
32 views
Check for Numeric Value using SQL Server 2000
How can I know if a VARCHAR field's value can be successfully converted to an integer?
I want to do it massively to insert records from one table to another...
0
votes
7answers
2k views
How to allow only numeric (0-9) in html inputbox using jQuery?
I am creating a web page where I have a input text field in which I want to allow only numeric characters like (0,1,2,3,4,5...9) 0-9.
How can i make it using jquery??
Thanks
1
vote
4answers
50 views
What are the best fonts for numeric data entry?
I'm creating a GUI application that requires the user to provide lots of numeric data. What is the best font to display the user's data? I assume that a mono-spaced font would be b …
4
votes
11answers
1k views
c# evaluating string “3*(4+2)” yield int 18
Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE:
string mystring = "3*(2+4)";
int resul …
3
votes
3answers
155 views
What are your experiences with numerics libraries for C#, and which would you recommend?
By numerics library I mean a library providing data types such as matrices, vectors, and common (numerical) linear algebra algorithms. Optionally FTT and statistical algorithms.
I …
0
votes
0answers
53 views
build numeric filter with arithematic symbols in blackberry
text field which allowing only numeric values and arithematic symbols in blackberry
0
votes
1answer
142 views
UITextField in a tableView and disposing numeric keypad
I have a table view with each cell having a text field accepting numeric values only. I added the custom decimal place to the default numeric keypad, for my purpose. Since there is …
3
votes
4answers
191 views
How can I disable scientific notation when working with very large numbers in Perl?
Consider the following:
print 3 ** 333; #Yields 7.6098802313206e+158
My question is simple: How can I disable scientific notation when working with very large numbers? Basically …
2
votes
1answer
72 views
How do I pass numeric arguments to Latex environments
I have defined an environment as
\newenvironment{question}[1]
{Question (#1 points):}{}
I am using it as
\begin{question}[10]
...
\end{question}
I get the following error:
…
0
votes
2answers
531 views
Validation in textbox in WPF
Hi,
I am currently working on a WPF application where I would like to have textbox that can only have numeric entries in it. I know that I can validate the content of it when I l …
0
votes
2answers
76 views
Excel data wont re-format or calculate
I have a spreadsheet that was created from a webapp. I save it as an excel wkbk. I close file and go to file and open from my pc. When I try to reformat a column of numbers, not …
0
votes
3answers
71 views
About Python’s Mixed Numeric Data Types converting results up to the most complicated operand…
A little background: I'm in the process of learning Python through O'Reilly's, "Learning Python" book, I've had some experience in Java.
Anyway, upon reading Chapter 5 (I'm still …
3
votes
2answers
370 views
C# Decimal to Numeric(?,?)
Hello!
I have a problem, i didn't found yet the solution so i am asking your help.
In my database I have some int, decimal and string that needs to be convert in numeric with spec …
2
votes
8answers
289 views
html text box that automatically adds characters
Hey guys I'm trying to make a HTML text box that:
1) only accepts numbers
2) after 3 digits, adds a '.'
3) after 6 digits, adds another '.'
So for example, by only typing numbers, …
