- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 4
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
25 Posted Topics
Re: What kind of processor do you have? You have to match up the windows bit set to that of your processor. | |
Re: Just for future reference. [URL="http://www.phpeasystep.com/workshopview.php?id=6"]http://www.phpeasystep.com/workshopview.php?id=6[/URL] This script if logged in already will redirect. Ardav way is probably simpler if you just edit your existing code. ![]() | |
Re: What I would try is to download all the system updates you can get and then try to install IE6 again. Control Panel ->Security Center -> Windows Updates | |
Re: -Enter your BIOS (usually F2,F8, or F12) -Go to boot options and select CD\DVD rom -Insert your Windows CD -Restart and Hit a button when your computer reads ("Press any key to boot from the CD") -Go to Repair in the options Windows menu **If this doesnt work you might … | |
Re: This sounds like maybe you have some spyware. Some quick fixes include downloading: -[URL="http://download.cnet.com/Ad-Aware-Free/3000-8022_4-10045910.html?part=dl-ad-aware&subj=dl&tag=top5"]Adaware[/URL] -[URL="http://www.safer-networking.org/en/mirrors/index.html"]Spybot Search and Destroy[/URL] -[URL="http://download.cnet.com/AVG-Anti-Virus-Free-Edition/3000-2239_4-10320142.html?part=dl-10044820&subj=dl&tag=button&cdlPid=11014801"]AVG AntiVirus[/URL] If this doesnt work download [B][URL="http://free.antivirus.com/hijackthis/"]Hjack This[/URL][/B] and post your logs on a Hijack this log and follow their instructions. | |
Re: Do you use percentages? As in [CODE]<table width="80%">[/CODE] You might want to use absolute.. [CODE]<table width="800px">[/CODE] | |
Re: I would look into an online book if you can since all those settings are going to differ on different servers. [URL="http://books.google.com/books?lr=&ei=BrHMSqSbOo6ENJPriIgI&client=firefox-a&as_brr=3&q=php&btnG=Search+Books"] Google Books results for PHP[/URL] | |
Re: I would break it down into four parts: 1) run a counter or count query to find the total you have. 2) Store the items in an array 3) Print array values... 5 at a time with a loop. 4) keep track of the page number and which to display … | |
Re: I'm not doing it all for you but should be more than enough for you to get started. [CODE]#include stat_lib.h //assuming you have created it #include <cstdlib> #include <iostream> #include <math.h> using namespace std; int main() { //Step(1) double far[100]; double cel[100]; //Step(2) for(int i=0;i<100;i++) { far[i] = rand() % … | |
Re: I might be wrong and it's one of windows boot commands, but may be a virus. The following link is how to remove it. [URL="http://www.ehow.com/how_5328877_remove-autoexe.html"]http://www.ehow.com/how_5328877_remove-autoexe.html[/URL] | |
Re: What is the error that is generated? | |
Re: [QUOTE=aditi_19;994485]And to add on..I want the reports to be saved in pdf format. Please guide me how to do that ![/QUOTE] Try this site out [URL="http://www.weberdev.com/get_example-4423.html"]http://www.weberdev.com/get_example-4423.html[/URL] | |
Re: Pretty good articale [URL="http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html"]http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html[/URL] | |
Re: You could use the PHP file manipulation. i.e. create your own version of a string builder to create the files for you. ![]() | |
![]() | Re: I believe ASP might not be the way to go due to needing a Microsoft Server, unless the server is an IIS(Microsoft) and you have Visual Studio already. If all it is mathematical equations, then you can easily get away with writing just in javascript and HTML to run on … ![]() |
| |
Re: whats the input file look like? | |
Re: [URL="http://www.w3schools.com/asp/default.ASP"]W3 Schools[/URL]...always my fav for a quick overview | |
Re: hope this helps... [code] public static void ClearForm(System.Windows.Forms.Control parent) { foreach (System.Windows.Forms.Control ctrControl in parent.Controls) { //Loop through all controls if (object.ReferenceEquals(ctrControl.GetType(), typeof(System.Windows.Forms.TextBox))) { //Check to see if it's a textbox ((System.Windows.Forms.TextBox)ctrControl).Text = string.Empty; //If it is then set the text to String.Empty (empty textbox) } else if (object.ReferenceEquals(ctrControl.GetType(), typeof(System.Windows.Forms.RichTextBox))) … | |
I'm writing a function that creates an html file, loads it into a invisible browser, prints, then deletes that html file. However I'm getting an error in the print and delete portion. [B]Here are the two errors[/B] [B](Output from the debugger)[/B] A first chance exception of type 'System.IO.IOException' occurred in … | |
Re: Is it your Windows Explorer (Desktop) or Internet Explorer? | |
Re: A few sites with some sorting examples: [URL="http://homepages.ius.edu/JDRUIN/html_pages/C++_examples.htm"]Example 1[/URL] [URL="http://www.daniweb.com/forums/thread101230.html"]Previous Daniweb post[/URL] | |
Re: [B]Have you:[/B] 1) Opened the command prompt and typed the following: -ipconfig/release (wait a few seconds) -ipconfig/renew *Sometimes windows will not do this for some reason when in the network screen. 2) Disconnected the router or hub which you are using? 3) Logged into your router and refreshed the client … | |
Re: Are you looking for the formulas or to simply create a spreadsheet that looks similar? | |
[B]I am trying to insert a new record into a mysql database and get the following error:[/B] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '30, 60, 90, DayCreated) VALUES ( 'Rush Shirt', … |
The End.