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 Mike Lewis 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: JoeM6
  • Order by date
  1. JoeM6

    Outlook Express: Email works on one identity, not another

    I opened up Outlook Express yesterday, and I noticed something weird. All of my folders that I divide my mail up into were all messed up and out of order. Then, when I tried to receive my mail from my 3 accounts, I got errors for all of them. I couldnt figure it out, the only thing I did was run...
  2. JoeM6

    Link Validation not working correctly

    After connecting to my database, I use the following to make sure the links are working properly: use LWP::Simple; while(my ($id, $Name, $Cat, $Type, $Players, $Object, $GameURL) = $sth->fetchrow_array()) { if(head($GameURL)){ } else { print &quot;Not Working: $GameURL<br>&quot; } }...
  3. JoeM6

    using mail2mysql without MHonArc?

    The following code should read the mail in my inbox, add it to a mysql database, and then delete it. However, I do not have the MHonArc module installed to run it. That module is used to strip html code(from what I read). All of the emails I get at the address I want to log will be undeliverable...
  4. JoeM6

    Importing data into excel

    I have a CSV file. It has 9 digit part numbers in it. Some of the part numbers begin with zeros. The zeros are there in the CSV file, but when I open it up in excel, they are removed. Is there away I can format the cells to text before opening the file so the zeros are there? JoeM6...
  5. JoeM6

    DHTML Scrollbar

    I have a scrollbar in DHTML on my site. It works fine, but if you click on the bar (not the arrows), it sticks, and no matter where you move the mouse, the page scrolls. To see what I am talking about, go to http://www.jlhsband.com and click on 'Media'. Click on the music notes. The source of...
  6. JoeM6

    Is there a Perl &quot;maintenance&quot; script to close site for updates?

    I want to close my site for a few hours while I perform some updates, but I dont want anyone viewing the site while the site is being updated. Is there a Perl script that can redirect like every page to a page that says like maintenance in progrss or something? If not, can it be done in PHP...
  7. JoeM6

    MySQL and Php

    I am building a website in ASP. My webhost just sent me php files to create databases and tables. Can I create the databases and tables in Php, then add/edit/delete records and with ASP? JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  8. JoeM6

    Easy Q: Same script 2x on one page

    Yes thank you, that works. I also figured out I could do it like this because I am also working with ASP: <SCRIPT Language=VBScript> if screen.height = 480 Then <% resolution = &quot;480&quot; %> End if if screen.height = 600 Then <% resolution = &quot;600&quot; %> End if if screen.height = 768...
  9. JoeM6

    Easy Q: Same script 2x on one page

    I want to put the following script on my page twice, in two different places: <SCRIPT Language=VBScript> if screen.height = 480 Then document.write ('480') End if if screen.height = 600 Then document.write ('600') End if if screen.height = 768 Then document.write ('768') End if </SCRIPT>...
  10. JoeM6

    Removing Banner ads like Tek Tips does

    I want to make it so people who join with my site have the option to remove the banner ads like on tek tips and all unregistered users dont have the option, is there a way to do this in asp? JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  11. JoeM6

    ASP can't connect to Access DB. Why not?

    I have had problems connecting to databases too. The only way i can connect os by using this script: Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;) Conn.Open &quot;DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=&quot; & Server.MapPath(&quot;\db\dbname.mdb&quot;) Just change the...
  12. JoeM6

    Adding Records to a Database - Expected Identifier Error

    I fixed it, I didnt realized you cant write to a new database, there has to be some information in it. Also, the field labled type was causeing some problems so i changed the name of it. JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  13. JoeM6

    Adding Records to a Database - Expected Identifier Error

    I have a script that adds a record to a database. I get an Expected Identifier Error when it processes. Ill show you what i have. ------------- add.asp This is the page where all the information is put in: <form method='post' action='add2.asp'> Game ID: <small>(Auto Number)</small> Name of...
  14. JoeM6

    Database and Auto Numbers

    If i have a database, and have a field that has an auto number, will that increase when i add records using a form online? JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  15. JoeM6

    Can you use a form to write to a database?

    ok, thanks for all the help! JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  16. JoeM6

    Can you use a form to write to a database?

    THANK YOU SO MUCH, IT WORKS!!! the only thing i didnt under stand was when you said pk field. Also, on the test.asp page. Do those have to be in the same order than on the database file? JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  17. JoeM6

    Can you use a form to write to a database?

    ok, i have a little problem, it says page cannot be displayed. So far I have <%@ Language=VBScript %> <% Dim username, password, sql, conn, dsn, rs username = Request.Form(&quot;username&quot;) password = Request.Form(&quot;password&quot;) sql = &quot;INSERT INTO myTable ( username...
  18. JoeM6

    Can you use a form to write to a database?

    Thank-you so much. I knew how what page one was, but had no clue about page two. Thanks a lot! JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  19. JoeM6

    Can you use a form to write to a database?

    Can you use a form to write to a database? I know you can use a form to write to an .asp file, but i mean like a .mdb file. JoeM6 JPMJR11@aol.com http://gamecentral.20m.com
  20. JoeM6

    Login script wont work

    Nevermind, i figured it out (This is only my third day of learning ASP) :) JoeM6 JPMJR11@aol.com http://gamecentral.20m.com

Part and Inventory Search

Back
Top