English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i work at a clinic and i'm using medisoft but everytime i sent a claim it says "t" is a not a valid integer value.

2007-03-06 05:50:25 · 4 answers · asked by Lorena M 1 in Computers & Internet Programming & Design

4 answers

Integers are whole numeric values. Apparently the claim you are submitting is trying to put a alphabet character into a field that is designed to only handle Integer values.

Integers: 1 2 3 4 5 6 .... and so on
Characters: a b c d e f ... A B C D E F ... and so on (this also includes symbols)

Other types of number include decimal, float, double, and a few more. Each type differs so entering a 3.14 into the Integer field would fail but it would work for say a decimal, float, or a double. These are necessary for programming and data integrity. Basically don't enter a letter value into a field that expects a digit.

2007-03-06 05:58:22 · answer #1 · answered by Jim Maryland 7 · 0 0

An integer value is a number without decimals. i.e: 3 - 452 - 1 - 128.

2007-03-06 05:53:46 · answer #2 · answered by Anonymous · 1 0

integer means a varible that specify 2 byte in dos & 4 byte in 32-bit computers. so in 32-bit computers the range of each integer is -32767 to +32768 ... in the progrmming languages 't' is a char and char specify 1 byte in dos and 2 byte in 32-bit computers..
so if u use 't' as integer it happened a logical error..
i think i complain the diffrence between char and integer.

2007-03-06 06:35:52 · answer #3 · answered by Mahmood K 1 · 0 0

It's asking for a number, specifically one without a decimal point, eg 12, 8 or 162

2007-03-06 05:55:09 · answer #4 · answered by Emma :) 4 · 0 0

fedest.com, questions and answers