Click here to Skip to main content
15,921,028 members

Survey Results

Do you defend the reputation of Windows Vista?   [Edit]

Survey period: 27 Oct 2008 to 3 Nov 2008

When friends, family or colleagues say "Vista Is Crap, [Other Technology] is better" what do you do?

OptionVotes% 
I usually argue that Vista is (overall) a better choice36820.87
I usually discuss the pros and cons of each OS in a balanced manner47727.06
I usually agree that Vista is crap60334.20
I avoid these arguments. Each to their own.31517.87



 
Generalvista Pin
Member 458977912-Jan-09 0:44
Member 458977912-Jan-09 0:44 
GeneralWindows Vista Pin
crayonshinchan30-Oct-08 9:25
crayonshinchan30-Oct-08 9:25 
GeneralRe: Windows Vista Pin
Josef Manurung31-Oct-08 12:28
Josef Manurung31-Oct-08 12:28 
GeneralMS is getting further behind Pin
Member 164767129-Oct-08 13:42
Member 164767129-Oct-08 13:42 
GeneralRe: MS is getting further behind Pin
Vasudevan Deepak Kumar31-Oct-08 11:14
Vasudevan Deepak Kumar31-Oct-08 11:14 
GeneralVista advice Pin
VentsyV29-Oct-08 8:54
VentsyV29-Oct-08 8:54 
GeneralRe: Vista advice Pin
robertw01929-Oct-08 15:03
robertw01929-Oct-08 15:03 
GeneralRe: Vista advice Pin
El Corazon30-Oct-08 3:16
El Corazon30-Oct-08 3:16 
JokeRe: Vista advice Pin
Jeremy Falcon30-Oct-08 9:26
professionalJeremy Falcon30-Oct-08 9:26 
GeneralRe: Vista advice Pin
VentsyV30-Oct-08 11:00
VentsyV30-Oct-08 11:00 
GeneralOh come on, its not that bad Pin
Rob Philpott29-Oct-08 7:05
Rob Philpott29-Oct-08 7:05 
GeneralRe: Oh come on, its not that bad Pin
Expategghead29-Oct-08 7:34
Expategghead29-Oct-08 7:34 
GeneralRe: Oh come on, its not that bad Pin
El Corazon29-Oct-08 8:39
El Corazon29-Oct-08 8:39 
GeneralRe: Oh come on, its not that bad Pin
PIEBALDconsult30-Oct-08 13:56
mvePIEBALDconsult30-Oct-08 13:56 
GeneralRe: Oh come on, its not that bad Pin
elektrowolf2-Nov-08 0:39
elektrowolf2-Nov-08 0:39 
GeneralRe: Oh come on, its not that bad Pin
PIEBALDconsult2-Nov-08 2:54
mvePIEBALDconsult2-Nov-08 2:54 
GeneralRe: Oh come on, its not that bad Pin
Severian@Severian.org3-Nov-08 8:46
Severian@Severian.org3-Nov-08 8:46 
GeneralSpirituality Pin
W Balboos, GHB28-Oct-08 1:51
W Balboos, GHB28-Oct-08 1:51 
GeneralRe: Spirituality Pin
John M. Drescher28-Oct-08 5:05
John M. Drescher28-Oct-08 5:05 
Generalmore than 33% usually agree that Vista is a crap Pin
hfrmobile27-Oct-08 23:57
hfrmobile27-Oct-08 23:57 
GeneralI'm still hoping for a new version of Windows 3 Pin
PIEBALDconsult27-Oct-08 18:14
mvePIEBALDconsult27-Oct-08 18:14 
QuestionInconsistancy with high precision timing in Vista Pin
Jose Praveen27-Oct-08 16:20
Jose Praveen27-Oct-08 16:20 
Dear all,

Any of you have code for a high-resolution precise timer under Vista.?(Expected atleast 1 micro-second precision). The purpose is to do data-transfer to and fro PCI device between very small time intervals(0.0001s). Even minute inconsistancy will affect the end result.

Stated below are two assembly functions which I've been calling till today from my VC++ application to attain this. Both works perfectly under all previous Windows OS (frm Windows 98 - XP) with acceptable consistancy (less than 0.2% error always) and nano-second resolution.

Though it is working on Vista, its not providing that sort of accuracy, even after disabling all eye-candy graphic options of Vista.


Function - 1

__int64 GetMachineCycleCount()
{ __int64 cycles; _asm rdtsc; // won't work on 486 or below - only pentium or above
_asm lea ebx,cycles;
_asm mov [ebx],eax;
_asm mov [ebx+4],edx; return cycles; }


Function - 2


void Delay(__int64 uSec )
{
__int64 n=0;
for(__int64 i = 0; i < uSec; i++)
{
n++;
_asm nop
}
}



Any suggestions on modification of these codes or support on a code for a consistant-high-resolution timer on Vista would is greatly appreciated.


Thanks in Advance - Jose
Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused: Confused | :confused:
JokeRe: Inconsistancy with high precision timing in Vista Pin
Jeremy Falcon27-Oct-08 19:12
professionalJeremy Falcon27-Oct-08 19:12 
GeneralRe: Inconsistancy with high precision timing in Vista Pin
Jose Praveen28-Oct-08 17:26
Jose Praveen28-Oct-08 17:26 
GeneralRe: Inconsistancy with high precision timing in Vista Pin
Jeremy Falcon30-Oct-08 9:31
professionalJeremy Falcon30-Oct-08 9:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.