Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~7K People Reached
Favorite Forums
Favorite Tags
Member Avatar for altzaportu

I have designed the next program. It is the catalogue of a library. The problem is that if I want to find the book "the new world war" the program also finds other books (being the tiltle completely diferent). I want to modificate the code so that if I introduce …

Member Avatar for Duoas
0
217
Member Avatar for altzaportu

Well, if I introduce the date 29/01/2008 in the next code, a window appears with the message "Proyect project1.exe raised exception class EconvertError with message “2008/01/29’ is not a valid date’. Process stopped . Use Step or Run to continue." [ICODE]repeat writeln(' Introduce the day'); readln(day1); until(day1>'0')and(day1<'32'); repeat writeln(' Introduce …

Member Avatar for Duoas
0
125
Member Avatar for Duoas

The question frequently comes up on how to manipulate dates and time using Delphi. Delphi 2.0 and later supply the [B]TDateTime[/B] format, which is actually a floating point number (stored as a IEEE double) containing the number of days that have passed since 12 December 1899. (Delphi 1.0 calculated the …

Member Avatar for Duoas
0
7K
Member Avatar for altzaportu

Hi If I am asking the name and identification number like [TEX] write(' Introduce your name: '); readln(name); write(' Introduce your identification number: '); readln(ident);[/TEX] being name:string ident:integeer and a dull user comes and introduces as a name a number (or a string as identification number) the program stops. How …

Member Avatar for Duoas
0
91
Member Avatar for altzaportu