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. Addola

    why can't i reset my .NET passport password ??

    hey all Happy New Year !! I was trying to reset my password, i put on my sign-in name and the CORRECT country and i got this result : You will not be able to reset your password. You must sign in using the correct password to regain access to this .NET Passport. You can register for a new .NET...
  2. Addola

    Java Applets - Class not found error

    I think if you go to http://java.sun.com you will find Java Runtime Enviroment JRE. Download it. I think that will do it.
  3. Addola

    Making an app that captures every URL requested by MSIE or Netscape ??

    I want to design a VB application and make it run in the background. It will capture every requested URL from the browser (IE or possibly Netscape). I want to make a statistics about the sites visted. How ???
  4. Addola

    How can I create a relationship between two (or more) tables.

    uhaa I understand that Foreign keys enforce REFRENCIAL INTEGRETY. U mean that I can't do that when defining the tabls BUT I do it when write my code in PHP, Java or whatever to check if the value exist in the other table. got it Thank you. Adel
  5. Addola

    unable to pass parameters to a .php page on my PC.

    Uhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Thank you !! That does it !!! I needed to register the globals :) It works fine with me now. Thanks again.
  6. Addola

    How can I create a relationship between two (or more) tables.

    well in a standard SQL i would do it this way ALTER TABLE house ADD FOREIGN KEY (owner) REFERENCES owner(ownerID) ; === We have two tables house & owner house have the following columns : houseid,houselocation,owner owner have the following column : ownerid,ownername,owneraddress I want to...
  7. Addola

    can I run SQL on an existing query?

    Hmmm I am quite a newbie with MySQL , but if that was the case with Standard SQL, you could create a VIEW. It's like a saved query. I did that on Oracle I don't know if that would be applicable in MySQL check this out : http://www.mckoi.com/database/SQLSyntax.html#5
  8. Addola

    How can I create a relationship between two (or more) tables.

    Well it got me confused. I have a table that already have a Primary key let's say HouseID and we have other attributes. I will also have a Foriegn key refering to , say the owner so, I will add OwnerID to the table to refer to an owners id in another table , namely Owner. So then I can query for...
  9. Addola

    unable to pass parameters to a .php page on my PC.

    That makes sense, cause I was using the latest version of PHP when I had that problem. But how would it be possible to pass global variables from an HTML form to another .php page or even the same $PHP_SELF ??. Is there anyline that i should "uncomment" or add to the php.ini...
  10. Addola

    unable to pass parameters to a .php page on my PC.

    Well, thanks for the reply. Not even this worked. I probably have something going on in the Apache configuration. Anywayz, I was able to run it after I installed EasyPHP 1.6.0.0, which is a package that includes PHP,MySQL,APACHE and PHPMyAdmin bundeled together and configured to work with each...
  11. Addola

    unable to pass parameters to a .php page on my PC.

    hey all, I have installed Apache server , PHP and MySQL on my PC. I was then able to excute .php scripts on my PC (127.0.0.1) The problem is that it couldn't get it to work in passing a parameter from a page to another page using POST or GET. u can see the parameter on the URL Address (e.g...
  12. Addola

    adding applets to JFrame

    hey all, I have been working on a JFrame application and i want to add an applet to the JFrame so that I can added more than one applet working together... I did like Applet app = new Applet(); JFrame myFrame = new JFrame(); myFrame.getContentPane().add(app); // no proplems yet...
  13. Addola

    Storing stuff in Vectors

    was it static ?!
  14. Addola

    equals

    cmd EQUALS null because it is String cmd ; check it if you did it like String cmd = "True" ;
  15. Addola

    how to solve java.lang.OutOfMemoryError.

    Hi, I had this problem once and I restarted my machine. Try to avoid having to many programs running at the same time. I am not sure. :)
  16. Addola

    image and pixel

    I am not sure but i have JDK1.3 there is something called PixelGrapper (I mean a class). it could have some good methods.!! :)
  17. Addola

    Hi I have a string. I need to conv

    You can also do the other way around Integr.toString(1234) to change it back to string!!!
  18. Addola

    Making a CGI anonymous proxy!

    I no nothing about CGI programming. but i am considring to learn it to make a CGI anonymous proxy to make available in my web site. Is that possible in CGI or is it possible with outhers?!
  19. Addola

    Email JDK1.2.2

    i don't know a darn about NETWORKING in JAVA but go here www.programmersheaven.com www.planet-source-code.com
  20. Addola

    JAva Tutorial

    www.planetpdf.com www.abika.com they have a good free java book called "Thinking in Java" You can also try here: http://www.crackinguniversity2000.it/Boooks/know_programing.html http://docs.rinet.ru:8080/

Part and Inventory Search

Back
Top