Search the web
Sign In
New User? Sign Up
curlbreaker-l · The Curl Dev. list --> curlbreaker-l
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 615 - 644 of 1161   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
615
That's really cunning, Chris!!! Great! Friedger...
F Muffke
friedger
Offline Send Email
Mar 1, 2002
10:37 am
616
Good to see a different point of view. I really didn't know what to make out of the press article. It's also relieving to hear that funding for the next two...
F Muffke
friedger
Offline Send Email
Mar 1, 2002
10:46 am
617
Something like the following untested code might also work: let p:Package = {OpenPackage CURL.IMPLICIT.APPLET} ... {evaluate package = p, ... ...
Howard Stearns
stearns@...
Send Email
Mar 1, 2002
3:12 pm
618
This would certainly work (and is much shorter / simpler). I just wanted to show how you could do something "interesting" with the call to document-style...
Aaron Orenstein
aorenste@...
Send Email
Mar 1, 2002
4:17 pm
619
hi everyone, we tried to browse an applet from local web server to test shared data capabilities. Applet's Url is "http://my-webserver-ip/MyApplet.curl; ...
luiginoto
Offline Send Email
Mar 6, 2002
5:04 pm
620
It's about the curlexamples nr 154: http://www.curlexamples.com/category.php?example_id=154 Does anyone have an idea why the disabled frame appears slightly...
friedger
Offline Send Email
Mar 7, 2002
11:51 am
621
http://www.curl.com/html/about/pressreleases.jsp?id=333...
Joseph Golden
joe@...
Send Email
Mar 7, 2002
2:46 pm
622
Hi Friedger, The problem is that the frame self.f is not being aligned to the top, left of the disabled frame. If you put the following code in the constructor...
David Goldberg
daveg@...
Send Email
Mar 7, 2002
11:19 pm
623
Hi, I tried this and I don't see any problem sharing data. Try removing the max size from your pdi file all together and see if that fixes it. If not maybe you...
David Goldberg
daveg@...
Send Email
Mar 8, 2002
2:53 am
624
Hi Alex, I can't think of any way to do this. Maybe someone else has an idea. Is there a reason why you need to use a CommandButton? Would it be possible to ...
David Goldberg
daveg@...
Send Email
Mar 8, 2002
1:07 pm
625
Hey all - Any idea why the DropdownList in this example is so much higher (vertical) than the TextField? Thanks ... {curl 1.7 applet} {applet license =...
Brent Young
tri_brentyoung
Offline Send Email
Mar 8, 2002
10:19 pm
626
When I have a class that I am import, I get an access error -- only if that class has a constructor. If I lose the constructor, it works fine. Additionally, if...
curlobserver
Offline Send Email
Mar 9, 2002
3:37 am
627
Sure - add the protection modifier "public" to the constructor too and you'll be rocking. {constructor public {default} } Cheers, Brnet ... -- ... Brent A....
Brent Young
tri_brentyoung
Offline Send Email
Mar 9, 2002
3:42 am
628
Thanks for the prompt response. That did it. However -- any guess why I get inconsistent results once the error is introduced? For instance, once I get the...
curlobserver
Offline Send Email
Mar 9, 2002
4:12 am
629
Interesting - perhaps you need to check the checkbox "reload curl packages and web .." under the "preferences" tab on the surge lab control panel (right click...
Brent Young
tri_brentyoung
Offline Send Email
Mar 9, 2002
4:20 am
630
My understanding is that if you tell Surge to reload packages it actually takes 2 reloads of the applet to purge it from memory. The first time, the applet is...
David Goldberg
daveg@...
Send Email
Mar 9, 2002
3:19 pm
631
... the max ... We've changed curl-access.txt file into version: 2.0 allow-all: & it worked so well. We can let repository size to be more than 16k, even if...
luiginoto
Offline Send Email
Mar 10, 2002
2:59 am
632
Hi everyone, we was trying to set up a module to manage a message-based comunication between applets on a web site, & we've used TimerEvent to let my manager...
luiginoto
Offline Send Email
Mar 10, 2002
1:52 pm
633
Brent, The vertical origins of those controls are not at the same point. Try this: {TextField vorigin = "top"} {DropdownList vorigin = "top"} or some other...
David Goldberg
daveg@...
Send Email
Mar 11, 2002
4:42 pm
634
Hi, Is the exception handler ({self.log.add "comunication-manager: Exception"}) being executed? If so, you may want to print out what that exception is, like ...
Brent Young
tri_brentyoung
Offline Send Email
Mar 11, 2002
5:18 pm
635
It looks as if it is not possible to use packages written with a different API version than the applet. How would you maintain the packages? What's about ...
Mueffke
friedger
Offline Send Email
Mar 11, 2002
5:40 pm
636
Hey all - I'm creating a popup window that changes it's size while the user is entering information into it (hence I need the window to be able to resize while...
Brent Young
tri_brentyoung
Offline Send Email
Mar 11, 2002
8:07 pm
637
Brent, Can't you just put your Dialog inside a View and call set-size-from-child on the View whenever the Dialog size changes? -- Dave ... Hey all - I'm...
David Goldberg
daveg@...
Send Email
Mar 11, 2002
8:30 pm
638
Yep - but the View isn't modal then. Can I make the View modal? Cheers, Brent ... -- ... Brent A. Young Software Engineer, Technology Evangelist Curl...
Brent Young
tri_brentyoung
Offline Send Email
Mar 11, 2002
8:48 pm
639
Gotcha. I don't know if there is a direct accessor for the View of a Dialog but this will work: {value let d:Dialog = {Dialog {bold This is some text} } ...
David Goldberg
daveg@...
Send Email
Mar 11, 2002
9:22 pm
640
... There are currently no plans to support mixing of Curl API's within the same applet. There are a number of reasons for this, but it basically boils down ...
Christopher Barber
cbarber@...
Send Email
Mar 11, 2002
9:58 pm
641
... {CommandButton label = "open", {on Action do let d:Dialog = {Dialog} let vbox:VBox = {VBox {CommandButton label = "add one", {on Action do {vbox.add...
Brent Young
tri_brentyoung
Offline Send Email
Mar 11, 2002
10:25 pm
642
I put curl tags in a JSP file. But once the generated code is served I don't see the Surge Lab control panel being launched. I am using IBM WebSphere and IBM ...
Kaushik Datta
kaudata@...
Send Email
Mar 12, 2002
4:22 pm
643
Hello Kaushick, Try this, add to the .htaccess file of your server the following lines: text/vnd.curl curl application/vnd.curl.pcurl pcurl ...
Eric Wehmeyer
ewehmeye@...
Send Email
Mar 12, 2002
4:32 pm
644
Hi Luiginoto, You're not doing anything wrong. Turns out there is a bug in CSPD where it will cache any data which is read. There isn't any way to have the...
David Goldberg
daveg@...
Send Email
Mar 12, 2002
6:09 pm
Messages 615 - 644 of 1161   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