cannot resolve symbol

Hello, i'm creating Employee Browser Applet

i have 4 imports

import java.applet.*;

import java.awt.*;

import java.awt.event.*;

import java.sql.*;

then in public class EmpBrowser i have

TextField theStatus = TextFileld(64);

JDBC02 theDB = new JDBC02(theStatus);

and its giving me 2 errors about JDBC02, cannot resolve symbol.

and anyone please help.

thanks

Mohammad

[447 byte] By [MWAHEEDa] at [2007-9-27 6:36:26]
# 1

replace

TextField theStatus = TextFileld(64);

by

TextField theStatus = new TextField(64);

And what is JDBC02 ? If that is a custom class of yours, then it must be in the same package as your EmpBrowser class... If it is a class from Java's API.. then you must import the package into which that class is ...

Dalzhima at 2007-7-8 9:17:59 > top of Java-index,Archived Forums,New To Java Technology Archive...