Help and Support
 

powered byLive Search

PRB: SaveSetting and GetSetting Are Not Available in Visual Basic 6.0 WebClass (IIS Application)

Article ID:248348
Last Review:August 6, 2007
Revision:2.4
This article was previously published under Q248348

SYMPTOMS

Calls to the SaveSetting, GetSetting, DeleteSetting or GetAllSettings methods in a Visual Basic 6.0 WebClass [Internet Information Server (IIS) Application] return the following errors in the Application log of the Windows NT Event Viewer:
Application-defined or object-defined error
-and-
The VB Application identified by the event source logged this Application Project1: Thread ID: 317 ,Logged: MsgBox , Run-time error '5': Invalid procedure call or argument

Back to the top

CAUSE

The SaveSetting, GetSetting, DeleteSetting, and GetAllSettings methods in Visual Basic are not available in Visual Basic 6.0 WebClasses (IIS Applications) when running in a compiled state. You should not use these methods in your WebClass applications.

Visual Basic 6.0 WebClasses run under the Internet Information Server service. SaveSetting, GetSetting, DeleteSetting, and GetAllSettings manage registry keys in the HKEY_CURRENT_USER registry hive. The Internet Information Server service does not have an HKEY_CURRENT_USER registry hive available. As a result, the error occurs when calling these methods.

Back to the top

RESOLUTION

If you need to read and write to the registry, you need to write to and read from HKEY_LOCAL_MACHINE or HKEY_USERS, which are available to the Internet Information Server service. You may use the Windows Script Host for this purpose, or another component that provides this functionality.

Back to the top

STATUS

This behavior is by design.

Back to the top

MORE INFORMATION

The following is sample Windows Script Host code to read and write from the registry:
Private Sub WebClass_Start()
    Dim objWSH As Object
    
    Set objWSH = CreateObject("WScript.Shell")
    
    objWSH.RegWrite "HKEY_LOCAL_MACHINE\Software\MyApplication\strValue", "Some string value"
    objWSH.RegWrite "HKEY_LOCAL_MACHINE\Software\MyApplication\strReg\", 1, "REG_DWORD"

    Response.Write objWSH.RegRead("HKEY_LOCAL_MACHINE\Software\MyApplication\strValue") & "<P>"
    Response.Write objWSH.RegRead("HKEY_LOCAL_MACHINE\Software\MyApplication\strReg\") & "<P>"
    
    objWSH.RegDelete "HKEY_LOCAL_MACHINE\Software\MyApplication\strValue"
    objWSH.RegDelete "HKEY_LOCAL_MACHINE\Software\MyApplication\strReg\"
    objWSH.RegDelete "HKEY_LOCAL_MACHINE\Software\MyApplication\"
End Sub
				

Back to the top

REFERENCES

You can download the Windows Script Host from the following location:
http://www.microsoft.com/downloads/details.aspx?FamilyID=01592C48-207D-4BE1-8A76-1C4099D7BBB9&displaylang=en (http://www.microsoft.com/downloads/details.aspx?FamilyID=01592C48-207D-4BE1-8A76-1C4099D7BBB9&displaylang=en)

Back to the top


APPLIES TO
Microsoft Visual Basic 6.0 Learning Edition
Microsoft Visual Basic 6.0 Professional Edition
Microsoft Visual Basic Enterprise Edition for Windows 6.0

Back to the top

Keywords: 
kbprb kbregistry kbwebclasses KB248348

Back to the top

Article Translations

 

Other Support Options

  • Need More Help?
    Contact a Support professional by Email, Online or Phone.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.