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: tictaclam
  • Content: Threads
  • Order by date
  1. tictaclam

    JTable jcheckbox

    Hi I have a jtable that has buttons, jtextfield, and check boxes in cell depending on the data. I had to extend defaultTableRenderer and extend abstractCellEditor to do this. Everything is working great except I can't seem to center the check boxes. I tried adding the line...
  2. tictaclam

    writing a table to a file

    Hi I am creating a file with the contents of a table. I have no problem writing the data to the file but is there any good way to format the data? I would like the file to contain columns. The length of the data in the table varies and I didn't have much luck playing around with inserting...
  3. tictaclam

    filling an array with a value

    I don't think there is a way to do this but i just wanted to check. Is there any way to fill an array with a value say the number 2 without looping through it? thanks
  4. tictaclam

    threading waiting to finish

    Hi i'm new to threading and i'm having a difficult time. I have a main program and if a certain event occurs a new dialog pops up. I need the rest of the program to wait for the dialog to finish before it continues. Here's what i have started but it's not working and i'm not sure what to do...
  5. tictaclam

    ODSC drivers 97 and 2000

    Hi I'm really new to all of this, I normally just program so if this question could be silly. So right now the server I'm working from is running access 97. I really want the system to be upgraded to 2000. However, the person running the server says it can't be upgraded unless we can find a...
  6. tictaclam

    drop down list dynamic newbie question

    below is my code i eventually want to populate theyear with the values of the year which i will get from asp code. But i am getting errors with the code: options is null or not an object. what am i missing? <FORM NAME="search" METHOD=GET ACTION="/KeyAndQuery.asp"> <select name = "querystr"...
  7. tictaclam

    drop down dynamic same page

    Hi I have a drop down menu and a "go" button. When "go" is clicked i need to get the value of the drop down menu. I thought of using a form but i need the value on the same page to finish some calcuations (in asp). I went through the FAQS but the problem i am facing is that i need the value...
  8. tictaclam

    DISTINCT values, two tables with overlapping values

    hi, i have two tables Program Information: ID Group ... AAA 1 AA2 2 AA1 1 Environment: ID DevEnvDescription TargetEnvDescription ... AAA Some text here More text here AA2 text in here some text AA1 description description The ID's in the two...
  9. tictaclam

    multiple buttons on a form with different names

    Hi I have a form with three different submit buttons. Each submit button has a different name. All the buttons go to the same page but i want to be able to determine which button was selected. Is there a way to do this? I feel like it should be easy. Thanks
  10. tictaclam

    OWC windows version?

    Hi I am graphing using OWC from vbscript. The network where this will be accessed has a mix of XP machines and NT 4.0 machines. I have been developing this charting on my XP machine and it works great. However if i try to access the same page from an NT machine i get the error: Object doesn't...
  11. tictaclam

    ASP calling JSP?

    Hi I am working on an existing project and everything is written in asp. The company now decided to use a jsp based tool. I don't need to change the existing project (that can stay in ASP). Can I called a jsp page from an asp page? And if so can i transfer values between them? Currently i...
  12. tictaclam

    ADO recordset contains

    Hi I have a recordset and I want to find out if a particular row is in the set is there anyways i can do this? My code is strSQL = "SELECT * FROM Program Information" set objRS = Server.CreateObject( "ADODB.recordset" ) objRS.CursorLocation = adUseClient objRS.Open strSQL, objConn...
  13. tictaclam

    sort

    Hi I have a Recordset with one of it's catergories called "FinishDate" The date however is stored like 01/21/2004 and i would like to sort the record set by the year. Is there any way to do this without changing the format of the date? right now obj.sort = "FinishDate" sort by month. Thanks
  14. tictaclam

    Using VBScript and Javascript in the same page

    Hi I'm new to ASP and I was wondering if there is anyway that you can change the asp language from VBScript to Javascript on a page. Basically I'm expanding on someone else's work and their ASP is all in VB and I really need some of the features that javascript offers. i am trying to do <%...
  15. tictaclam

    quick question JRE

    Is there any way in java code to find out what version of JRE the user is running? ~tictac~
  16. tictaclam

    running an executable from prgm

    Hi, I'm trying to run an executable from my program. I can get the executable to run, but I don't know how to get the information from the executable into a file. If you run an executable from the command windown you can type: C:\myExecutable.exe args > info.txt and all the information that...
  17. tictaclam

    converting c++ code to java

    Does anyone know a good tool for converting c++ code (not gui's) to java code? thanks
  18. tictaclam

    JFileChooser's focus

    Hi I am using a JFileChooser with multiple selection enabled. It does work I just have a question about focus. When I selected two items that are far enough apart in the directory that I have to scroll, selecting the second file always causes the focus to jump back to the first file. It does...

Part and Inventory Search

Back
Top