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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lbrechler

  1. lbrechler

    SELECT in FROM clause not working

    Well, I want all rows/columns of the table whose name is stored in sourcedef. So I need to select sourcedef.tablename, and use the resulting value (let's say it's "mytablename") to do "select * from mytablename"...
  2. 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...
  3. lbrechler

    Failed to create lock directory

    Peter, That's what it was. I did in fact need to be added as a member of the CVS group. Thanks, ~Lindsay
  4. lbrechler

    Moving items from one list to another

    Great script Gary... Once I've moved some options over to the new select, the same number of options are highlighted in the old (highlighing values that have now moved up into the old positions)... What's the best way to prevent this highlighting? Thanks, ~Lindsay
  5. 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...
  6. 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...
  7. lbrechler

    DropDownList Problem

    Found your post and I think I'm having a similar problem... I'd like to change the value in a text box based on the value selected from a drop down box (the drop down contains the Department Code and the text box will contain the Department Name), but I've set breakpoints and yet never see it...
  8. 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...
  9. 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...
  10. lbrechler

    Create tablespace (newbie question)

    Got it -- thanks! Looks like I had already assigned a default tablespace, but had not altered the quota for that user. Once I did that, it worked like a charm. ~Lindsay
  11. 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...
  12. lbrechler

    "Declaration Expected"

    The product is Latitude's MeetingPlace SDK (though MyDLL is not the actual name). I believe it was developed pre-.Net, but thought I'd try just in case. The documentation has nothing about known issues, or, of course, about supporting .NET, though I will follow up with our contact at the...
  13. lbrechler

    "Declaration Expected"

    Gotcha -- MyDLL.Agent() -- yes objAgent.Host() -- no
  14. lbrechler

    "Declaration Expected"

    1.) Wow, how'd that get there? No, not in my code... Thanks for checking though. 2.) I'm using a (poorly documented) 3rd party DLL, so I'm not sure, but I don't think there is any code behind it. I believe it's just a Property associated with the Agent object.
  15. 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: --------...

Part and Inventory Search

Back
Top