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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 15279 - 15308 of 20471   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
15279 dciphercomputing
dciphercompu... Send Email
Sep 1, 2009
12:57 pm
I will look at the grid layout as it sound more like what I want. Thanks for the explanation about re-ordering controls. Simon...
15280 Daniel Furrer
dfurrer... Send Email
Sep 1, 2009
1:24 pm
We are having some trouble with creating an EiffelStudio binary package for our first semester course: The issue seems to be related to the gtk2 MacPorts...
15281 Iliyan Gochev
iliyan_gochev Send Email
Sep 1, 2009
2:09 pm
About the reorganization of widgets you could grab a widget with right mouse button click, hold down Shift, and place the widget into its new place. No need to...
15282 peter7723 Send Email Sep 1, 2009
2:11 pm
... To position a widget in an unfilled container above/before another widget, hold down shift and then right-click to drop. Peter Horan...
15283 boxer41a Send Email Sep 1, 2009
3:49 pm
Can I resuscitate this project? I [still] would like to make a library for use with the Lego Mindstorms robot. My simple-minded approach so far is to wrap...
15284 boxer41a Send Email Sep 1, 2009
7:20 pm
Is there a way to determine *all* the types to which an object conforms? Or to determine which object types conform to a particular object? Is there a way to...
15285 Colin LeMahieu
colinlema Send Email
Sep 1, 2009
7:26 pm
Sounds like you're looking for the Class and Feature tools. View -> Tools -> Class, View -> Tools -> Features. With these you can find derived types, ...
15286 boxer41a Send Email Sep 1, 2009
7:34 pm
Sorry, I was not clear. What I want to do is discover the *class* structure from which a running system was created. I'm sure the runtime must keep a table...
15287 carl94706 Send Email Sep 1, 2009
8:46 pm
When I try to launch esbuilder a button appears on the task bar but nothing else happens. There is no window, and right clicking on the button gets no...
15288 Emmanuel Stapf [ES]
manus_eiffel Send Email
Sep 1, 2009
9:05 pm
I certainly cannot reproduce the behavior. Can you describe how you installed EiffelStudio? I assume that you can launch EiffelStudio without any problem? ...
15289 carl94706 Send Email Sep 1, 2009
9:08 pm
I installed by running Eiffel64_gpl_79451-windows.msi EiffelStudio still works. Carl...
15290 Daniel Furrer
dfurrer... Send Email
Sep 1, 2009
10:25 pm
You can access some runtime information using the classes INTERNAL and TYPE (and ANY.generating_type). I don't think you can do what you're looking for though....
15291 carl94706 Send Email Sep 1, 2009
11:53 pm
Well, now it is working again. I think what happened was that some modal message was being displayed offscreen where I couldn't see it. That may be why the...
15292 peter7723 Send Email Sep 2, 2009
1:26 am
I have the following original code: ws ?= workbook.worksheets.item (as_sys_string("Processed&quot;)) I attempted to translate it as: if attached workbook as a_wb...
15293 Emmanuel Stapf [ES]
manus_eiffel Send Email
Sep 2, 2009
3:32 am
... The syntax is: attached {EXPECTED_TYPE} expression as object_test_local Regards, Manu...
15294 peter7723 Send Email Sep 2, 2009
8:29 am
I am getting VEVI errors in library code. I am using the experimental libraries. I am compiling for a .NET target. Sample error reports and .ecf file follow: ...
15295 dciphercomputing
dciphercompu... Send Email
Sep 2, 2009
1:04 pm
Hi I know I saw a tip about this but I forgot about the shift-key part. Thanks, Simon...
15296 dciphercomputing
dciphercompu... Send Email
Sep 2, 2009
1:09 pm
In EiffelBuild I only see a grid under primitives not containers. So from an EiffelBuild perspective it does not seem possible to use a grid to layout the...
15297 boxer41a Send Email Sep 2, 2009
4:56 pm
Manu, I am trying to get a list of all the dynamic types in a system. To do so I inherited from INTERNAL and assigned `internal_dynamic_type_string_table' to...
15298 Emmanuel Stapf [ES]
manus_eiffel Send Email
Sep 2, 2009
5:45 pm
... That's expected. The table is used to speed up the process of querying the corresponding dynamic type from a textual representation. It is not meant to be ...
15299 Emmanuel Stapf [ES]
manus_eiffel Send Email
Sep 2, 2009
7:02 pm
... Under .NET, there are 2 places which prevents the EiffelVision2 library to be compiled in void-safe mode: WEL_IDENTIFIED and IDENTIFIED_ROUTINES. If you...
15300 boxer41a Send Email Sep 2, 2009
7:14 pm
Okay, thanks. So is there a way to discover all the [dynamic] types that a system "knows" about without actually having hold of an object or a string...
15301 boxer41a Send Email Sep 2, 2009
7:16 pm
Is there a way to force the table to become filled with *all* types known to the system?...
15302 Chris Saunders
saunders7777 Send Email
Sep 2, 2009
7:51 pm
I'm going to include perhaps more code than is necessary here. I've been working fairly hard trying to find bugs in EiffelStudio 6.5. I've created two...
15303 boxer41a Send Email Sep 2, 2009
8:49 pm
Chris, I am by no means the expert that the ISE folks are but I am not busy right now so maybe I can help. I tried to recreate your problem from the files you...
15304 Chris Saunders
saunders7777 Send Email
Sep 2, 2009
9:38 pm
Thanks for the offer Jim. I would be glad to send the entire project but I would need your personal email as I can't send attachments through this group. My...
15305 peter7723 Send Email Sep 2, 2009
11:32 pm
... Just to make sure I follow you: For this error: ====================================== Error code: VEVI Error: variable is not properly set. What to do:...
15306 peter7723 Send Email Sep 2, 2009
11:42 pm
I also have a number of warnings involving assignment attempts in the library classes. I thought assignment attempt had disappeared. ...
15307 Emmanuel Stapf [ES]
manus_eiffel Send Email
Sep 2, 2009
11:50 pm
... That's correct. It will make your code compile, however your code won't run properly without those lines. I was merely showing that those two lines are ...
15308 peter7723 Send Email Sep 3, 2009
12:15 am
... Ah. So I need to wait for the solution. Peter Horan...
Messages 15279 - 15308 of 20471   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