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

    System resets after login...

    Once i login, about 5sec. after it will reset. Anyone experience this before? I did hardware checks and also booted up into safe mode and in safe mode there is no problems. Seems like a start up program is triggering the start up but I dont know how to check what is being started at windows...
  2. Netherbeast

    your-searcher hijacker removal???

    Sorry if this thread does not belong here I didnt know where else to go. I been trying to remove this hijacker for days now. Can someone please help me? I installed ad-aware, hijackthis, spybot search and destroy and still nothing. I cant find the program that reloads the hijacker. Here is my...
  3. Netherbeast

    Shopping cart example?

    Anyone know of an easy to use shopping cart example?
  4. Netherbeast

    mySQL connection error using netBeans

    Anyone know what this error means??? HTTP Status 500 - -------------------------------------------------------------------------------- type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception...
  5. Netherbeast

    netBeans and JDBC driver

    For some reason netbeans isnt recognizing the JDBC driver. Anyone have this problem too??? thanks in advance
  6. Netherbeast

    Using Servlets to make a web chat program?

    Anyone know a site that can help me do this? I want to try and make one but dont know how to. Thanks in advance
  7. Netherbeast

    Upgrade from Home to Pro, desktop files missing.

    I upgraded from XP Home to XP Pro and now I cant find my desktop files that I once had. Anyone know if they got deleted or did the upgrade just move them somewhere else. Thanks in advance.
  8. Netherbeast

    How do i Log in to SQL once it is installed?

    I installed MySQL 4.0.18 on a Windows XP machine. I am trying to log into it now so I can create tables but I dont know what values to use for the username and password since it didnt ask me for them when I did the install. I did create the my.ini files but that the database is not accepting...
  9. Netherbeast

    CHMOD windows folders and files???

    How do you chdmod something in windows xp pro? I need to set permissions but I dont know how or what to use when trying to do this outside of UNIX. thanks in advance
  10. Netherbeast

    Im getting a LoadModule error.

    This is what the error says: LoadModule takes two arguments, a module name and the same name of a shared object file to loat it from. I checked the line number where the error happened and this is what it is: LoadModule php4_module c:/program files/php/sapi/php4apache.dll I checked for the...
  11. Netherbeast

    How do you configure Apache after the install?

    I have no idea what im doing. Running version, 1.3.29 I installed the program and used the default values for the server name and all the other fields. After it installed, I dont know what to do now. I typed in "localhost" in the web browser and it said "no page to display". The apache website...
  12. Netherbeast

    Adding numbers in a List?

    Im new to this language and am having a hard time manipulating atoms in the list. All im trying to do is add the numbers of a given list, say like add([2, 3, 4], Total). and the Total = 9. I can count how many elements are in the list using this code: len([], 0). len([CAR|CDR], X) :- len(CDR...
  13. Netherbeast

    XP Pro Automatic Login?

    Anyone know how to make a user account auto-login? XP is different from 2000 and I dont know how to do it now. Thanks in advance
  14. Netherbeast

    Testing DATE for NULL value?

    Im tring to test a column CURRENT that has DATE values. I want to print "NO DATE" when there is no date. How do you test for null in this case? Thanks in advance
  15. Netherbeast

    delete data from a column?

    Anyone know the correct command to delete data from an entire column? I know how to delete the column, but not just the data. Thanks in advance
  16. Netherbeast

    Overloading stored procedures possible???

    Is it possible to overload a stored procedure? What I want to do is make a procedure that will either add a person or delete a record depending on what parameter is passed. CREATE OR REPLACE PROCEDURE ADDING(P_FIRST IN CHAR, P_LAST IN CHAR) BLA BLA BLA END; / CREATE OR REPLACE PROCEDURE...
  17. Netherbeast

    TextPad compile error???

    Im getting an error saying: Error occurred during initialization of VM Unable to load native library: Can't find dependent libraries Tool completed with exit code 1 This happens whenever I compile with TextPad. I tried reinstalling textpad and reinstalling jre and sdk. Thanks in advance
  18. Netherbeast

    Anonymous Blocks?

    Im trying to make an anonymous block and it is not working right. I keep getting errors or some other error. Im using sqlplus. DECLARE amount NUMBER:=0; BEGIN SELECT COUNT(*) INTO amount FROM PERSON WHERE PERSON.PERSONID = 1016; DBMS_OUTPUT.PUT_LINE(amount); does this look correct?
  19. Netherbeast

    Printing "NULL" in a SELECT statement?

    When I do a SELECT statement and the value is null, is there a way to print "NULL" for that value? I dont see a way to do this without an IF statement and I have not come across ways to declare an IF statement. Thank in advance
  20. Netherbeast

    Using the SELECT statement

    Im using this SELECT statement to retrieve this information: SELECT RPAD(P.PERSONID, 6) ID#, LPAD(P.LAST, 9) LAST, LPAD(P.FIRST, 9) FIRST, LPAD(C.CONTACTTYPE, 9) CONTACT FROM PERSON P, CONTACT C WHERE P.PERSONID = C.PERSONID ORDER BY LAST; ID# LAST FIRST CONTACT ------...

Part and Inventory Search

Back
Top