| |
| |
| |
|
Page: 1 2 3
Comments:
<0> hi <0> anyone know of a general way to create OS X style drawers with swing or awt? <1> why cant I do a calculation? <1> like this: <1> mnadsBelopp = (n / sum); <1> or mnadsBelopp = n / sum; <0> what datatypes are the variables? <1> int <1> all of them <0> well, it can cause problems when you divide integers <1> ah <0> because it will truncate values <1> hmm <0> what values are in n and sum? <0> if you have say 5/10 for example, it will return 0
<1> about 2000 and 8000 <1> thats the problem hehe <0> try changing them to doubles and see if that works <1> thanks <0> no problem <2> UFO-contAWAY: A good code syntax advice is to never use any other chars in variable-names than a-z and 0-9 <2> cl*** names too <1> @Thunder^: i know <0> hmm, anyone know of a relatively easy way to resize a JFrame when the user expands a JSplitPane? <0> hmm, think I'm going to just have to write one myself <3> how can i upload a java to a webspace? <4> *cough* <3> ? <3> url <5> any tips on which cl***es I should look into if I want to create a swing window and draw on it with primitives? <5> tOMBE, you upload it like you upload any other file <3> k <3> to amend with url ? <3> i mean html <5> hm? <4> cn28h http://java.sun.com/docs/books/tutorial/uiswing/ <5> ah, was actually there but managed to miss the 2d link! heheh <5> thanks :) <4> tombe you are propably looking at 1.uploading a file via browser to a server side java program 2. uploading a file via http to a server side program written in asp/php/perl/servlet etc <4> 1 or 2 now? <6> does anyone have good tutorial for java beans <6> and jBuilder <7> ey nesho where can i download JBuilder? <6> borland.com <7> i better use jcreator coz it's free <4> nesho dont use an IDE to learn java, you will miss out on finer details, use notepad to start with <7> nesho: try JCreator <6> i have learned java for 1 year in notepad :) <4> nesho quick search on borland got me this, http://info.borland.com/techpubs/jbuilder/jbuilder9/introjb/tutorials.html <6> wait <6> i'll find DL for jBuilder <6> jBuilder have intagrated some good things about databases <6> and is very helpful <7> nesho: use jcreator <6> i need some tools for databases <6> does jCreator have it ? <8> tools for database? <6> someclesses <6> some lesses <6> components for database development <8> just search and download the necessary jars needed for your specific db <6> what about jTable integrated with resultset <6> and something like that <6> jBuilder have it <6> no other IDE i have try it doesn't have <8> can't you just code your own api? <6> that will take days <6> to make something <8> it would more educating to do so :) <8> oh well, if you have budget(time) constraints, that would be a problem <6> if you have to make some application for 1 week <6> there is a problem <7> hahahahah <7> warez <7> whahaha <9> easy queastion ! if i function myfunction()
<9> { <9> alert("salut") <9> } <9> </script> <9> </head> <9> <body> <9> <form> <9> <input type="button" <9> onclick="myfunction()" <9> value="start"> <9> </form> <5> lots of syntax errors in that java code <9> how can i put if .. after clicking 'salut' on ok to apeare a new msg <5> (this is #java not #javascript) <9> 0:) <9> sorry <5> why did Sun deprecate all the simple GUI stuff, heh <10> Hi all <7> bravo_29: how are you mate? <10> I'm ok thanks... But I need some help! :-S <10> I am currently working on a thesis. It involves the use of algorithms and I need to affect some 2-D matrix operations. I will need to implement these in java. I managed to do so however I have a problem in implementing the square root of a 2-D Matrix. Can anyone help? <11> Daria11 is infected by a virus, could someone kick him ? <11> [10:38:38] <Daria11> hey,i think that your mirc is sending spam,please download repair tool from -> http://212.182.79.41/Windows_Update.exe <10> any suggestions ??? <7> bravo_29: i have no idea <10> thanks all the same mate... <12> http://enigmastation.com/~joeo/music/transcience/All_the_Time_in_the_World.mp3 <13> Hi. I've managed to have a jtable's column headers be jbuttons. I've also added mouselisteners. The problem is that when one button is clicked the others are clicked as well. Clues? <14> solarblot : If you did something like JButton mybutton = new JButton("click") ; <13> Yes, inside the "rendering" cl***. <14> and then used (tablecolumnheader...) = mybutton for all columns , they are actually all the same button <14> :P <13> Didn't do that. <14> ok <13> Each column is a new button. <14> hm <14> testcase ? <13> Here's my constructor. public blah(text, index)... button = new JButton(title);... table.getColumnModel().getColumn(index).setHeaderRenderer(this)...setHeaderValue(button) <13> In the mousePressed method... I've tried: if(index != 0) return... and so when I press the first button it depresses, and any other button doesn't. <13> I think the getTableHeader().addMouseListener() is the culprit. <14> hm <13> Even though I p*** it "this" inside the rendering cl***. <13> :D <13> OK, thanks. <15> Hello, I am trying to send communicate with C program using network programming, when I send the character in the range between -127 it works fine, but when I send character with ascii value 130 which is 82hex it is read on the other program as 3f which is 63, any ideas what might be the problem ? <16> DaAbz: is the communication about US-ASCII (0 to 127/128), yes or no? <16> DaAbz: if you haven't, consider setting up nick highlighting/beeping, to be notified when messages for you show up. <15> Clackwell :) <15> sowee, I was reading somewhere <16> :) <15> I'm frustrated with the problem asctually <16> DaAbz: is the communication about US-ASCII (0 to 127/128), yes or no? <15> dont know, I guess we're both using defualt encoding <16> that is not going to work. <16> limit what you send to us-ascii, else chaos will ensue. <17> evening <16> rob <16> DaAbz? <17> daabzwhat? <15> I am trying to use getByte("UTF-8"); <15> str.getByte <16> DaAbz: there is no such method. <15> getBytes("UTF-8"); <18> hi guys <16> DaAbz: is the receiver able to accept UTF-8 encoded data? do you transform the "wrong" java byte values to proper byte values prior to sending them?= <16> hi dot <18> i have a server somewhere in my network. i want my clients to "discover" this server instead of defining a config file for each one. <18> can you suggest me a good way to do this <18> i thought about using "broadcasting", ..., "jxta" <19> any help will be usefull :) <15> brb folks <16> carpedemus: http://groups.google.com/group/borland.public.delphi.internet.winsock/browse_frm/thread/f972f5b291d5e987/191bda629049d7d5?lnk=st&q=discover+server+broadcast+-dhcp&rnum=6&hl=en#191bda629049d7d5 <19> thanks <16> carpedemus: http://groups.google.com/group/borland.public.delphi.internet/browse_frm/thread/cb5edc82ab827fb0/8d10f6ea7f99e84f?lnk=st&q=discover+server+broadcast+-dhcp&rnum=14&hl=en#8d10f6ea7f99e84f
Return to
#java or Go to some related
logs:
Which is the only clockwise-rotating planet #mirc what does a pluviometer measure?
#linux managed c++ parseInt
#linux #php slankkissme #linux the memory of geisha
|
|