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 strongm 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. 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: --------...
  16. lbrechler

    Examples of SCORE operator on CATSEARCH

    Have a table with very large text field (CLOB actually)... Would like to be able to search the table and rank the results. Am trying a ctxsys index type to index the field, but when I go to search, the results are not good. I.e when I search for an exact phrase that I know is there, it's...
  17. 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...
  18. lbrechler

    GoTo - not for error control

    Jonathan, I had pretty much resigned myself to the fact that you can't go into other Sub-Routines or functions, but thank you for confirming it for me. Now I'll just work on restructuring the program to call another subroutine from the timer function. Thanks again! ~Lindsay
  19. lbrechler

    GoTo - not for error control

    Well, I checked the spelling and capitalization (even used "ThisSpot" =) ), but I think that maybe the problem is that it's looking for the label within the Timer1_Timer function, but the code I need to go to is in a different section (of the same form's) code - actually in a...
  20. 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...

Part and Inventory Search

Back
Top