| |
| |
| |
|
Page: 1 2 3 4 5
Comments:
<0> so no java underwear? <1> hmmm... i think duke doesn't wear one <0> i think there is a big market for java underwear <1> really? <0> yes <1> hmmm... <1> why do you think so? <0> i know so...im looking for it right now... <1> oh.. you don't have underwear right now? <0> if a woman told me she was wearing java underwear, id buy her a beer <1> oh <0> i have non-java underwear <1> how does it look? <0> are u being a pervert? <1> does it just have the java logo on it? <1> nope
<0> no...its a non-java underwear <1> i mean the design of the java underwear <0> the coffee cup with smoke swirl would be just fine....i was never into duke too much myself <1> does sun have plans to open a market for lingeries? <0> is there a logoware store for geeks? <1> not that i know <0> sigh <0> thanks anyway <0> cheers <1> hmmmm... java underwears for giveaways during sun events... :) <2> morning <3> morning <2> hi dean <2> o <2> :P <4> Nope not morning yet. <5> hehe, congrats with the channel registration ;) <5> hey blackie ;) <6> !tutindex yura <7> yura: Quickly locate information about your topic of interest in the *big* tutorial index: http://java.sun.com/docs/books/tutorial/reallybigindex.html <6> erh, moin yura i mean :) <8> hehe <8> moin moin. <6> hi revenger <5> ;) <5> Clackwell: haven't seen you in ages, how's it going / <6> yura: things are coming back together again. job was fine, but ex co-worker moving in with ex girl friend really wasn't good for my mental health. :> <5> hehe =) yeah, that happens.. =) <6> yura: fortunately he left the company. from then on things went upwards again. :) <6> yura: well...some people don't understand how that can affect you. which makes you feel even more like an idiot. <6> yura: how about you? <5> doing PhD in math & theoretical physics, working as a senior dev. at a company, it's cool <6> yura:' where are you located these days? <5> I can totally understand re the co-workers, that can be really devastating <5> Clackwell: same ol' Moldova ;) <5> although I'm planning to move <5> will have to find a company willing to hire me and get the heck out of this country %) <6> yura: What kept you? <5> Clackwell: my indecision re what to do physics || CS ;) <5> at the moment I'm sort of doing both :) <5> although I've lived for a while in the Netherlands ;) <6> yura: ok. but you'll stay in the software world, aren't you? haven't heard of a single soul to leave it for good. ;) <6> (broke "losers" aside) <5> Clackwell: well, my PhD thesis is quantum information/quantum computers related ;) <5> Clackwell: any good IT companies in .de worth applying to ? <6> pah :) <6> +e <6> well...i am about to hop off for w while. <6> collected myelf one of these busy sundays, instead of a lazy one. <5> Clackwell: well, most certainly if we'll be able to cope with 30+ qubits (i.e. control them in a time long enough to be able to compensate decoherence) then you'll at least get a computer that can do fast fourier transforms, search through db records and finding the prime factors =) <6> once google applies the technology they'll rename to Quugle i guess :) <6> well, off i am, bye bye, see you soon yura. bye revenger <5> see you ;) <5> have fun <8> laters. <9> does any of you tried using soap before? <10> yep <9> have you tried c# as a client and java as the server for soap?
<10> is not so important is it C# or java or php ... on client or server side ..... <10> try to use Apache Axis <9> okies.thanks <11> how can i get the value of a txtfield <11> whats a concat? <12> iMar|OWNED: typically a dog. <12> iMar|OWNED: or a 300lbs guy in a furry suit. <11> huh" <2> hey wlfshmn <11> how can i get the value of a txtfield <11> str1=txfd1.getText(); <11> is this okj? <11> ok? <2> iMar|OWNED - look in the API's : http://java.sun.com/j2se/1.5.0/docs/api/java/awt/TextField.html <11> oh <11> thanks <11> how can i disable the scroll bars of a textarea? <11> can we use an array of textfield? <11> like private TextField txfd[100]; <13> Sure, why not? <13> Well, not like that, but yeah you can have an array of them. <13> How would you write an array of int? Just do the same thing but change it into TextField... <11> ah okiez <11> thanks dave-e <14> just remember that when you've decalred your array, you'll still need to initialise it <11> all of them? <11> so i can use loop in initializing all of them to make it easier <14> yeah. And yes, ,using a loop to initialkise works well <11> ah okiez <14> Textfield txfd[]; txfd=new TextField[100]; // this does not create any TextFields, only 100 new references to TextFields. You have to create the new objects as well <14> umm, just ignore the syntax error there <15> hi <14> ho <16> Hi guys... Good to see things have returned to their normal self. <2> hey Lion-O <11> so you cant declare like int x[100] <11> but its ok int x[] <15> yep <16> You guys probably already know about this one but... I like this video: http://www.youtube.com/watch?v=zH30MOZH1i4. "Java is everywhere" <11> time[x]= Integer.parseInt(txfd1.getText()); <11> is this ok? <16> depends. ok in what way? Solely looking at the syntax it looks ok (how about simply testing this for yourself?) but there is no telling if this will work. <15> int[] x = new int[100]; <15> means an object reference of type; array of ints, called x is now points to a new 100 element array of ints <17> time[x]= Integer.parseInt(txfd1.getText()); <17> why wouldnt this run? <17> private int time[],x=0,y=0; <15> what was the error <17> null pointer xcemption <15> did you instantiate time[] ? <15> I guess not <17> yah <17> i 4got <17> :D <15> see what I posted before <17> yah2x <14> "4got"? *shudder* <14> it gets worse <17> sory <17> i aint that good <15> please make some attempt at english, this kiddie net nonsense is tedious <17> sory <12> "sorry" <14> "2b r !2b, that is the ?" /me prepares to puke <15> imar [13:30] <15> int[] x = new int[100]; <15> pvt msg me again and I'll stop replying, please read the topic <18> Hey guys, I have a newbie'ish question. what does the compiler mean when it says "illegal start for expression"? Never heard that one before. <15> it came accross a start of expression (when parsing) that isn't legal <18> ooooh <14> generally it's because you forgot a } somewhere <15> you may be missing ';' or'{' or '}' but many other poor syntax cause this <18> and that's exactly what it was, i forgot the semi colon... thanks guys <15> yw
Return to
#java or Go to some related
logs:
jeromedeperlinghi fah_q
#php ubuntu mobilepre #MissKitten serious53 #c #linux configure: error: no acceptable C compiler found in $PATH install apache Alcatel nss switch
|
|