Search the web
Sign In
New User? Sign Up
waterlanguage · Water Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 549 - 578 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
549
Or should they be called streams. :) Anyway I'm trying to add support for Threads to a Water application. My first thought is to define a method: thread, that...
jan_miller
Offline Send Email
Mar 1, 2004
5:30 pm
550
... In many ways, the threading model of languages such as Java, can easily introduce a lot of potential problems in software design. The actor model is an...
pluschli
Offline Send Email
Mar 1, 2004
5:57 pm
551
So I am working on an HTTP session tracking layer for Water. At the end of this post is part of the code I've been messing around with. I'm having a problem...
brianjlevine
Offline Send Email
Mar 4, 2004
9:55 pm
552
Brian, The major missing piece is that when you create an instance from a class, the data fields are not automatically copied down into the new instance. This...
pluschli
Offline Send Email
Mar 4, 2004
10:00 pm
553
Thanks! I tried to get <copy_down_data/> to work, but it always errors: Attempt to call an unknown method or object named: copy_down_data. It's called on ...
Brian Levine
brianjlevine
Offline Send Email
Mar 5, 2004
1:01 am
554
I am trying to redirect the output from my water application in to a text file.Can anyone let me know how to determine the current working directory in Water? ...
pamelamoats
Offline Send Email
Mar 5, 2004
5:54 pm
555
Pamela, You should be able tp do this to find the current working directory: <java_env />.<eval> System.getProperty("user.dir"); </eval> You could wrap it in a...
merrick_stemen
Offline Send Email
Mar 10, 2004
8:53 pm
556
I get this when I tried with the code you sent.Am I missing something like importing some files etc? Attempt to call an unknown method or object named: _eval ...
Pamela MOats
pamelamoats
Offline Send Email
Mar 10, 2004
9:21 pm
557
The eval function works when used as: <java_env/>.<eval> System.getProperty("user.dir");</> But still the above code points to the user's Desktop and not to...
Pamela MOats
pamelamoats
Offline Send Email
Mar 10, 2004
9:25 pm
558
system.logical_folders."logical://user/" Is this what you are looking for? _Merrick...
merrick_stemen
Offline Send Email
Mar 10, 2004
9:43 pm
559
I tried this too.. <file "logical://user/OUTPUT.txt" /> my output is written to a file present in the water default directory present in C:\Documents and...
Pamela MOats
pamelamoats
Offline Send Email
Mar 10, 2004
10:03 pm
560
I have a method-local variable that I want to increment: ... <set x=0/> <increment x/> ... This doesn't work since x is evaluated to 0 and then the increment ...
brianjlevine
Offline Send Email
Mar 18, 2004
1:15 pm
561
So, I want to store objects in an instance of "thing". I want to see how many items are stored in the instance. length returns the smallest unused integer...
brianjlevine
Offline Send Email
Mar 18, 2004
1:15 pm
562
Try <increment 'x' /> _Merrick...
merrick_stemen
Offline Send Email
Mar 18, 2004
5:12 pm
563
Hi, The below code creates a new txt file (the name of the file is same as that of the source file) in a directory where the source file is present. <set...
pamelamoats
Offline Send Email
Mar 18, 2004
6:07 pm
564
You could create a method in <thing /> called <num_fields /> thing.<insert <defmethod num_fields> <set a_total=0 /> _subject.<for_each> _parent.<increment...
merrick_stemen
Offline Send Email
Mar 18, 2004
8:42 pm
565
Call 'keys' on the object and then get the length. <Example result=2> <set some_thing=<thing 4="water" 10="steam"/> /> some_thing.<keys...
pluschli
Offline Send Email
Mar 19, 2004
5:04 am
566
do you know some basic examples tutorials to understand Water ?? i get the examples at waterlanguage.org , but didn't understand very well thank's [ é r i c ]...
[ é r i c ]
eric.lopes@...
Send Email
Mar 20, 2004
5:45 am
567
Eric, This message board is the best place right now to get your questions answered, but I went ahead and started to put a site together. I will be adding...
merrick_stemen
Offline Send Email
Mar 22, 2004
12:44 am
568
I have been mulling this problem for a while and finally smacked it out this afternoon from scratch after Vijaya Jonnalagadda contacted me again to ask about...
merrick_stemen
Offline Send Email
Mar 22, 2004
11:15 pm
569
Can any one let me know the usage of radio buttons /check boxes in Water? i.e.;to determine which option got selected at runtime etc.. Thanks in advance, Pam....
pamelamoats
Offline Send Email
Mar 25, 2004
6:14 pm
570
... <!-- Class to server a form with radio buttons and checkboxes --> <defclass myapp> <!-- Default method to display the FORM --> <defmethod start> <FORM...
merrick_stemen
Offline Send Email
Mar 25, 2004
8:14 pm
571
Hi Merrick, Could you also let me know how to make the controls on a form appear/disappear on a given event? Thanks. ... in ... etc.....
pamelamoats
Offline Send Email
Mar 25, 2004
9:59 pm
572
Pam, This sounds like you're going to need some Javascript to do what you want. There are a lot of pages out there with tutorials. Try Googling [javascript...
merrick_stemen
Offline Send Email
Mar 26, 2004
5:28 am
573
Hi, I heard of Water recently and I have been studying Water language for a few days. I was fascinated by an example code got from this message board (posted...
robin_williams123
robin_willia...
Offline Send Email
Mar 26, 2004
7:29 pm
574
Robin, There is an excellent small web server written in Java at: http://www.cafeaulait.org/books/jnp/javanetexamples/08/jhttp.java Compare that to this Water...
merrick_stemen
Offline Send Email
Mar 27, 2004
12:11 am
575
BostonWater User Group: Tuesday, March 29th, 2004 7:00pm Cambridge, Massachusetts near MIT Directions and details at: http://www.bostonwater.org/ Building...
pluschli
Offline Send Email
Mar 29, 2004
6:50 pm
576
Hi, I would like to know if there is a built-in function to split a string at a given delimeter... like for example a_string.<split "pamela/moats",'/'/> should...
pamelamoats
Offline Send Email
Apr 7, 2004
12:46 pm
577
Pam, Yep. "pamela/moats".<split "/" /> returns a vector like Java's split returns a String array. "pamela/moats".<split "/" />.0 gives me 'pamela'. ...
merrick_stemen
Offline Send Email
Apr 7, 2004
10:08 pm
578
<set a_string="pamela/moats"/> a_string.<split "/" /> --> <vector "pamela" "moats"/> This is from memory, but that's the basic idea. You pass split the...
Brian Levine
brianjlevine
Offline Send Email
Apr 9, 2004
11:48 am
Messages 549 - 578 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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