CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: .Rgs File

  1. #1
    Join Date
    Apr 2005
    Posts
    1,828

    .Rgs File

    I have an internet Explorer Addin in which I have to make changes in the .RGS file. Now this is the registry key that will be created

    Code:
     
    HKLM
    {
    	Software
    	{
    		Microsoft
    		{
    			'Internet Explorer'
    			{
    				Extensions
    				{
    					ForceRemove	{A26ABCF0-1C8F-46e7-A67C-0489DC21B9CC} = s 'U-2-Me Toolbar'
    					{
    						????????????????????????????????????????????????
    					}
    				}
    			}
    		}
    	}
    }
    I have to write this thing within that section "BarSize = 23 01 00 00 00 00 00 00" so how can I write it?

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: .Rgs File

    I have no idea what .rgs files are (since I nver used them).
    Perhaps, this KB220836 could help?
    Victor Nijegorodov

  3. #3
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: .Rgs File

    Creating Registrar Scripts
    Never dealt with REG_BINARY, but suppose this should be something like this:
    Code:
    val 'BarSize' = b '&H23 1 0 0 0 0 0 0'
    Best regards,
    Igor

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured