473,386 Members | 1,621 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

compile error :(

void __fastcall TRabatyForm::Edit1iKeyPress(TObject *Sender, char &Key)
{
if((Key < '0') (Key > '9') Key = '#0';
}

Why? I need to filter alloed key do digits only.

Pawel
Jul 19 '05 #1
5 1793
On Mon, 14 Jul 2003 09:51:42 +0200, "Paweł" <ko*****@poczta.onet.pl> wrote:
void __fastcall TRabatyForm::Edit1iKeyPress(TObject *Sender, char &Key)
Note that "__fastcall" is not standard C++.

{
if((Key < '0') (Key > '9') Key = '#0';
1. You need an operator between the two expressions.
Probably you meant "||".

2. Specifying more than one character between apostrophes
like in '#0' is an old C syntax for "magic" integer
values, but there isn't room in a char for that value.
Probably you meant something else. Like '\0'.
}

Why? I need to filter alloed key do digits only.


Have you considered 'isdigit'?
Jul 19 '05 #2
> Note that "__fastcall" is not standard C++.

{
if((Key < '0') (Key > '9') Key = '#0';
1. You need an operator between the two expressions.
Probably you meant "||".

yes, but i tried word " or " and there was an compile error
2. Specifying more than one character between apostrophes
like in '#0' is an old C syntax for "magic" integer
values, but there isn't room in a char for that value.
Probably you meant something else. Like '\0'.
U R right.
}

Why? I need to filter alloed key do digits only.


Have you considered 'isdigit'?

This helped. Thx.

Pawel
Jul 19 '05 #3
On Mon, 14 Jul 2003 10:36:03 +0200, "Paweł" <ko*****@poczta.onet.pl> wrote:
Note that "__fastcall" is not standard C++.

>{
> if((Key < '0') (Key > '9') Key = '#0';


1. You need an operator between the two expressions.
Probably you meant "||".

yes, but i tried word " or " and there was an compile error

2. Specifying more than one character between apostrophes
like in '#0' is an old C syntax for "magic" integer
values, but there isn't room in a char for that value.
Probably you meant something else. Like '\0'.


U R right.
>}
>
>Why? I need to filter alloed key do digits only.


Have you considered 'isdigit'?

This helped. Thx.


You're welcome. Aside from C++ programming, the most common
error/oversight in doing what you're attempting is to forget
about _pasting_ of text into the control... Just a hint.

Jul 19 '05 #4
"Jeremy Cowles" <je*************************@asifl.com> wrote...
"Paweł" <ko*****@poczta.onet.pl> wrote in message
news:be**********@news.onet.pl...
Note that "__fastcall" is not standard C++.
>{
> if((Key < '0') (Key > '9') Key = '#0';
There is a missing closing parenthesis after '9'.

1. You need an operator between the two expressions.
Probably you meant "||".

yes, but i tried word " or " and there was an compile error

AFAIK, keyword "Or" is not valid in C++ as a boolean operator (or any

other operator for that matter).


You know wrong. "or", "and", "xor", "not" "not_eq", "and_eq",
"compl", "bitor", "bitand", "xor_eq", "or_eq", are reserved as
_alternative_ tokens for "||", "&&" , "^", "!", "!=", "&=",
"~", "|", "&", "^=", "|=", respectively.

If a compiler does not accept those, it's non-compliant.

Victor
Jul 19 '05 #5

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vh************@corp.supernews.com...
"Jeremy Cowles" <je*************************@asifl.com> wrote...
"Paweł" <ko*****@poczta.onet.pl> wrote in message
news:be**********@news.onet.pl...
[snip]
yes, but i tried word " or " and there was an compile error

AFAIK, keyword "Or" is not valid in C++ as a boolean operator (or any

other
operator for that matter).


You know wrong. "or", "and", "xor", "not" "not_eq", "and_eq",
"compl", "bitor", "bitand", "xor_eq", "or_eq", are reserved as
_alternative_ tokens for "||", "&&" , "^", "!", "!=", "&=",
"~", "|", "&", "^=", "|=", respectively.

If a compiler does not accept those, it's non-compliant.


My fault (newb). Wierd that these were not mentioned in my book, or perhaps
they were & I just missed them.

Jeremy

Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Danny Boelens | last post by:
Hi all, today I ran into a compile error after a compiler upgrade. I made a small example to demonstrate my compile error: template<typename T1, typename T2> class A {}; class B
5
by: Carmine Cairo | last post by:
Hi, I'm working on a project and today I've note a little problem during the compile fase. Here a little piece of code: // 1st version welldone = 0; size = p->getSize(); backbone = new...
5
by: Brice Prunier | last post by:
Here under 4 schemas i'm working with ( it may be long: sorry...) The context is the following : Resident.xsd imports Person.xsd and includes Common.xsd ( anonimous schema: no TargetNamespace )...
10
by: Chris LaJoie | last post by:
Our company has been developing a program in C# for some time now, and we haven't had any problems with it, but just last night something cropped up that has me, and everyone else, stumped. I...
6
by: Thomas Connolly | last post by:
I have 2 pages referencing the same codebehind file in my project. Originally the pages referenced separate code behind files. Once I changed the reference to the same file, everything worked...
0
by: Jim Heavey | last post by:
Internal Compiler Error: stage 'BEGIN' Hello, I had an application which was working just fine and I decided to modify all database access within the application to utilizie a new Namespace that I...
9
by: ThunderMusic | last post by:
Hi, I'd like to create a compile time error in my class... maybe there's a way already built in in the framework so I can achieve what I want... I have 2 constructors in my class. One of them...
4
by: tony | last post by:
Hello! My question is about calling this method CollectData below but I get a compile error that I shouldn't have because the type parameter is correct. The compile error is the following:...
5
by: wong_powah | last post by:
#include <vector> #include <iostream> using std::cout; using std::vector; enum {DATASIZE = 20}; typedef unsigned char data_t;
2
by: BruceWho | last post by:
I downloaded boost1.35.0 and built it with following command: bjam --toolset=msvc-7.1 --variant=release --threading=multi -- link=shared --with-system stage and it failed to compile, error...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.