Hi, The http://www.grator.org site has been taken down. The two Eiffel libraries that were available there, are now found on my Website. Take a look here: ...
1136
Andreas.Scholz
ascholzde
Dec 2, 2002 12:58 pm
Dear Eiffel Community in the moment there are three important Eiffel compiler: ISE, SE and VE (and HACT?). If you want to use Eiffel to implement big...
1137
Emmanuel STAPF [ES]
manus_eiffel
Dec 2, 2002 6:29 pm
... The hexadecimal value shown in a call stack is the address at the point of failure. One of its purpose is to enable the user to find out if two objects of...
1138
Emmanuel STAPF [ES]
manus_eiffel
Dec 3, 2002 2:19 am
... Indeed. This should be fixed in our next release. Regards, Manu...
1139
richard_gams
Dec 3, 2002 4:44 pm
We are developing an app in Studio using straight Eiffel so as to have the advantage of fast compiles and debugging. After testing, we wish to wrap the app in...
1140
Emmanuel STAPF [ES]
manus_eiffel
Dec 4, 2002 6:38 am
... Could you precise which ODBC classes you are referring to? If it is EiffelStore then indeed there is a compatibility problem between .NET and classic...
1141
Wbeimar Quintero G.
wquintero@...
Dec 4, 2002 1:17 pm
Hi, I am novice in Eiffel. I download and install EiffelStudio Free Edition. I want to know that kind of applications I can developed with Eiffel and that I...
1142
Hrvoje Nezic
hrvoje.nezic@...
Dec 4, 2002 2:54 pm
Hi, I am experimenting with EiffelStudio 5.2 (free edition for Windows). It seems that behaviour described by documentation (A Guided Tour) and observed ...
1143
CRISMER Paul-Georges
paul-georges.crismer@...
Dec 4, 2002 3:31 pm
Have a look at the following menu entry : View -> Link context tool The context tool and editor window are not linked by default since 5.2. They can be either...
1144
Gary Smithrud
smithrud
Dec 4, 2002 7:42 pm
You can develop any type of application that you want, especially anything that fits in the Object-Oriented framework (the only thing that I wouldn't use...
1145
Julian Rogers [ES]
juliandrogers
Dec 4, 2002 10:34 pm
... To expand slightly on Gary's answer regarding Vision2 :- If you are wishing to do fancy Windows stuff, or use certain controls not supported by Vision2,...
1146
Gary Smithrud
smithrud
Dec 5, 2002 2:36 pm
Certainly true...I had forgotten about that ability. The advantage is that even if you use WEL stuff in Vision2, the porting to Linux/Unix is still less than ...
1147
javier hector
vrhj2000
Dec 5, 2002 2:36 pm
Hello that so, I had problems with the example of EiffelWeb de EiffelStudio5.2 1) Not this the example in path Eiffel52\examples92;web\basic 2) Copy the example...
1148
Andreas.Scholz
ascholzde
Dec 5, 2002 7:31 pm
Hi all, the class NUMERIC is well defined in ELKS, but all compilers implement something different: VE 4.1 defines exponentiable (other: DOUBLE): BOOLEAN ...
1149
Emmanuel STAPF [ES]
manus_eiffel
Dec 5, 2002 7:48 pm
Dear Javier, ... We will be posting very soon an update to the EiffelStudio 5.2 version which should have in addition of minor bug fixes a proper EiffelWeb ...
1150
javier hector
vrhj2000
Dec 6, 2002 12:37 am
Thanks! "Emmanuel STAPF [ES]" <manus@...> wrote:Dear Javier, ... We will be posting very soon an update to the EiffelStudio 5.2 version which should...
1151
Emmanuel STAPF [ES]
manus_eiffel
Dec 6, 2002 7:41 am
Dear Steve, We were able to reproduce the problem and it should be fixed in next release. In the meantime, you can freeze your code and that should solve this...
1152
u2_sonu
Dec 6, 2002 11:02 am
hi friends, i m new to eiffel and having problem in creating object of a class in another class i have two classes: account and root_class. the root_class...
1153
David Broadfoot
synaxdb
Dec 6, 2002 1:52 pm
... You'd make more friends if you: A) hadn't posted an almost-identical query to another newsgroup 40 minutes earlier, and B) provided the source code about...
1154
steven_m_wurster
steven_m_wur...
Dec 6, 2002 3:55 pm
Excellent. I had already been working around the problem with freezing. :-) Thanks, Steve ... solve...
1155
Gary Smithrud
smithrud
Dec 6, 2002 7:52 pm
Ah...so you turned up the heat or put on a jacket, right? Oh...freezing the code! ... Gary. ... __________________________________________________ Do you...
1156
Emmanuel STAPF [ES]
manus_eiffel
Dec 9, 2002 7:27 pm
This issue which was only happening when compiled against Borland is now fixed and is part of our patch we will be releasing soon. Regards, Manu...
1157
east_martin <marti...
east_martin
Dec 11, 2002 10:34 am
Hallo, am trying to build following class: class RATIONAL[I->INTEGERTYPE] inherit MY_COMPARABLE -- my own version of Comparable MY_NUMERIC -- my own version of...
1158
Nick Coghlan
ncoghlan@...
Dec 11, 2002 2:17 pm
... Try something like: feature numerator,denominator:INTEGERTYPE one: like Current is local concreteInteger : I do create result.make numerator :=...
1159
Hubert <hcater@......
eiffelzone
Dec 11, 2002 4:58 pm
Just a quick question for anyone using this package, I am considering the upgrade from Visual C++ 6.0 and was wondering what I would be looking at in terms of...
1160
Emmanuel STAPF [ES]
manus_eiffel
Dec 11, 2002 11:15 pm
You could also declare RATIONAL as below: class RATIONAL [I -> INTEGERTYPE create make end] It enables to have the following code in RATIONAL: numerator: I ...
1161
Emmanuel STAPF <ma...
manus_eiffel
Dec 12, 2002 1:49 am
... considering ... For classic Eiffel, I don't think it makes a difference as they both offer the optimizing C compiler. To develop .NET application using...
1162
Robert Jurjevic
robertjurjevic
Dec 12, 2002 10:50 am
Dear Eiffel users, I would like to write a simple socket server and communicate with clients written in C, C++ and C# assuming that messages exchanged between...
1163
CRISMER Paul-Georges
paul-georges.crismer@...
Dec 12, 2002 12:16 pm
Do not use STORABLE features : this is not just text. To send "Hello" just do this : socket.put_string ("Hello") In your example, you should write : ...
1164
Z.Koufakis
z.koufakis@...
Dec 12, 2002 12:28 pm
Robert, use NETWORK_STREAM_SOCKET as follows: socket: NETWORK_STREAM_SOCKET connection: NETWORK_STREAM_SOCKET create socket.make_server_by_port (port_number)...