Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

eiffel_software · Eiffel Software User list

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1379
  • Category: Development
  • Founded: Oct 30, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 1352 - 1381 of 20470   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1352 Steve Singer <sws@...
stephenwsinger Send Email
Feb 2, 2003
10:30 pm
Puzzle #1: In the Eiffel library class DATE there are both "make_now"; and "make_now_utc" features (even though there seems to be no mention of "make_now_utc"...
1353 Skaarjy <skaarjy@....
Skaarjy Send Email
Feb 2, 2003
11:03 pm
How do you construct and execute Eiffel classes from C#? I've managed to get C# to see the class. indexing description: "Hello World example with Eiffel for...
1354 Robert Jurjevic
robertjurjevic Send Email
Feb 3, 2003
10:22 am
Dear, I think that when you make DATE object with make_now_utc the date is UTC (GMT) and when you make it with make_now the date is your local date. Say, if...
1355 Steve Singer <sws@...
stephenwsinger Send Email
Feb 3, 2003
4:52 pm
The following short program may illustrate my original question ("Puzzle #1") more succinctly: class TEST feature here: DATE_TIME utc: DATE -- feature...
1356 Emmanuel Stapf [ES]
manus_eiffel Send Email
Feb 4, 2003
7:17 am
With EiffelStudio 5.2 or ENViSioN! 1.0, the proper way to create an instance of an Eiffel class from C# is the following: APPLICATION Hello =...
1357 Robert Jurjevic
robertjurjevic Send Email
Feb 4, 2003
10:06 am
Dear Eiffelers, Does anybody know how to print a numerical value of an instance of INTEGER_64 on standard output? Thank you. Yours sincerely, Robert Jurjevic...
1358 CRISMER Paul-Georges
paul-georges.crismer@... Send Email
Feb 4, 2003
10:10 am
let i : INTEGER_64 print it on standard outptut : io.put_string (i.out) Hope this helps, Paul G. Crismer...
1359 Robert Jurjevic
robertjurjevic Send Email
Feb 4, 2003
10:32 am
Dear Paul, ... It is working fine although I haven't tested it with "big" numbers (those who do not fit into INTEGER). Thank you. Yours sincerely, Robert...
1360 Benjamin Packard
swordofpork Send Email
Feb 4, 2003
6:17 pm
hi I'm trying to validate a string as 3 letters followed by 3 numbers using the code below is_course_code : BOOLEAN is -- is input a valid course code? local ...
1361 Emmanuel Stapf [ES]
manus_eiffel Send Email
Feb 4, 2003
6:22 pm
If you want to find out if a character is a digit, simply use `is_digit' from the CHARACTER class. Manu...
1362 Brian Heilig <Bria...
heiligb Send Email
Feb 4, 2003
6:27 pm
Brian Heilig writes: Also, `not (is_digit)&#39; will only tell you if the CHARACTER is not in "0123456789&quot;. This means special characters (e.g. !@#$%^&*() etc.)...
1363 Chris Saunders
saunders7777 Send Email
Feb 4, 2003
7:45 pm
`is_integer&#39; is a query on a STRING while calling `item' on a string returns a CHARACTER. Class CHARACTER has the query that you need for this. Regards Chris...
1364 Benjamin Packard
swordofpork Send Email
Feb 4, 2003
8:24 pm
thanks for all the help! unfortunately im running into problems again i want to take a 10 digit string which i have checked is numeric, and turn it into 10...
1365 Julian Rogers [ES]
juliandrogers Send Email
Feb 4, 2003
8:40 pm
Hi Ben, ... Convert the CHARACTER to a STRING using `out', and then call `to_integer&#39;. Alternatively you can use `code' to return the ASCII code of the...
1366 Rex Fowler
rex_fowler_vm Send Email
Feb 4, 2003
9:36 pm
Hi, Ben. You can ask a STRING like "1234" if it is an integer or not. But ask a CHARACTER if it is_digit. You can use substring (4,6) to get just characters 4...
1367 Rex Fowler
rex_fowler_vm Send Email
Feb 4, 2003
9:50 pm
... Hi, Ben. You can use CHARACTER's code query to get the ASCII value (an integer) for the CHARACTER. The expression ('0').code gives you the ASCII value (48)...
1368 ifdefmoose <ifdefm...
ifdefmoose Send Email
Feb 5, 2003
12:22 am
Ben - You asked "why does is_integer work sometimes...?" The answer is that 'item' of a STRING returns a result of type CHARACTER, and is_integer is not...
1369 ifdefmoose <ifdefm...
ifdefmoose Send Email
Feb 5, 2003
12:40 am
Unfortunately, as you have observed, CHARACTER does not have a feature that converts the character value to an integer value. Instead of playing C-think style...
1370 richard_gams <raga...
richard_gams Send Email
Feb 5, 2003
1:40 am
A month or two ago, I found I couldn't use the ODBC library under dotnet. Manu was kind enough to send me some code fixes, but I never could get it all to...
1371 Gary Smithrud
smithrud Send Email
Feb 5, 2003
3:24 pm
The only issue that I have with your suggestion is that you start generating garbage. I understand the desire to be ported across different OSes, but I ...
1372 Emmanuel Stapf [ES]
manus_eiffel Send Email
Feb 5, 2003
10:58 pm
In 5.3 we have added `make_now_utc&#39; in DATE_TIME and TIME class. But in the case of a DATE, this is normal that the time is by default set to `12am'. Manu...
1373 Emmanuel Stapf [ES]
manus_eiffel Send Email
Feb 6, 2003
2:19 am
... I figure out I should give some rational on why WIDE_CHARACTER was made obsolete. We first thought that having two classes CHARACTER and WIDE_CHARACTER...
1374 Robert Jurjevic
robertjurjevic Send Email
Feb 6, 2003
10:04 am
Dear Manu, ... I do not understand why create utc.make_now_utc should set the time to 12 am when UTC is thicking like any other time. For example I am writing...
1375 Gary Smithrud
smithrud Send Email
Feb 6, 2003
1:58 pm
DATE is the class for dates only. TIME is the class for time only. DATE_TIME contains both. Since the OS represents date and time as a single time_t value,...
1376 Gary Smithrud
smithrud Send Email
Feb 6, 2003
2:06 pm
I forgot to add that 12:00 AM is the value 0 for the time component. Gary. ... __________________________________________________ Do you Yahoo!? Yahoo! Mail...
1377 Rex Fowler
rex_fowler_vm Send Email
Feb 6, 2003
3:38 pm
... obsolete. ... help to ... see a ... WIDE_CHARACTER. ... having ... the ... this class ... needs to be ... Thanks very much, Manu. This makes sense. In the...
1378 Robert Jurjevic
robertjurjevic Send Email
Feb 6, 2003
4:32 pm
Dear Eiffelers, I have the following piece of code... if client_socket.ready_for_reading then client_socket.read_line end create server_line.make_from_string...
1379 ifdefmoose <ifdefm...
ifdefmoose Send Email
Feb 7, 2003
12:20 am
Robert - This is farily simple to do in EiffelNet, using a MEDIUM_POLLER and a POLL_COMMAND. The advanced EiffelNet example ($ISE_EIFFEL/examples/net/advanced)...
1380 jeffrey_l_clark <j...
jeffrey_l_clark Send Email
Feb 7, 2003
2:26 am
I'm trying to work through the sample Eiffel project in the EiffelStudio v5.2 Guided Tour. I'm on a Linux system (Mandrake 9.0). The system compiles OK...
1381 Gary Smithrud
smithrud Send Email
Feb 8, 2003
2:52 am
There is a version of libpng in the $ISE_EIFFEL/C_library/libpng directory. Your project settings refers to that library, which is 1.0.8. You can change the...
Messages 1352 - 1381 of 20470   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help