TAHA ALI

Greenhorn
+ Follow
since Jul 14, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by TAHA ALI

hi,
i m taha ali,
please any one help meee.
please any one give me the site of TomCat4.0 to download.
please give me the full link
20 years ago
hi,
please help me
i m taha ali
in which place i can download tomcat4.0.please send me the download link.
thank u
20 years ago
Hi,
I m Taha Ali
My question is that in which place i can download the TomCat .
please send me the Link
20 years ago
hi im taha ali
what is sevlets . please give me the code of servelets
20 years ago
hello,
my question is that What is Servelts?
20 years ago
hi,
i m TahaAlimy question is that what is synchronized..
20 years ago
hi,
please any one who give me the code of multy frames.
20 years ago
Hi,
I m taha ali .my question is that .Why java is important to the internet.
my other question is that in which place/site i download or install the jvm means Java Virtual Machine.
thanku
20 years ago
Hi,
I m taha ali .my question is that .Why java is important to the internet.
my other question is that in which place/site i download or install the jvm means Java Virtual Machine.
thanku
20 years ago
Hi,
when i compile this code which is given below.
it shows an error.
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class TextFieldDemo1 extends Applet implements ActionListener {
TextField name, pass;
public void init() {
Label namep = new Label("Name:", Label.RIGHT);
Label passp = new Label("Password:", Label.RIGHT);
name = new TextField(12);
pass = new TextField(8);
pass.setEchoChar('?');
add(namep);
add(name);
add(passp);
add(pass);
name.addActionListener(this);
pass.addActionListener(this);
}
public void actionPerformed(ActionEvent ae) {
repaint();
}
public void paint (Graphics g)
{
g.drawString("Name: " + name.getText(),6, 60);
g.drawString("Selected text in name" + name.getSelectedText(),6, 80);
g.drawString("Password " + pass.getText(),6, 100);

}
}
20 years ago
how i creat a xls File in Frame.& the other question is that how i creat a Library System in Frame
20 years ago