Java Tools FAQ Section Index | Page 7
Where can I learn (more) about Application Servers?
Check out the jGuru AppServer
FAQ.
Where can I learn (more) about Java Applets?
Check out the jGuru Applets
FAQ.
Where can I learn (more) about Java's AWT (Abstract Window Toolkit)?
Check out the jGuru AWT FAQ.
Where can I learn (more) about jGuru and how it works?
Check out the jGuru Site FAQ.
Where can I learn (more) about the ANTLR lexer and parser generator?
Check out the jGuru ANTLR FAQ.
How can I prevent the user from bringing up the browser's popup menu?
For Internet Explorer, the following code will prevent the popup, displaying an alert popup instead.
<script language="JavaScript"><!--
function click() {if (event.button==2) ...more
How can I develop secure Microsoft ASP-based solutions?
(A) Don't use ASP (and don't use Microsoft's IIS). Ugh.
(B) Check out Microsoft's
IIS checklist.
(C) Check out Jerry Connolly's
ASP Security page.
more
Where can I find J2ME development tools?
The J2ME Archive links to J2ME development tools, including SDKs, IDEs, emulators, and utilities.
SDKs, IDEs, and emulators are listed under:
www.billday.com/j2me/index.html#SDKs
Other tool...more
My program works fine from winNT and on the AS/400 using the Toolbox driver( com.ibm.as400.access.AS400JDBCDriver). However, it doesn't work using the native driver (com.ibm.db2.jdbc.app.DB2Driver). What did I miss?
Toolbox driver vs native IBM driver
My program works fine from winNT and on the AS/400 using the Toolbox driver( com.ibm.as400.access.AS400JDBCDriver). However, it doesn't work using the native dr...more
How can I restore a non-versioned class (or method or package or Project) that I have deleted? I've looked through the repository, but can't find it there.
How does the repository/workspace combination work?
The repository/workspace relationship is a database/view relationship. The
repos is the database where all source code is stored, including all versions of
all methods, classes, packages, and Pro...more
How can I integrate Java with GNUStep?
Check out the Java Interface for GnuStep package. It's uses JNI (v1.2) to integrate with GNUStep.
How can I integrate Java with Objective-C code?
Check out the Java Interface for GnuStep (JIGS) package.
Are there any resources available to help me convert a PowerBuilder application into Java?
Read Converting PowerBuilder to Java.
Why can't I set breakpoints in some constructors?
VAJ generally supports setting breakpoints in constructors, but there are some situations where
it will refuse to set a constructor breakpoint on the exact line you want, or even at all.
The most ...more