| View previous topic :: View next topic |
| Author |
Message |
Artaud Guest
|
Posted: Wed Dec 28, 2005 5:14 pm Post subject: warning W8007 |
|
|
Hello,
"hexadecimel value conteins more the thre cipher" (excuse my English but I
try I try......)
I often have this error but when I look I can't define what happends it.
Could you say where I could find TIPs or explanations about this error?
Because she is in mine all cpps files!!!!
Thank you at all for any help about
Regards
Patrick
|
|
| Back to top |
|
 |
Alex Bakaev [TeamB] Guest
|
Posted: Wed Dec 28, 2005 7:11 pm Post subject: Re: warning W8007 |
|
|
Artaud wrote:
| Quote: | Hello,
"hexadecimel value conteins more the thre cipher" (excuse my English but I
try I try......)
I often have this error but when I look I can't define what happends it.
Could you say where I could find TIPs or explanations about this error?
Because she is in mine all cpps files!!!!
Thank you at all for any help about
Regards
Patrick
|
Could you post the exact code snippet and the exact error message, please?
|
|
| Back to top |
|
 |
Dennis Jones Guest
|
Posted: Thu Dec 29, 2005 4:36 am Post subject: Re: warning W8007 |
|
|
"Artaud" <artaud.patrick (AT) wanadoo (DOT) fr> wrote
| Quote: |
Hello,
"hexadecimel value conteins more the thre cipher" (excuse my English but I
try I try......)
I often have this error but when I look I can't define what happends it.
Could you say where I could find TIPs or explanations about this error?
Because she is in mine all cpps files!!!!
Thank you at all for any help about
Regards
Patrick
|
From the online help:
"This warning results when you have a long hexadecimal escape sequence with
many leading zero digits (such as x00045)."
Therefore:
char a = 'x7F'; // OK
char b = 'x07F'; // OK
char c = 'x007F'; // oops, gives warning 8007 "Hexadecimal value contains
too many digits"
- Dennis
|
|
| Back to top |
|
 |
Artaud Guest
|
Posted: Tue Jan 10, 2006 1:08 pm Post subject: Re: warning W8007 |
|
|
Ok and thank you at all, I go to look my code first!!!!!!!
Thank you very much
Regards
Patrick
"Artaud" <artaud.patrick (AT) wanadoo (DOT) fr> a écrit dans le message de news:
[email]43b2c771 (AT) newsgroups (DOT) borland.com[/email]...
| Quote: |
Hello,
"hexadecimel value conteins more the thre cipher" (excuse my English but I
try I try......)
I often have this error but when I look I can't define what happends it.
Could you say where I could find TIPs or explanations about this error?
Because she is in mine all cpps files!!!!
Thank you at all for any help about
Regards
Patrick
|
|
|
| Back to top |
|
 |
Artaud Guest
|
Posted: Fri Jan 13, 2006 1:28 pm Post subject: Re: warning W8007 |
|
|
The problem is that arrives on the #pragma hdrstop !!!!!
How can I do to look?
and before I have only the vcl include command
Best regards
Patrick Artaud
"Dennis Jones" <nospam (AT) nospam (DOT) com> a écrit dans le message de news:
43b36760$1 (AT) newsgroups (DOT) borland.com...
| Quote: |
"Artaud" <artaud.patrick (AT) wanadoo (DOT) fr> wrote in message
news:43b2c771 (AT) newsgroups (DOT) borland.com...
Hello,
"hexadecimel value conteins more the thre cipher" (excuse my English but
I
try I try......)
I often have this error but when I look I can't define what happends it.
Could you say where I could find TIPs or explanations about this error?
Because she is in mine all cpps files!!!!
Thank you at all for any help about
Regards
Patrick
From the online help:
"This warning results when you have a long hexadecimal escape sequence
with
many leading zero digits (such as x00045)."
Therefore:
char a = 'x7F'; // OK
char b = 'x07F'; // OK
char c = 'x007F'; // oops, gives warning 8007 "Hexadecimal value
contains
too many digits"
- Dennis
|
|
|
| Back to top |
|
 |
|