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 bkrike 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: *

  • Users: msloan
  • Content: Threads
  • Order by date
  1. msloan

    flash menu won't load

    Hello everyone, First off let me start by saying, I am not a Flash developer - this is my first experience with flash. I bought one of those flash menu templates online. I was able to get the thing configured and working locally. As soon as I uploaded it and my html file to the hosting...
  2. msloan

    calling a function defined in an iframes source html

    I have an iframe defined in my simple jsp page. Obviously that iframe has a source html file - source.html. How do I call a function from my jsp that resides in the source.html? Thanks!
  3. msloan

    Trying to add new user

    New to Mysql and I am trying to add a new user. I am using the MySQL Control Center to do this. Any time I try to add the new user to any database, I get the following error: [admin] ERROR 1045: Access denied for user: '@localhost' (Using password: NO) Any suggestions?
  4. msloan

    JComboBox is not appearing as it should

    I am adding a JComboBox to a JPanel which is added to a JFrame. The code compiles fine and launches as expected, however, when I go to my panel, it looks as if the combo box isn't there. But, when I click where the combo box should be, I get the drop down of selections. I also added an...
  5. msloan

    Newb needs help

    Ok have just started using Ant (1 day) and am trying to compile a simple (I thought) servlet. I have my build file and when I execute ant from the command line, the compile fails, saying my package (that I am importing) does not exist. I am assuming that I need to reference the library in the...
  6. msloan

    returning path of database from a connection

    I have a user defined System DSN on the client machine. From there the user will specify the name of that DSN in my app. Is there any way to retrieve the path of the database that that DSN points to? TIA
  7. msloan

    formating and storing monetary values

    Just looking for some ideas on what the best way to store and format currency values might be. I am using SQL 7.0 and have my currency fields defined as float types. In my java, I call and store the value as a float (getFloat() updateFloat()). What I am finding is when I convert from US...
  8. msloan

    JFileChooser and network drives

    Is it possible to have a JFileChooser that is able to display network machines and drives? If so, how? TIA
  9. msloan

    Exporting Views to Access

    I have been able to export the tables and the data, but was wondering if it was possible to do a mass export of the views? I have approximately 75 of them and don't really want to do them one at a time. Thanks in advance. Matt
  10. msloan

    ResultSet Question

    I keep getting an error when I attempt to update a ResultSet - Fetch type out of range Here is the code: String strSQL = "Select * From tblwEquipSched Where fldwEquipSchedKey = " + intSheduleKey; try { Statement stmt = conUserCurrentConnection.createStatement()...
  11. msloan

    Overriding close functionality in a JDialog

    Hey, I am trying to either disable or override the close box in the top right corner of a JDialog. Pretty much, I don't want to give the user the ability to exit the form. I have added a WindowListener and tried a couple of different things. And I have also tried setDefaultCloseOperation()...
  12. msloan

    JDataConnect JDBC driver in Oracle 8i

    Hi, I was wondering if anyone has successfully used JDataConnect with Oracle? We currently use JDataConnect with SQL Server 7.0 - with some success. However, we are currently trying to support Oracle 8.1.7 and am not having much luck. The problem: If a column exists with 'Update' as part...
  13. msloan

    StringTokenizer not returning all tokens...

    Hello, I am using a StringTokenizer to isolate the "WHERE" clause in an SQL statement. This SQL statement is stored and is being returned correctly from the database, but when I do a System.out.println(stViewDef.nextToken());, not all token are listed.... Here is what I ahve so far...
  14. msloan

    editing text in JTable

    Hi, I have created a table, and have applied both a cell renderer and cell editor to the same column. I also have overridden the 'isCellEditable()' so that my column is editable. The editor will only allow whole numbers to be entered. So far this is working fine, but when I edit the cell and...
  15. msloan

    Comparing dates for a Crystal 7.0 Report

    Hello, I am trying to determine the number of days between two dates. The two dates are being pulled from a database table. for example: tblProcurement.fldProcurementReqRcvdDate is the from date tblProcurement.fldProcurementSentToFMODate is the to date so: if...
  16. msloan

    JTable cell editing - only allowing numeric characters

    I would like to only allow numbers (0-9) to be entered in a JTable cell - I have not been too successful at this when working with Cell Renderers and Cell Editors. Any ideas are greatly appreciated. Thanks in advance Matt
  17. msloan

    Creating a Where clause in a SQL 7.0 view

    I am trying to select records that fall within a date range. I know the sytax to do this in access is something like: SELECT dbo_tblEvents.fldEventsName, dbo_tblEvents.fldEventsStartDate, dbo_tblEvents.fldEventsEndDate FROM dbo_tblEvents WHERE (((dbo_tblEvents.fldEventsStartDate)>#1/1/1995#)...
  18. msloan

    error 910 in sql server 6.5

    I have not been able to find much documentation for Error 910 - Could not allocate a new object description for required system catalog database... Any information about the cause, solution etc. is greatly appreciated. Thanks Matt

Part and Inventory Search

Back
Top