[Factor-talk] IDE news

2012-03-15 Thread Michele Pes
the latest beta. http://www.uvviewsoft.com/synwrite http://www.uvviewsoft.com/synwrite/ michele pes -- This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d

[Factor-talk] Listener tuple display

2012-01-11 Thread Michele Pes
that I see in all (???) tuples . Can someone explain me its meaning? Thank you all, michele pes -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver

[Factor-talk] More than one obj quot recovery

2011-12-05 Thread Michele Pes
n input from stack? Thank you all, michele pes -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity

Re: [Factor-talk] some questions

2011-11-03 Thread Michele Pes
) { if (n != 5) f(); } what is f prototype ? :-) Michele Pes On 03/11/2011 16.46, Arkady Rost wrote: Hi! I have two questions. 1) How to declare a stack effect for such function? : foo ( ?? -- ??? ) dup 5 = [ ] [ drop foo ] if ; inline recursive 2) How the word with-compilation

[Factor-talk] Strange xml error

2011-10-04 Thread Michele Pes
(???) column. Thanks to all, michele pes ?xml version=1.0? father attr=AttrText sp:sonSon content/son empty-son1/empty-son1 empty-son2/ empty-son3 /empty-son3 n1 attr1=AttrText1/ n2 attr2=AttrText1/n2 /father -- All

[Factor-talk] conditional combinator proposal

2011-09-30 Thread Michele Pes
this can be interesting? thank you all, michele pes -- All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent

[Factor-talk] Editor trouble

2011-09-26 Thread Michele Pes
, and user can write as much as he wants. What I'm missing this time? Second question: Is there a way to make a border appear around an editor widget? Thank you all, michele pes -- All the data continuously generated in your

[Factor-talk] checkboxes orientation variant

2011-09-20 Thread Michele Pes
Thank you very much Jon! Now I master checkboxes (ah aha h) What do you think about this version? : my-checkboxes ( alist orientation -- gadget ) pack { 15 10 } gap swap [ swap checkbox add-gadget ] assoc-each ; michele pes On 20/09/2011 14.54, Jon Harper wrote: When you write

[Factor-talk] Unlucky experiment

2011-09-16 Thread Michele Pes
much, michele pes USING: kernel accessors namespaces models ui ui.gadgets models.arrow ui.gadgets.packs ui.gadgets.buttons ; FROM: system = exit ; IN: gui SYMBOL: var var off pile { 10 10 } gap t model [ dup var set ] arrow Enable QUIT checkbox add-gadget Quit [ drop var get [ 0 exit

Re: [Factor-talk] Unlucky experiment

2011-09-16 Thread Michele Pes
On Fri, Sep 16, 2011 at 3:23 PM, Michele Pes mp8...@rambler.ru wrote: Hi to all factorers! I was trying to develop a trivial gui example. Of course my code is bugged but when I execute this 6-line script the listener kill immediately. 1) Can you tell me how to avoid this? 2) Can you tell me how

Re: [Factor-talk] Unlucky experiment

2011-09-16 Thread Michele Pes
for the listener to close, that's what exit does. If you just want to close the created window, use to close-window word: http://docs.factorcode.org/content/word-close-window,ui.html Jon On Fri, Sep 16, 2011 at 4:30 PM, Michele Pes mp8...@rambler.ru wrote: Thank you Joe! I'm so curious to see your

[Factor-talk] Tooltip trouble

2011-08-23 Thread Michele Pes
you all, michele pes -- Get a FREE DOWNLOAD! and learn more about uberSVN rich system, user administration capabilities and model configuration. Take the hassle out of deploying and managing Subversion and the tools

Re: [Factor-talk] Errata

2011-07-28 Thread Michele Pes
Thank you very much John! Running the script didn't showed the errors I found in the listener (as you mentioned). Now I solved both development and deployment! Best regards, michele pes On 7/27/2011 9:18 PM, John Benediktsson wrote: Hi Michele, Below is a file copy program that can

[Factor-talk] Deployment options

2011-07-27 Thread Michele Pes
Hi factorers, I'm now trying to deploy this mini factor script. I tried with all supports enabled but no way. What are my errors? thanks in advance, michele pes USING: kernel sequences ; FROM: namespaces = get ; FROM: command-line = command-line ; FROM: io = write ; FROM: io.files = exists

[Factor-talk] Errata

2011-07-27 Thread Michele Pes
Hi, xml-validator now correctly deploy, excuse me for trivial error. File copier correctly deploy, but immediately exit with a run-time error. When I run it as script, no errors are shown. Please help, michele pes -- Got

[Factor-talk] deploy trouble

2011-07-26 Thread Michele Pes
Hi factorers! I want to use my factored file-copier in my MS vista, but when I deploy with the deploy-tool, it aborts (die was called by library... please report), and the listener hangs. Can someone tell if can get exe from this source? thanks, michele pes USING: kernel math sequences

[Factor-talk] Method overriding syntax in hierarchy

2011-07-24 Thread Michele Pes
Hi factorers! I'm new to factor, but very interested. I have a tuple A, and a tuple B that derives from A (B A) If both have a method f and I have an instance of B, how can I call the method of the parent (A::f in c++ syntax) ? Thanks in advance michele