Question : global start menu on WTS server

I want all users to see Outlook on the Start menu of the terminal server and NOT Outlook Express.

How can I adjust this globally?

Answer : global start menu on WTS server

If you want to match the values reported by the Format...Cells...Column Width menu item, then the following macro will do so. It asks the user to select a range of cells that includes the desired columns. It will then add a worksheet at the end of the workbook to display the columns widths.

Brad
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
Sub ColumnWidths()
Dim targ As Range, cel As Range
On Error Resume Next
Set targ = Application.InputBox("Please select the range you want to report columns widths for", Type:=8)
On Error GoTo 0
If targ Is Nothing Then Exit Sub

Application.ScreenUpdating = False
Set targ = targ.Rows(1)
With Worksheets.Add(after:=Worksheets(Worksheets.Count))
    For Each cel In targ.Cells
        .Cells(1, cel.Column) = cel.EntireColumn.ColumnWidth
    Next
End With
Application.ScreenUpdating = True
End Sub
Random Solutions  
 
programming4us programming4us