network trouble Hardware and Software Networking by swanjay … says. Windows IP configuration ethernet wireless (i think) "media stae......: media discconected" can anbody help, i have been able… How do i open a statefile to read with a changing filename Programming Software Development by wallace900402 i know how to use fopen to read a file, but i have a changing file name like this "p%dt%03d.state" where the variables are changing inside a loop. eg : p1t001.stae, p1t002.state ... etc how will i be able to do that? thanks!! Need some PHP JSON help... Programming Web Development by MoreBloodWine … for help. total_rewards, paid_rewards & unpaid_rewards In it's original stae it pulled and wrote just fine the total workers and… Re: Destructive syatem restore Hardware and Software Microsoft Windows by Catweazle … can be used to restore it to its original installed stae, or with the necessary files on a 'hidden' partition on… Re: Looking for all people with gateway power problems Hardware and Software Hardware by lllplus2 … has expired your state can still help, especially if the stae has already helped other folks with the same problem. Re: Looking for all people with gateway power problems Hardware and Software Hardware by brandon8802 … has expired your state can still help, especially if the stae has already helped other folks with the same problem.[/QUOTE… Re: Guess where I'm from! Community Center Geeks' Lounge by jbennet Cambodia? Camaroon? Cayman Islands? CAR? Chad? Chile? China? Congo? Costa Rica? Croatia? Cuba? Cyprus? Czech Republic? Is it a stae/province or a real country? e.g gibralta likes to think its spain but really its british Re: Hi, please help with this modifications. Programming Software Development by bright.silva …)occur3(N, item, position):this function allows the user to stae the item ,the postion of the item as well as… Re: network trouble Hardware and Software Networking by bobbyraw go into control panel >network connection, and tell us if you have a ethernet connection. if it's not listed, go to system properties and see if any devices name ethernet controller has a red x, yellow question mark or yellow spot with an exclamation ! sign. Re: network trouble Hardware and Software Networking by swanjay Hi there no ethere net in network connections just wireless and a 1394. I've been into "devices" in "system", and there is no ethernet listed under network adaptors, but it says "ethernet controller" under "other devices" with a question mark and !. thanks Re: network trouble Hardware and Software Networking by thunderstorm98 Then check the status by Double-clicking on it. If Windows says no drivers installed for this device then you must need to install the appropriate drivers for that device. Re: How do i open a statefile to read with a changing filename Programming Software Development by Ancient Dragon use sprintf() to format the file name [code] char filename[255]; int i; for(i = 1; i< 10; i++) { sprintf(filename,"p1%03d".state",i); printf("filename = %s\n", filename); } [/code] Re: Need some PHP JSON help... Programming Web Development by pritaeas If I understand you correctly, you just need to update line 27 above, so it includes your three new variables.