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 Wanet Telecoms Ltd 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: lbrechler
  • Content: Threads
  • Order by date
  1. lbrechler

    SELECT in FROM clause not working

    Hi. I need to perform the following query: SELECT * from (SELECT s.tablename FROM sourcedef s, attriblist a WHERE a.attribid=1 and a.sourceid = s.sourcedefid) In both Toad and SQL*Plus, this is returning the value of the table name only, i.e. the results of the inner query. Is the SQL...
  2. lbrechler

    Failed to create lock directory

    Just trying to initialize a new version of CVS - in conjunction with the NetBeans IDE - and getting an error that says: cvs server: Updating repos cvs server: failed to create lock directory for `/development/cvstree/repos' (/development/cvstree/repos/#cvs.lock): Permission denied cvs server...
  3. lbrechler

    Webapp "cannt be displayed", but Tomcat default can

    Hi all, I start Tomcat, using startup.bat, and I am then able to see http://my.ip.address.site/ (which is the default jakarta-tomcat homepage), but then when I try to access http://my.ip.address.site/webapp/jsp/welcome.html, it says that "The page cannot be displayed." Any...
  4. lbrechler

    Populate dropdown list from Oracle database

    I'm trying to do several things here, and not having much luck with any of them...! Any help would be greatly appreciated. I need to first connect to a database (trying Oracle now, as that is my end goal, but couldn't even get a local Access Database to work) and then use values from the...
  5. lbrechler

    Starting Tomcat 4.1.12 standalone

    Trying to install the binaries of Tomcat on Win 2K... When I get to the instruction to type "startup" at TOMCAT_HOME\bin, I get another DOS window that flashes open and then closed, and then the following: ------------------ C:\jakarta-tomcat-4.1.12\bin>startup Using CATALINA_BASE...
  6. lbrechler

    Create tablespace (newbie question)

    Ok -- I'm sure this is easy enough, but any help would be appreciated... I've just created a new database called MYDB using the Oracle 9i DBCA (Database Configuration Assistant). I then logged in to SQL*Plus as SYSTEM, and tried to create a tablespace called 'general' using the following...
  7. lbrechler

    "Declaration Expected"

    Hi all. I'm trying to create a VB.NET Class Library and reference a DLL from inside that library. I'm able to add a reference, import the dll, and then dim a new object using it, but then I get a "declaration expected" error on the next line(s) of the program. My code: --------...
  8. lbrechler

    Send message to vb program from Web page

    I have a web page for user registration, and I'd like to send a message to a Visual Basic application when the registration is complete. Any suggestions about how to do this? The VB application uses Microsoft's Messenger API, so I could even send it an IM, if anyone knows of a way to...
  9. lbrechler

    GoTo - not for error control

    Ok, in general, I know to avoid GoTo - my instructors all said the same thing. BUT... I'm working on a program, and I want to timeout and move on after a given period of user inactivity. So, when I present a question to a user I set the interval and start (enable) a timer object. If the user...
  10. lbrechler

    Force users to normalize

    Hi all, I have a table named TOPIC, set up as follows: TOPIC_NAME | TOTAL --------------------------------------------- test | 5 name | 4 java | 9 vb | 12 In my program, users are asked to...
  11. lbrechler

    Ok, I have Tomcat that was working

    Ok, I have Tomcat that was working properly but now, mysteriously, isn't... Have JSPs that call values in a Constants.java (or .class) file... That file loads those values from an XML file, which is NOT in the same path as the JSPs... I had set up the...
  12. lbrechler

    Timestamp field?

    I'm new to Oracle and still trying to get my bearings, so please forgive me if this is a dumb questions. I am creating a log table for my application that will reside in my Oracle database. I'd like to have Oracle automatically update each row's timestamp field as it is INSERTed into the...
  13. lbrechler

    pass null to int field of method

    I have a method that stores several values in an Oracle database. The database will allow null values, but when I try to pass "null" in to the method instead of the "int" that it's expecting, I get the following error. methodName(int, int, int) in pkg cannot be applied to...
  14. lbrechler

    Convert long to Object?

    I have some code that gets the current date/time using in a line that looks like this: long time_of_msg = System.currentTimeMillis()/1000; Now I would like to call the function void setAttribute(String name, Object value) and pass it the value of time_of_msg. The compile is giving me the...
  15. lbrechler

    Hello World Web Service problems

    Not sure I'm even in the right forum here, so apologies if I'm wrong, and thanks if you'll point me in the right direction... I am trying to run the included "hello world" service, and it's not working. I have several issues: 1. Is an "ASP.NET Web Service" any different...
  16. lbrechler

    setting focus on non-form window

    I've found a lot of posts about setting the focus, but nothing exactly like what I'm looking for... I have a non-frame, non-form window that contains a Real Media player. When the page loads, the browser window immediately loses focus. If the player is not there, I don't get the focus problem...
  17. lbrechler

    Query comparing dates

    I'm sure this must be an FAQ, but I can't seem to find it... I'm using VB6 to query an Access 2000 database. I want to pull all records from a particular table "TEST" whose field "DATE" is greater than today (basically, in the future). I thought that "SELECT * from...
  18. lbrechler

    best control to display columns of data

    Can anyone suggest the best control to display columns of information for a user? The data will come from a database, but I don't need editing functionality from this particular control -- just comboBox functionality and equal width columns, where I can give users enough information to decide...
  19. lbrechler

    Closing an application with multiple forms...

    Couple of questions, actually: Question 1: I have an application with multiple forms. Right now, if you click the 'X' button in the upper right-hand corner of the first form that displays, the application closes. However, if I Show another form and then click the 'X' button, all the forms...
  20. lbrechler

    Trouble Updating table with ADO

    Having trouble connection to an Access table to update a specific record. Here's what I'm trying (most recently): Set rstUser= New ADODB.Recordset SQLst = "SELECT * FROM USER where PID=2" rstUser.Open SQLst If rstUser.EOF Then MsgBox...

Part and Inventory Search

Back
Top