Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for libran

I m trying this Java program which arranges members of array in an ascending order. The size of array is given by User (an int). I hav spent lot of time thinking abt its logic but didnt get thru. I am not using any readymade libraries and trying pure logic …

Member Avatar for stultuske
0
296
Member Avatar for cebubinary

hi im new to java and im learning about how to add/remove panels from another panel... [COLOR="red"] This is my main frame[/COLOR] [code=java]import java.awt.*; import javax.swing.*; import java.awt.event.*; public class DynamicFrame extends JFrame{ private JButton jb = new JButton("Remove"); private JPanel jp = new JPanel(); public DynamicFrame(){ jp.add(jb); add(jp); setVisible(true); …

Member Avatar for cebubinary
0
294
Member Avatar for cebubinary

Im just new in java and im trying to make a program that would copy a picture from a specified folder and paste it also to a specified folder. i know how to select the picture using the filechooser and my problem is how to copy it.

Member Avatar for vishal Thakare
0
95
Member Avatar for cebubinary

hi..i was wondering where to find a sample java code that splits an image and each image that was splitted can be click and link to another image...

Member Avatar for kvprajapati
0
54
Member Avatar for cebubinary

i really can figure out how pagination works.. suppose i have 2 files ok.php and pagin.ph ok.php containts some details. [code=php]<?php echo date("Y/m/d"); echo "<br />"; echo date("Y.m.d"); echo "<br />"; echo date("Y-m-d"); echo"<br/>"; echo date("h:i:s" ,time()); $i=0; $display = 25; while($i<10) { $x=0; while($x<$display){ echo "$x hello World <br/>"; …

Member Avatar for mr.khurrams
0
76
Member Avatar for cebubinary

Private Sub Command1_Click() Set rs1 = DB.OpenRecordset("Table1", dbOpenDynaset) If rs1.EOF = True Then MsgBox "Record is Empty" Else MsgBox "Got IT" rs1.MoveLast If Not rs1.EOF Then rs1.MoveFirst Do While Not rs1.EOF If rs1!Name <> "" And rs1!age <> "" Then Set rs2 = DB.OpenRecordset("SELECT Name FROM Table2 WHERE Name like …

Member Avatar for pnorten462
0
57
Member Avatar for cebubinary

HI guys. Im a student and studying c++ that and cmd and so far i stil havent figure out how to change my current dir while my program is running. My program is that i want to make a test.txt file with a "my test file" inside it , in …

Member Avatar for Nick Evan
0
247