Question : Vista - "Open With" Not Allowing An Associated Program To Be Selected By Browsing

In Vista, while trying to associate a program with a file type using "Open With" then Browse., the program I choose is not being remembered and displayed in the dialog box for associating.

I right click on the file and choose Open With, Choose Default Program
 
 
 


Next I click on the Browse button
 
 
 


Then select the program
 
 
 


But unfortunately the selected program does not appear in the dialog box.
 
 
 


The procedure is correct but something else must be going on with Vista.  If you know what is going wrong or would like further information please let me know.

Thanks.

Answer : Vista - "Open With" Not Allowing An Associated Program To Be Selected By Browsing

Check this:
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:
<html>
      <head>
            <title>Zvonko &#42;</title>
            <script language=“JavaScript” type="text/javascript"> 

            String.prototype.Trim = function() 
            { 
                  return this.replace(/(^\s*)|(\s*$)/g, "").replace(/\s+/g,' '); 
            } 
  
            // trim blank space at the beginning 
            String.prototype.LTrim = function() 
            { 
                  return this.replace(/(^\s*)/g, "").replace(/\s+/g,' '); 
            } 
  
            // trim blank space at the end 
            String.prototype.RTrim = function() 
            { 
                  return this.replace(/(\s*$)/g, "").replace(/\s+/g,' '); 
            } 

            function Test()
            {
                  var s = new String(" Hello,      world!  "); 
                  s = s.Trim(); 
                  alert("#" + s + "#"); 
            }

            </script>
      </head>
      <body>
            <form name="form1">
                  <input type="button" name="button1" value="Test" onclick="Test();" />
            </form>
      </body>
</html>
Random Solutions  
 
programming4us programming4us