reloading windows 98 Hardware and Software Microsoft Windows by speror I'm reloading win 98 on a PIII, 64mb - at least, I'm … work!), I decided to spend a relaxing day reformatting and reloading. I am presently reformatting for the 4th time today, hoping… Reloading same page Programming Web Development by yonca.karagoz This is for reloading the current page. I used it for after comment the … Re: reloading windows xp rebuiding!!?? Hardware and Software Microsoft Windows by caperjack … this thread is a link to help with formating and reloading windows . [url]http://www.daniweb.com/techtalkforums/thread55459.html[/url… Re: Reloading a div using AJAX causes chrome to hang Programming Web Development by mmcdonald Just an update - a friend believes this could be down to not releasing resources such as system memory causing it to build up and then crash the browser tab. But chrome seems to be a a steady 138MB - does this sound likely? Apart from reloading the file containing the code - is there anything else I should be doing/releasing/closing etc? Showing Chat Msgs without reloading Programming Web Development by Pro2000 I saw a chat prog on the Internet The web page shows the messages quickly without reloading the web-page... Can anybody do that or teach me how to do that? Pls help: Yet another explorer.exe keeps reloading Hardware and Software Information Security by SCJTN I'm another one whose desktop explorer keeps reloading every 5 seconds. From what I can tell from reading … prevent .cgi script from reloading after "Submit" pressed Programming Software Development by inquisitor71 Could you suggest how to prevent the following script from reloading when 'Submit' is pressed ? Thanks [code=perl] #!/usr/bin/perl … Fetch info without reloading page (when clicking submit button - AJAX?) Programming Web Development by kalender … have to stay in the "Personnummer" field without reloading the whole page and still fill in the info. [code… Re: Fetch info without reloading page (when clicking submit button - AJAX?) Programming Web Development by Akash Saikia … have to stay in the "Personnummer" field without reloading the whole page and still fill in the info. [code… Change div CSS without reloading swf Programming Web Development by theighost … is, is there a way to change the CSS without reloading the flash? do you think that jquery might help? (I… submit form without reloading Programming Web Development by aaloo …;/script> Now i want to submit my form without reloading the page. So please help me to modify this code… submit form without reloading Programming Web Development by aaloo …;/script> Now i want to submit my form without reloading the page. So please help me to modify this code… Re: submit form without reloading Programming Web Development by aaloo … way. Actually I want to email my form data without reloading the page.Please tell me what code i can add… Javascript Form should not submit after reloading page. Programming Web Development by hemanth_3 After Relaoding the page my form is submitting with the values in it how can i stop submitting my values after reloading the page - Thanks for help How to update address bar with new URL without reloading the page? Programming Web Development by pro-tek How to update address bar with new URL without reloading the page? Re: reloading windows 98 Hardware and Software Microsoft Windows by meabed You must configure usb root hub the driver in the mother board CD try to configure it and it will work ... and list some of the errors here if this way doesn't work ... okay then we will try to solve it..;) Re: Reloading same page Programming Web Development by pritaeas Is there a question? Re: Reloading same page Programming Web Development by yonca.karagoz No, I'm beginner and wanted to share some thing. Just wondering :) Re: Reloading same page Programming Web Development by Van4.NET Thanks for sharing the information though I expected a question. Re: Prevent web pages from automatically reloading. Programming by Naheedmir To prevent web pages from automatically reloading, go to the chrome extension and search for auto refresh blocker extension. Install it. I hope it will solve your issue. reloading XP on formatted drive Hardware and Software Microsoft Windows by Rgomez2691 I'm using HP Pavillion 520n motherboard; I formatted Seagate hard drive; how do I reinstall Win XP home?; all I have are startup disks; I also have e-machines hard drive with XP on it; all I get is disk read errors with either hard drives; I changed jumpers; Re: reloading XP on formatted drive Hardware and Software Microsoft Windows by tayspen Welcome to DaniWeb To install windows XP, you need the Windows XP CD. There is no other way. -T reloading windows xp rebuiding!!?? Hardware and Software Microsoft Windows by HondaPH22 I am trying to rebuild my computer and wipe everything out making it like it was when bought new. I think the way I'm doing it im just reinstalling the program and not erasing everything. What are the steps to rebuild the computer and reload the windows xp on the computer. I wouldn't think this computer should be trashed yet its a custom built 2gb … Reloading a Python Script? Programming Software Development by Dekudude Hi there! First off, let me say I HAVE Googled the subject, but all provided functions... didn't work. Simply put, I want a function that closes my Python script, and then reopens it. I tried making my own, which would open the same file, sleep 2 seconds, and then close, but to no avail. Does anyone here have any pointers? Thanks! Re: Reloading a Python Script? Programming Software Development by Gribouillis You should explain what you mean by "closing your python script, then reopen it". Do you mean ending the current program execution and start a new execution of the same program ? In that case, you could use functions like [icode]os.exec[/icode] which replaces the current process by another one, or [icode]os.spawn[/icode] which starts a … Re: Reloading a Python Script? Programming Software Development by jlm699 I have an inkling that he means reload a module... I too have looked around google and found some sites that insist that it can be done. I just don't know how. To further clarify when I'm developing a module and I import it into my python shell then realize I need to change the module, instead of closing the shell, modifying the module, then … Re: Reloading a Python Script? Programming Software Development by Gribouillis There is the builtin function [icode]reload(module)[/icode] [url]http://docs.python.org/lib/built-in-funcs.html#l2h-61[/url] if that's what he means. Re: Reloading a Python Script? Programming Software Development by zachabesh i second Gribouillis but maybe this will work? [code] def func(script,numberofruns): [INDENT]runs = 0 while runs <= numberofruns: [INDENT]execfile(script) runs = runs + 1 [/INDENT] return runs[/INDENT] [/code] function takes script and number of times you want to run it, returns the number of times it actually did. Re: Reloading a Python Script? Programming Software Development by Dekudude I want to reload the entire script, not just a module... I'll look in to spawn, though. Thanks! Also, if this helps, this is the error I get when I try to open the same file, before exiting: Traceback (most recent call last): File "C:\Python25\Projects\SUSIE\Susie.py", line 119, in <module> subprocess.Popen("C:\Python25… Re: Reloading a Python Script? Programming Software Development by Gribouillis I'm not on windows, but may be your command should be C:...\python C:...\Susie.py. I mean the python executable first and the script as first argument.