Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. andypara

    Random Class

    Can some one tell me why the following code :- class ArrayBasics { public static void main(String args[]) { int dynamicMulti[][]; dynamicMulti = new int[3][7]; for (int i = 0; i < dynamicMulti.length; i++) { for (int j = 0; j <...
  2. andypara

    Simple window closing problem

    All I want to do is create a JFrame with one JButton. This I can do. When the button is pressed I want another JFrame to open. This I can also do. However, when the new window opens I want the old window to dissapear. I'm having real trouble with this and I would appreciate it if some one could...
  3. andypara

    Really simple window closing problem.

    All I want to do is create a JFrame with one JButton. This I can do. When the button is pressed I want another JFrame to open. This I can also do. However, when the new window opens I want the old window to dissapear. I'm having real trouble with this and I would appreciate it if some one could...
  4. andypara

    Using setVisible(false) for another JFrame in a nested class.

    Still doesn't compile. M:\java\JAVASW~1\LunarPhases.java:150: cannot resolve symbol symbol : variable lunarPhasesFrame location: class LunarPhases.ButtonHandler lunarPhasesFrame.hide(); ^ 1 error
  5. andypara

    Using setVisible(false) for another JFrame in a nested class.

    Here's the code in it's most simplistic way:- //v 1.3 import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.net.URL; // This example demonstrates the use of JButton, JTextField // and JLabel. public class LunarPhases implements ActionListener { JPanel mainPanel...
  6. andypara

    Opening a new frame whilst closing the frame used to open it.

    I'm using the following inner class to make button open a new frame. When the new frame opens, the original one still remains but I want it to dissapear. How do I do this please? ----------------------------------------- ButtonHandler handler = new ButtonHandler()...
  7. andypara

    ArrayList containing Objects. Help!

    I have an ArrayList containing Objects which have String member variables. I need to output the values of these String member variables. The ArrayList is called list1. I've used list1.get(0) to return the 0 index Object in list1. How can I then access the returned Object's member variables...
  8. andypara

    Link table problem.

    Hi Lewisip, Thanks for the suggestion. Although all column names are different. I've actually just contacted Oracle Support and the problem was due to a property called Key Mode that needs to be set to Upadateable when the data block is based on two tables. This removes the ROWID column from...
  9. andypara

    Link table problem.

    I have three tables, employee, training and a link table emp_train which contains foriegn keys for both the training and employee table. I need to be able to double click on the employee_nr field and execute a query that shows all training courses completed by that employee. Do I need a data...
  10. andypara

    Upgrading from Version 5 to 6.

    I've upgraded the version of Forms we use to version 6. Some of the functionality in the applications written in Forms 5 has been lost. It doesn't seem to like ROWID when you execute a query for a data block. During run time the error reads &quot;column ambiguously defined&quot;. Is there...
  11. andypara

    Forms 6 installed on Oracle 8i

    Hi, Our DBA informs us that it is impossible to install Forms version 6 in a Oracle 8i home. It complains that the Oracle home is already being used and you can't put Forms 6 in there. The DBA says that Oracle Forms version 6 will only work with Oracle 7. Please could somebody give me some...
  12. andypara

    CALL_FORM

    What builtin do you suggest? What exactly do you mean by modal?
  13. andypara

    CALL_FORM

    Thanks very much, that seems to work fine.
  14. andypara

    PASSWORDS

    Sorry, I posted it before I saw your reply. Thanks for your input. It was the most reasonable explanation.
  15. andypara

    PASSWORDS

    When I select username,password from dba_users I get something like this USERNAME PASSWORD W12 1653F8262E4F5BA8 DEMO DD9FD1922A0AFC29 S4V52 7CC5B1DE8CD9F3DB S4V5FGTGGH...
  16. andypara

    PASSWORDS

    Where are the passwords kept? I need to find the password for a particular user. How can I do this? Is it a data dictionary table?
  17. andypara

    CALL_FORM

    I'm just running it from the .fmb. It works fine when I put the full path in the call_form. I have Forms applications in lots if different directories.
  18. andypara

    CALL_FORM

    Thanks for the recent reply to this one. Something springs to mind though. If I have a .fmx called AM01.fmx saved in the same directory as the form I'm using, and I have a trigger saying CALL_FORM('AM01.fmx'); shouldn't this open the form? At present I just get FRM-40010. If the forms are in...
  19. andypara

    CALL_FORM

    Thanks for the recent reply to this one. Something springs to mind though. If I have a .fmx called AM01.fmx saved in the same directory as the form I'm using, and I have a trigger saying CALL_FORM('AM01.fmx'); shouldn't this open thte form? At present I just get FRM-40010. If the forms are...
  20. andypara

    CALL_FORM problem.

    I need to know how I can deploy a multi form application withouth having to hard code the letter of the drive, or the full path name, in the call_form statement. e.g. call_form('H:\application_name\forms\FORM_NAME.FMX'); If I do this then all the forms MUST reside in that directory. Is there a...

Part and Inventory Search

Back
Top