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 18546 - 18576 of 20470   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
18546 Thomas Beale
twbeale Send Email
Jun 15, 2011
9:22 pm
* * I have been messing around with the docking libraries, using the examples in EiffeStudio examples directory. Things I have not managed to work out, if...
18547 明
larryliuming Send Email
Jun 16, 2011
6:48 am
Hi, Thomas, ... To maximize editor area, you could use {SD_DOCKING_MANAGER}.maximize_editor_area. To restore editor area, you could use...
18548 Gerrit
gerrit_leder Send Email
Jun 16, 2011
8:44 am
Just to make it complete: I have trouble with precompiled library under Linux as well :-( But I will try the solution for windows, soon. Thanks to Manu! In...
18549 rfo@...
roger.osmond Send Email
Jun 16, 2011
2:45 pm
Hi All Please forgive my ignorance, but I just realized something that's a bit usettling. When I use the following construct: sa: ARRAY [STRING] create...
18550 Gerrit
gerrit_leder Send Email
Jun 16, 2011
4:55 pm
Now I got everything fine: -Linux error was due to switching sources between linux and windows, had to edit project settings -Windows estudio is now installed...
18551 Emmanuel Stapf [ES]
manus_eiffel Send Email
Jun 16, 2011
6:03 pm
... The implementation of `make_filled&#39; was conceived for efficiency and for void-safety. If the implementation of `make_filled&#39; had to create a copy of the...
18552 rfo@...
roger.osmond Send Email
Jun 16, 2011
6:18 pm
Hi Manu I guess it comes as no surprise that the reasons for this are well considered. I too thought that a make_filled_with_agent or some equivalent would be ...
18553 David Jenkins
djenkins99a Send Email
Jun 16, 2011
6:25 pm
There is a potential 'gotcha&#39; in the way it's implemented now. Taking your example and extending it: sa: ARRAY [STRING] ..... create sa.make_filled ("",1,10) ...
18554 Peter Gummer
peter_gummer Send Email
Jun 16, 2011
11:01 pm
... Manu, does this really put a new string object into each element of the array? I thought that writing "" in Eiffel code was considered bad practice because...
18555 Emmanuel Stapf [ES]
manus_eiffel Send Email
Jun 16, 2011
11:20 pm
... In general putting a manifest string in some code is not good indeed, it is usually better to use a constant. But in this case since it is going to be ...
18556 Peter Gummer
peter_gummer Send Email
Jun 16, 2011
11:38 pm
... Thanks, Manu, that is good to know. No, I wasn't getting confused with the 'once' notation, which I have never used with strings. My confusion is based on...
18557 Emmanuel Stapf [ES]
manus_eiffel Send Email
Jun 17, 2011
4:23 am
... It is true that there were some confusions in the pre-ECMA days and this is why in ECMA we made it clear that a manifest string yields a new instance and a...
18558 Emmanuel Stapf [ES]
manus_eiffel Send Email
Jun 17, 2011
4:41 am
Hi Seref, Thanks for bringing this up. OpenCL is actually quite different from SCOOP or threads for that matter. Nevertheless this is a technology we could...
18559 Gerrit
gerrit_leder Send Email
Jun 17, 2011
10:24 am
Hello, I am doing scoop right now. My program works as non-concurrent as follows: - generate strings by brute force (folds) - use generated strings to...
18560 Hal Webre
halwebre Send Email
Jun 17, 2011
2:50 pm
Hello Gerrit, ... particularly on "c.compute(i)". This is a "separate"; call ... that is, it is a feature call on an object "c" with a separate type. Separate...
18561 Gerrit
gerrit_leder Send Email
Jun 17, 2011
3:17 pm
I know what you mean... but still no compiler error with scoop enabled. I will have to write an enclosing_compute (c : separate COMPUTE; an_i : separate...
18562 Hal Webre
halwebre Send Email
Jun 17, 2011
4:20 pm
The "Concurrency&quot; setting requires a clean compile if changed (See: http://docs.eiffel.com/book/eiffelstudio/clean-compile ). If you haven't done a clean...
18563 Alexander Kogtenkov
kogtenkov Send Email
Jun 18, 2011
8:36 am
... According to http://docs.eiffel.com/book/solutions/scoop-practical-matters after changing the concurrency setting to SCOOP you need to perform a clean...
18564 Gerrit
gerrit_leder Send Email
Jun 18, 2011
10:32 am
Hello Hal and Alexander, what to do if "clean" is greyed out? I removed EIFGENS by hand but still no compilation: errors VEVI and VD83 Furthermore there seems...
18565 Gerrit
gerrit_leder Send Email
Jun 18, 2011
11:50 am
Got it "clean" now. Had to copy and paste into a new project... And have no errors in example project as posted before! No enclosing_compute necessary! And all...
18566 Hal Webre
halwebre Send Email
Jun 18, 2011
2:24 pm
Hi Gerrit, ... The compile fails with VUTA(3) I will send you a zip file with the system (in a direct email ... cannot use attachments on this list) Hal...
18567 Thomas Beale
twbeale Send Email
Jun 23, 2011
12:01 am
* * I asked this once before and Roger answered that I should use pointer_button_press_actions.... which is fine - the handler procedure type indicates which...
18568 Peter Gummer
peter_gummer Send Email
Jun 23, 2011
12:20 am
... I assume from the above question, Thomas, that you have successfully got the context menu popping up when the user presses down on the right mouse button,...
18569 Thomas Beale
twbeale Send Email
Jun 23, 2011
7:02 am
... close... the context menu does indeed show on right button down. The problem is that the node on which I press it may not yet be 'selected&#39;. Currently...
18570 Thomas Beale
twbeale Send Email
Jun 23, 2011
7:42 am
I forgot to mention that the context (right click) menu I have working now is created by these lines: node.set_configurable_target_menu_handler (agent ...
18571 Thomas Beale
twbeale Send Email
Jun 23, 2011
9:27 am
* * In my app I want to do more or less what Eiffel Studio does: if the user creates a new editor, it gets created and docked to the right of the existing...
18573 Thomas Beale
twbeale Send Email
Jun 23, 2011
3:24 pm
I have a docking area populated with at least one Editor tool of my own. I would expect the following to maxmise the editor within the container: docking...
18574 Chicago
lindevel Send Email
Jun 28, 2011
5:40 am
Will be any materials (presentarions in pdf, videos e.t.c.) available? -- View this message in context:...
18575 Jonathan S. Ostroff
eiffelspec Send Email
Jun 29, 2011
1:25 am
I second that. I am not able to attend but am very interested in viewing the proceedings in as much detail as possible. Jonathan ... From:...
18576 Thomas Beale
twbeale Send Email
Jun 30, 2011
4:34 pm
we had a very successful workshop. The outcomes / report etc are being put together on this page <http://netc.se.inf.ethz.ch/bin/view/Main/WorkshopWriteUp>and...
Messages 18546 - 18576 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