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 Mike Lewis 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. stephenbruceburch

    Check if text field is empty

    I am having a problem and I believe this is where it lies. The program allows the user to identify an item by either its id or its location. I thought the easiest way to accomplish this was to just have both text fields in the panel and when the submit button was pressed check to see which was...
  2. stephenbruceburch

    function to set bgcolor

    I have a function getBGColor() that checks cookies to set a variable bgcolor (in form &quot;#000000&quot;) and if the user doesn't have cookies it sets the variable to a default color. Can I use this function in the HTML ie <body bgcolor=&quot;getBGColor();&quot;> or <body...
  3. stephenbruceburch

    Check if Cookie Exists

    I am a novice to vbScript and was wondering how to do something. I have created a form that accepts information such as their name and color preferences. It then writes it to a cookie so that all of the pages in the site can have access to this info. This form is an option however, and I was...
  4. stephenbruceburch

    Lauch java application over the internet

    I can't just zip up the java application because it connects to the oracle database. And I can't load Oracle at the school. So my program wouldn't run when I got it there.
  5. stephenbruceburch

    Lauch java application over the internet

    I created a java application for school that acts as a front end for an oracle database. the only way I can think of to show it to my teacher is to bring my computer in. I would like to run the application from the school computers via the internet if it is possible. I have my computer set up as...
  6. stephenbruceburch

    Can't get number to insert into text box

    I'm trying to learn javascript and did an example from a book and I can't get it to work. It doesn't put the numbers back into the txtTotalTax and txtTotalCost text fields. And I don't know what I am doing wrong. It looks like the other examples and they all worked. Any help would be great...
  7. stephenbruceburch

    open.window help

    I need to open up a window and display some information from a form. Whenever the window opens it says the server is not found. here is the code I used: (where strH contains the HTML code for the new page) newW = window.open(&quot;results.htm&quot;, &quot;Results&quot;, &quot;height=300...
  8. stephenbruceburch

    String to java.sql.Date

    I need to format a string into a java.sql.Date format. I have used the SimpleDateFormate parser to give me a java.util.date, but I don't know how to change it to the sq.Date. I tried: java.sql.Date date = (utilDate); where utilDate is the java.util.Date. Any help would be greatly appreciated.
  9. stephenbruceburch

    How to add an action litener to another class

    I made a program that has a keypad and a few other buttons. I got the program to work but it looked kindof nasty all in one class so i decided to spit it up. so now I have a keypad class, and my main class, I also have a few other classes but they're working. What I want to do is add the...
  10. stephenbruceburch

    Use a query to act as an auto - number in a form

    I am using access as a front-end for an oracle 9i database. I want to have something similiar to an auto number for the id's of each of the tables. I created a query that looks up the highest id # and adds one to it. What I don't know how to do is have it automatically appear in the 'id' box on...
  11. stephenbruceburch

    Update only last record

    I have two tables an Inventory and a Transaction. I want to update the inventory whenever a transaction is made. but the problem I am having is that it updates the inventory for every transaction. I tried using WHERE Transaction.ID = MAX(TRANSACTION.ID) but it errored and said I couldn't use an...

Part and Inventory Search

Back
Top