Forum: Java Jul 3rd, 2009 |
| Replies: 10 Views: 1,094 |
Forum: Java Jul 1st, 2009 |
| Replies: 10 Views: 1,094 |
Forum: Java Jul 1st, 2009 |
| Replies: 10 Views: 1,094 does this mean that in my jbutton
i will place there
new mainFrame(Passing the panel);
?? |
Forum: Java Jul 1st, 2009 |
| Replies: 10 Views: 1,094 got the removing.. but my main problem is how to add my panel 1 to the main frame if click the button from panel 2? |
Forum: Java Jun 30th, 2009 |
| Replies: 10 Views: 1,094 my problem is i want to add panel 2 and remove panel 1 when i click the button from panel 1
and vice versa. |
Forum: Java Jun 30th, 2009 |
| Replies: 10 Views: 1,094 hi im new to java and im learning about how to add/remove panels from another panel...
This is my main frame
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class... |
Forum: Java Jun 21st, 2009 |
| Replies: 3 Views: 681 |
Forum: Java Jun 21st, 2009 |
| Replies: 3 Views: 681 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... |
Forum: Java May 6th, 2009 |
| Replies: 1 Views: 231 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... |
Forum: PHP Jan 28th, 2009 |
| Replies: 1 Views: 285 i really can figure out how pagination works..
suppose i have 2 files ok.php and pagin.ph
ok.php containts some details.
<?php
echo date("Y/m/d");
echo "<br />";
echo date("Y.m.d");
echo... |
Forum: Visual Basic 4 / 5 / 6 Nov 14th, 2008 |
| Replies: 2 Views: 692 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 |
Forum: C May 19th, 2008 |
| Replies: 17 Views: 1,508 |
Forum: C May 19th, 2008 |
| Replies: 17 Views: 1,508 can you named me one..coz i dont know any other compiler... all i know is c language...
is there another compiler that is just same as c? |
Forum: C May 17th, 2008 |
| Replies: 17 Views: 1,508 Ok Then Ill try other function.
Yes i am using Turbo C.. |
Forum: C May 17th, 2008 |
| Replies: 17 Views: 1,508 but is there another way to change directory or open executable files in a particular place using c? |
Forum: C May 17th, 2008 |
| Replies: 17 Views: 1,508 FILE *fp=fopen("c:\\documents and settings\\test.txt","w");
How come i cant make file in Documents and Settings also in Program Files
But if ill just simple place
FILE... |
Forum: C May 17th, 2008 |
| Replies: 17 Views: 1,508 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... |
Forum: Java Jan 8th, 2008 |
| Replies: 6 Views: 14,565 class SortArray
{
public static void main(String args[])
{
int arr1[] = {11,15,8,9,3,6,10,12,5,1,2,13,4,7,14};
for (int i=0;i<arr1.length;i++) System.out.println(arr1[i]);
for(int... |