Re: Improve HAVING BY performance Programming Databases by toneewa …; << elapsed_seconds2.count() << " seconds\n"; Sleep(1000); delete con; } catch (sql::SQLException& e) { std::cerr… Re: Why does Dell hate Linux so much? Hardware and Software Linux and Unix by mickeydoodle I've just acquired a Dell laptop, it seems to hate Linux! Touch pad doesn't work properly, Wireless won't connect and it's sooo slow! Works fine with Windows! Re: Improve HAVING BY performance Programming Databases by Reverend Jim … with "Take two Aspirin, get a good night's sleep, and call me in the morning if it still hurts… Re: Vista can't access 2nd HD or DVD afer sleep/hibernate Hardware and Software Microsoft Windows by Bob_180_Bob …, I do not know why it would be different after sleep but you can try to do a SFC. Sometimes, some… a long time to complete, when finished, reboot, put to sleep, wake and see if the problem still exists. Re: What Your Sleep Position Says About You Community Center Geeks' Lounge by mattyd I see the need to sleep, and believe me, I can sleep for 12-hours straight, easily, but I just find it's a waste of time for me (too many other fun and interesting things to do and work on). My insomnia is a problem sometimes, but I work with it. I'm basically on the opposite sleep\wake schedule than most Americans which I truly like. Matty Zend PHP Studio won't open Hardware and Software macOS by Dani …: 12 Anonymous UUID: 2D7F9CC5-0F54-55B0-C52F-B10F42C8B040 Sleep/Wake UUID: 31FE2302-3030-4C51-AD69-A6D9C224B94F Time Awake Since… Boot: 24000 seconds Time Since Wake: 2000 seconds System Integrity Protection: enabled Crashed Thread… Automated PC control program!... Advance programming! Programming Software Development by Core3R … that controls the other Computer's basic functions (shutdown, reboot, sleep, wake,). It is somewhat similar to Handycafe program which is used… Re: Iphone 2g will not fully boot! Hardware and Software macOS by united4real [SOLVED] All I done was, hold the sleep/wake button and home button together for about 10secs, then let go off the sleep/wake button but kept my thumb on the home button until the Itunes logo came up, which then led me to be able to restore it via Itunes on my laptop! :) THANKS ANYWAY! Re: How did/do you study? Community Center Geeks' Lounge by Junyah … More beer stuff try to keep eyes open pass out - sleep wake up hung over to take test amazed that you remember… Re: Computer Doesn't Boot Hardware and Software Hardware by laZnTYl Thanks guys, but apprently my comp works now, all I did was turn it off, sleep wake up turn it on, and it works... I don't know, but I'm happy. Re: Meet the New Windows, Same as the Old Windows Hardware and Software Microsoft Windows by jbennet Vista runs fine for me on 2gb / Core (1) Duo 1.8ghz Originally had 1gb which was a bit slow, 1.5 or 2gb is fine for most users. The only reason it has a rep for being slow is because OEMs load thier sytsems up with crap. A clean install of vista is actually very fast. And it is faster to boot up and sleep/wake than xp Re: HP dv9000 Boot Problem Hardware and Software Hardware by Kegtapper … unit out. It came back, with WIFI shutting off, and Sleep/Wake/Hibernate issue. Re: iOS 4 Hardware and Software macOS by igster … to a point of being unusable. If I rebooted (hold sleep/wake button plus home button) it would be better for about… Re: Sleep and Hibernate difference Hardware and Software by CimmerianX Sleep mode is a very low power mode where the laptop … little power as possible. Network connections are usually lost in sleep mode but can be maintained with proper settings. If power… is lost, your laptop's battery will maintain the sleep state until it runs out of juice. Hibernation mode is… Re: monitor going into sleep mode Hardware and Software Microsoft Windows by nuwan4u Sleep Mode - When you don't use the PC for sometimes, … Re: Sleep Problem Programming Software Development by Narue Sleep from windows.h also takes milliseconds, not seconds. Your call would change to [ICODE]Sleep(5000)[/ICODE]. Re: pc can't wake from sleep Hardware and Software Microsoft Windows by gerbil Sleep issues often have a cause related to power management - ACPI … need to use password control to protect your return from sleep, simply doa s caper suggests, and set screen and drives… closing pgms!] he will lose his data when resumption from sleep fails? > i need to close all my programmes. otherwise… Re: What is sleep function Programming Software Development by trickykid sleep() perldoc is your friend. perldoc -f sleep Not sure what you mean by Package support, it's build into Perl.. Re: windows won't come back after computer goes into sleep mode Hardware and Software Microsoft Windows by caperjack sleep is a feature i never use so i have never had problems with it ,so i suggest to people ,unless you are using a laptop away form a powwer source and really need the extra battery life ,just turn the sleep feature off in power options . 100 Years ago... Community Center Geeks' Lounge by Salem Wake up, the world's about to end (or it must have seemed like it for some). [url]http://news.bbc.co.uk/2/hi/science/nature/7470283.stm[/url] Re: Java equivalant to C's getchar() Programming Software Development by server_crash Sleep or prompt the user? BufferedReader.readLine()? Re: Sleeping Threads Programming Software Development by Ancient Dragon Sleep() only works for the current thread, it does…the code you wrote. If you put that same Sleep() at the same place in the code for each… thread then each of them may sleep at the same time and confuse you, the programmer…. If that is the case, then maybe call Sleep() with a different parameter value for each thread so … Re: congestion control concurrent queue Programming Software Development by Ancient Dragon sleep() takes whole integers. You can't pass 0.99 and expect it to do anything because 0.99 is converted to just 0. If you want to sleep less than one second then use nanosleep() Re: Borland C++ vr 4.5 Programming Software Development by vegaseat Sleep(time_in_ms) is a Win32-API function and you might want to include windows.h Make sure you are using Sleep() and not sleep(). Re: pausing a command Programming Software Development by Aaerox Sleep is a kernel32.dll function. All exports of kernel32.dll are typically associated with windows.h. Re: problem with code Programming Software Development by Moschops Sleep is not part of the standard. Your system may or may not include it. If you're using windows, try [CODE]#include <windows.h>[/CODE] and use Sleep with a capital 'S'. If you're using a unixlike [CODE]#include <unistd.h>[/CODE] and use usleep. Re: replacing windows functions with ubuntu linux Programming Software Development by iamthwee sleep is in unistd.h Re: replacing windows functions with ubuntu linux Programming Software Development by Ancient Dragon sleep takes parameter in seconds -- I think there is a usleep … Re: MakePauseClass(int seconds) Programming Software Development by JamesCherrill sleep is fine, wait is inherited from Object and can also be used. Re: How to pause script before completion message Programming Web Development by Dani sleep() is the right approach, but you have to play with flushing the output buffer to force what should be echo’ed to the browser up to that point to the end-user. Sorry, I wish I could type more but I’m on my phone and not home.