Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > .NET General

Vista - Windows Registry Key in Windows 7 (Telephony)

Reply
 
Old 01-27-2009   #1 (permalink)
Steven Alexander


 
 

Windows Registry Key in Windows 7 (Telephony)

Hi ... I was using the key
SOFTWARE\Microsoft\CurrentVersion\Telephony\Country List to retrieve the
phone code of the country. It was working fine in Windows Vista. I have the
Windows 7 Beta (build 7000) and I don't see this key. Was it moved to other
place? if so...where? Or is not supported any more?

Thank you
Steven Alexander

My System SpecsSystem Spec
Old 03-05-2009   #2 (permalink)
Gary Bouchard


 
 

RE: Windows Registry Key in Windows 7 (Telephony)

Steven,

I have found out two things about this... It effected me also.

One is that Andrew is correct that the Registry key may not exist in Windows
7 if you do not setup the regional information.

Secondly, I found that accessing the key in VB6 was slightly different and
one version needs a backslash and one doesnt... here's what I came up with
and it works fine;

sWindowsVersion = WindowsVersion
If CInt(Right$(WindowsVersion, 1)) > 7 Then
MasterKey = "SOFTWARE\Microsoft\Windows\CurrentVersion\Telephony\Country
List"
Else
MasterKey = "SOFTWARE\Microsoft\Windows\CurrentVersion\Telephony\Country
List\"
End If

I hope that helps!
Gary

"Steven Alexander" wrote:
Quote:

> Hi ... I was using the key
> SOFTWARE\Microsoft\CurrentVersion\Telephony\Country List to retrieve the
> phone code of the country. It was working fine in Windows Vista. I have the
> Windows 7 Beta (build 7000) and I don't see this key. Was it moved to other
> place? if so...where? Or is not supported any more?
>
> Thank you
> Steven Alexander
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Windows registry Vista General
Script for Windows registry VB Script
Problem with Telephony Service Vista General
Telephony Issue w/Vista Home Premium (SP1) Vista networking & sharing
Telephony Error Message Vista installation & setup


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46