Hi all,

I cannot get the information in details view of "Network and Dial-up
Connections", may I have your suggestion about what is going wrong?

Code start:
sNetworkFolderName = "Network and Dial-up Connections"
Const ssfCONTROLS = 3
set shellApp = createobject("shell.application")
set oControlPanel = shellApp.Namespace(ssfCONTROLS)
for each folderitem in oControlPanel.items
if folderitem.name = sNetworkFolderName then
set oNetConnections = folderitem.getfolder
exit for
end if
next
for each folderitem in oNetConnections.items
msgbox folderitem.name
'can get the name successfully
msgbox "hi " & folderitem.ExtendedProperty("Status")
'get hi only
next
Code End

Thanks a lot