Results 1 to 4 of 4

Thread: Problem With Windows XP Network Settings

  1. #1
    Join Date
    Jan 2009
    Posts
    57

    Problem With Windows XP Network Settings

    I am having a strange problem with my windows xp computer. When i log in my computer the control panel settings are reset to default. So my preferrences are lost each time i log in the computer.

    Please help me regarding this problem

  2. #2
    Join Date
    Apr 2008
    Posts
    3,424

    Re: Problem With Windows XP Network Settings

    This setting allows you to determine how the drop-down list on the Publish tab is triggered. The default setting of "Hover" will cause the list to appear whenever the mouse is hovered over the tab. You may alternatively select "Click", which will require you to click on the button before the list will appear, or "None", which will take you to a page with a list of available weblogs.

  3. #3
    Join Date
    May 2008
    Posts
    3,516

    Re: Problem With Windows XP Network Settings

    You can call the SystemParametersInfo API to set and get all the settings controlled by the Windows Control Panel. Normally a user would have to choose the Windows Control Panel to view or change system settings such as granularity, wallpaper, or icon title wrap. Instead of forcing the user to set things manually using the Control Panel you can have your program call the SystemParametersInfo API to set them automatically.

    Code:
    Declare Function SystemParametersInfo Lib "User" (ByVal uAction
          As Integer, ByVal uparam As Integer, lpvParam As Any, ByVal fuWinIni
          As Integer) As Integer
    Code:
    uAction    system parameter to query or set
       uParam     depends on system parameter
       lpvParam   depends on system parameter
       fuWinIni   WIN.INI update flag
    The UParam argument should be 0 when used with a GET constant, and it should contain the new value of the setting when used with a SET constant. The exceptions to these rules are documented in the Windows version 3.1 Software Development Kit (SDK) help file.

    When used with a GET constant, the lpvParam argument returns the current value of the setting. When used with a SET constant, it is a NULL. The exceptions to these rules are documented in the Windows version 3.1 SDK help file.

    The fuWinIni argument updates the WIN.INI file:

    Code:
    Const SPIF_SENDWININICHANGE = &H2
       Const SPIF_UPDATEINIFILE = &H1

  4. #4
    Join Date
    Apr 2008
    Posts
    3,339

    Re: Problem With Windows XP Network Settings

    left click start and right click on where the control panel would be (not on one of the selections but in the grey area or just right cick on the Start button). A properties box should pop up (or a box with many selections and Properties being one of them)
    Left click on the properties box. You should see the Taskbar and Start Menu tabs.
    Put a dot in the radio selection for the Start menu (not the Classic Start menu) and then click on the customize button.
    Now you should see the General and Advanced tabs. Select the Advanced tab.
    The Control Panel should be the first item in the list. Put a dot in the Display As A Link radio button.
    Click "OK" (it closes), click "Apply" then click "OK"
    Your Control Panel should be back on the start menu

Similar Threads

  1. Replies: 5
    Last Post: 23-01-2012, 10:47 AM
  2. Problem failover wireless network, wired network on windows 7
    By Kaustubh m in forum Networking & Security
    Replies: 5
    Last Post: 18-09-2010, 07:46 AM
  3. How to export the network settings in Windows 7
    By Pyrotechnic in forum Tips & Tweaks
    Replies: 1
    Last Post: 06-02-2010, 05:16 AM
  4. Replies: 3
    Last Post: 07-07-2009, 10:50 PM
  5. How to reset network connection settings in windows vista
    By Andrzej in forum Networking & Security
    Replies: 2
    Last Post: 23-06-2009, 12:40 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,966,538.34869 seconds with 16 queries