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: *

  • Users: jackz15
  • Order by date
  1. jackz15

    Function for onsubmit works in chrome not in safari

    I have the following function run onsubmit for a form: function validate(form) { for(i = 0; i < form.elements.length; i++) { if(form.elements[i].value == "") { alert('Please fill everything!'); return false; } } if(form.AP1.value=='PM' && form.hour.value !='00' && form.hour.value !='12'){...
  2. jackz15

    Login code algorithm help needed

    is that all I have to do? Is there anything else wrong with my code? Thanks for the help!
  3. jackz15

    Login code algorithm help needed

    Hi everyone, could someone take a look at my convoluted login algorithm? It works fine except if I close out from the site and don't return for a while and open the page: 1. cookie logs me in, sets phpsseid 2. by refreshing the page, i get logged out with login cookie deleted when i first login...
  4. jackz15

    Need some help using inline::python with perl

    I have the following python code embedded into perl that outputs the bluetooth mac address, rssi and other info: #!/usr/bin/perl -w use Inline Python => <<'END'; #!/usr/bin/python import gobject import dbus import dbus.mainloop.glib def device_found(address, properties): #prints mac...
  5. jackz15

    Wireless adapter not connecting to internet

    it didn't change after i reinstalled the driver. After disabling APIPA, my IP address and subnet are all 0.0.0.0 DHCP server is 255.255.255.255. What is going on?
  6. jackz15

    Wireless adapter not connecting to internet

    I believe that the laptop is supposed to be set to use IP from the DHCP, but with the limited wireless connection I found that the IP was unknown. Is this because the laptop failed to get the IP from the router? I will try to reinstall the drivers once I get home. Thanks!
  7. jackz15

    Wireless adapter not connecting to internet

    oh, I just had the opportunity to check. Access control isn't enabled. And the key is definitely correct. Is there any other possibilities?
  8. jackz15

    Wireless adapter not connecting to internet

    The internet stopped working abruptly. I did not edit any of the previous settings and it stopped working. However, I do have a WPA encryption, so I'll try what you said for that. Since I didn't change any of the settings, would I need to check the MAC address? Le Zhang
  9. jackz15

    Wireless adapter not connecting to internet

    For some odd reason I cannot connect to the internet with my NETGEAR wireless network adapter on my laptop. The adapter works fine on my desktop and had worked fine before on the laptop as well until a few days ago. The laptop shows that it detects my router and has excellent signal but once...
  10. jackz15

    opening file.rar.0, file1.rar.1, file2.rar.2

    I couldn't find a place to post this question. Sorry about that. I know that rar parts like file1.part01.rar can be opened just by extracting one of the parts. But winrar can't open file1.rar.1, file2.rar.2...etc. It can only open file.rar.0 i've never seen an extension like this. Is there a...
  11. jackz15

    Carrying out LPRINT without delay

    i'm using Qbasic on windows Xp. There is a network connection on the computer, but since the robot is for moving from place to place, it wouldn't always have a network connection.
  12. jackz15

    Carrying out LPRINT without delay

    Is this possible? I'm using LPRINT for a robot arm, and theres a noticeable 20 sec delay between each LPRINT command. Would there be such a delay if I switched to RS232C instead of Centronics? Thanks for the help, Le
  13. jackz15

    port forwarding with modem

    thanks for the help, I have already solved the problem. It seemed like my modem supports port forwarding as well.
  14. jackz15

    port forwarding with modem

    i turned off my firewall and allowed utorrent traffic, but it still gives me the error. i'm using kaspersky internet security. what could be wrong?
  15. jackz15

    a way to loop with CHAIN

    thanks! I'll try to figure things out after Thanksgiving. I'll definitely have more questions regarding this.
  16. jackz15

    a way to loop with CHAIN

    If I do put SYSTEM in the last line on the first code, then the robot delays before it moves(I don't know why, but it has to call SYSTEM to run immediately). That why I tried to have the second code loop the first code. But I can't even loop the second code since CHAIN stops the line after from...
  17. jackz15

    a way to loop with CHAIN

    I have a code which controls a robot arm as shown: 10 K# = 0 20 DO 30 DO: A$ = INKEY$ 40 LOOP UNTIL A$ <> "" 50 IF ASC(A$) = 68 THEN LPRINT "DW -10,0,0" 60 IF ASC(A$) = 65 THEN LPRINT "DW 10,0,0" 70 IF ASC(A$) = 87 THEN LPRINT "DW 0,10,0" 80 IF ASC(A$) = 83 THEN LPRINT "DW 0,-10,0" 90 IF ASC(A$)...
  18. jackz15

    port forwarding with modem

    i don't think that my modem has any functions to block ports. And I could just randomly choose ports and it would still be blocked. I have not asked utorrent yet, but i've read some articles from them pertaining to portforwarding on routers. Is there anything else that could be blocking the port?
  19. jackz15

    port forwarding with modem

    I am trying to use utorrent, but the port forwarded to it is not opened(according to the µTorrent Port Checker). I am not connected to a router, but rather to a dsl modem(speedstream). I've found bunch of articles on portwarding with routers, but none for modem(do modems even need to...
  20. jackz15

    Executing qbasic code via another qbasic code

    I'm sure there is a way to do this, but I do not know the function for this. Can some one tell me? I just want to be able to call for another basic code to execute with a basic code. Thanks.

Part and Inventory Search

Back
Top