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 dencom 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
  • Content: Threads
  • 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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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
  7. 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$)...
  8. 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...
  9. 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.
  10. jackz15

    Executing basic programs via another

    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 run via basic. Thanks
  11. jackz15

    Computer suddenly loses speed drastically

    A few days ago I was using my computer when suddenly it became busy(CPU reaching 100%), over nothing! It was so slow that I manually shutoff the computer, hoping that would do the job. But before it reached the windows XP scrolling bar screen it lagged for a considerable amount of time. And even...
  12. jackz15

    java.lang.reflect.Field

    In my program, I want have Java create multiple distinct buttons that i can individually reference to. A tedious way for the same effect would be: JButton button = new JButton(words); JButton button1 = new JButton(words); JButton button2 = new JButton(words); //sets different sizes for...
  13. jackz15

    Adding ActionListener to buttons

    The following code that i used adds 100 buttons onto the JPanel. But because there are so many buttons, it would not bode for me to manually make a variable name to all of them. So i'm wondering what I should do to be able to add actionlistener to all of the buttons. Since the way that i did it...
  14. jackz15

    RAM decreased!

    I dont recall what setting i adjusted, but my 256RAM laptop has become 224mbRAM. Does anyone have a idea of what i could've done and what I should do to get back to 256mbRAM? ty in advance,
  15. jackz15

    USB problems on Win98SE

    My Win98SE doesn't seem to be able to detect usb flash drives when i plug it in the hub. I dont understand why, cause all Win98 have USB controller enabled(plus, my other newer Win98 could detect it). I tried microsofts's fix: http://support.microsoft.com/kb/240075 But that didn't help; This PC...
  16. jackz15

    Win98 Cd Drive not reading Cd rom

    I have a Win98SE Pentium II PC that I'm trying to get rid of. But there are a bunch of music saved on it so i want to be able to take those out. But the problem is that the computer just refuses to read my blank or even already written Cds(no matter if it's recordable or rewritable). The only...
  17. jackz15

    Free speech engine

    I wrote a Perl vocab program that reads vocab from a database, the program uses the default speech engine on windows. I dislike my current engine, does anyone know of a a GOOD free speech engine that i can download? engines like microsoft sam and mary, but much better in voice quality
  18. jackz15

    Free speech engines

    I wrote a Perl vocab program that reads vocab from a database, the program uses the default speech engine on windows. I dislike my current engine, does anyone know of a a GOOD free speech engine that i can download?
  19. jackz15

    Anyone know of a webhost with shell or cmd access?

    Hi i need to find a free webhost capable of allowing me to access shell or cmd, thats pretty rare these days. But i need one to run Oregano, which is a Java powered Flash multiuser server. any reply is appreciated.
  20. jackz15

    executing a .sh file on the internet

    hi i am trying to load a chat program which combines java and flash(Oregano Server), it works when i connect to localhost on my own computer because i executed start.bat(or start.sh, if not windows), start.bat must be running to keep the server running. Now i tried to put the chat program on the...

Part and Inventory Search

Back
Top