PC Review


Reply
Thread Tools Rate Thread

Cut button is disabled

 
 
=?Utf-8?B?QXNpZg==?=
Guest
Posts: n/a
 
      28th Sep 2007
I have used following code to disable cut in a worksheet. But remains
disabled permanently for the workbook and even for other workbooks. I'd have
to re-start Excel to get it enabled. Is there a workaround... please help.

Private Sub Worksheet_Activate()
Dim eCtrl As CommandBarControl
On Error Resume Next
For Each eCtrl In Application.CommandBars
eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
Next eCtrl
With Application
If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
.OnKey "^x", ""
.CellDragAndDrop = False
.CopyObjectsWithCells = False
End With
End Sub

--
Thanx & regards,
Asif
 
Reply With Quote
 
 
 
 
Equiangular
Guest
Posts: n/a
 
      28th Sep 2007
How about reenable the buttons in Worksheet_Deactivate() ?

Asif wrote:
> I have used following code to disable cut in a worksheet. But remains
> disabled permanently for the workbook and even for other workbooks. I'd have
> to re-start Excel to get it enabled. Is there a workaround... please help.
>
> Private Sub Worksheet_Activate()
> Dim eCtrl As CommandBarControl
> On Error Resume Next
> For Each eCtrl In Application.CommandBars
> eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> Next eCtrl
> With Application
> If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> .OnKey "^x", ""
> .CellDragAndDrop = False
> .CopyObjectsWithCells = False
> End With
> End Sub
>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      28th Sep 2007
Hi Asif

You must reset it in the Worksheet_Deactivate event

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
>I have used following code to disable cut in a worksheet. But remains
> disabled permanently for the workbook and even for other workbooks. I'd have
> to re-start Excel to get it enabled. Is there a workaround... please help.
>
> Private Sub Worksheet_Activate()
> Dim eCtrl As CommandBarControl
> On Error Resume Next
> For Each eCtrl In Application.CommandBars
> eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> Next eCtrl
> With Application
> If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> .OnKey "^x", ""
> .CellDragAndDrop = False
> .CopyObjectsWithCells = False
> End With
> End Sub
>
> --
> Thanx & regards,
> Asif

 
Reply With Quote
 
=?Utf-8?B?QXNpZg==?=
Guest
Posts: n/a
 
      28th Sep 2007
I have a similar routine re-enabling everything in the Worksheet_Deactivate
event. Still doesn't work.

--
Thanx & regards,
Asif


"Ron de Bruin" wrote:

> Hi Asif
>
> You must reset it in the Worksheet_Deactivate event
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
> >I have used following code to disable cut in a worksheet. But remains
> > disabled permanently for the workbook and even for other workbooks. I'd have
> > to re-start Excel to get it enabled. Is there a workaround... please help.
> >
> > Private Sub Worksheet_Activate()
> > Dim eCtrl As CommandBarControl
> > On Error Resume Next
> > For Each eCtrl In Application.CommandBars
> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> > Next eCtrl
> > With Application
> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> > .OnKey "^x", ""
> > .CellDragAndDrop = False
> > .CopyObjectsWithCells = False
> > End With
> > End Sub
> >
> > --
> > Thanx & regards,
> > Asif

>

 
Reply With Quote
 
=?Utf-8?B?QXNpZg==?=
Guest
Posts: n/a
 
      28th Sep 2007
The cut button remains permanently disabled but I can use ctrl-x in other
worksheets of the same workbook. The cut button gets restored after re-start.
--
Thanx & regards,
Asif


"Asif" wrote:

> I have a similar routine re-enabling everything in the Worksheet_Deactivate
> event. Still doesn't work.
>
> --
> Thanx & regards,
> Asif
>
>
> "Ron de Bruin" wrote:
>
> > Hi Asif
> >
> > You must reset it in the Worksheet_Deactivate event
> >
> > --
> >
> > Regards Ron de Bruin
> > http://www.rondebruin.nl/tips.htm
> >
> >
> > "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
> > >I have used following code to disable cut in a worksheet. But remains
> > > disabled permanently for the workbook and even for other workbooks. I'd have
> > > to re-start Excel to get it enabled. Is there a workaround... please help.
> > >
> > > Private Sub Worksheet_Activate()
> > > Dim eCtrl As CommandBarControl
> > > On Error Resume Next
> > > For Each eCtrl In Application.CommandBars
> > > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> > > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> > > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> > > Next eCtrl
> > > With Application
> > > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> > > .OnKey "^x", ""
> > > .CellDragAndDrop = False
> > > .CopyObjectsWithCells = False
> > > End With
> > > End Sub
> > >
> > > --
> > > Thanx & regards,
> > > Asif

> >

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      28th Sep 2007
There are more problems with your code

To disable Cut for example in all toolbars use

Private Sub Worksheet_Activate()
' Excel 2000 - 2003
Dim Ctrl As Office.CommandBarControl
For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
Ctrl.Enabled = False
Next Ctrl
End Sub


Private Sub Worksheet_Deactivate()
' Excel 2000 - 2003
Dim Ctrl As Office.CommandBarControl
For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
Ctrl.Enabled = False
Next Ctrl
End Sub


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Asif" <(E-Mail Removed)> wrote in message news:B3A3F396-D3E9-4BC1-BAB6-(E-Mail Removed)...
>I have a similar routine re-enabling everything in the Worksheet_Deactivate
> event. Still doesn't work.
>
> --
> Thanx & regards,
> Asif
>
>
> "Ron de Bruin" wrote:
>
>> Hi Asif
>>
>> You must reset it in the Worksheet_Deactivate event
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
>> >I have used following code to disable cut in a worksheet. But remains
>> > disabled permanently for the workbook and even for other workbooks. I'd have
>> > to re-start Excel to get it enabled. Is there a workaround... please help.
>> >
>> > Private Sub Worksheet_Activate()
>> > Dim eCtrl As CommandBarControl
>> > On Error Resume Next
>> > For Each eCtrl In Application.CommandBars
>> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
>> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
>> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
>> > Next eCtrl
>> > With Application
>> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
>> > .OnKey "^x", ""
>> > .CellDragAndDrop = False
>> > .CopyObjectsWithCells = False
>> > End With
>> > End Sub
>> >
>> > --
>> > Thanx & regards,
>> > Asif

>>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      28th Sep 2007
Oops, the last one(Deactivate) must be True instead of false

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> There are more problems with your code
>
> To disable Cut for example in all toolbars use
>
> Private Sub Worksheet_Activate()
> ' Excel 2000 - 2003
> Dim Ctrl As Office.CommandBarControl
> For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> Ctrl.Enabled = False
> Next Ctrl
> End Sub
>
>
> Private Sub Worksheet_Deactivate()
> ' Excel 2000 - 2003
> Dim Ctrl As Office.CommandBarControl
> For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> Ctrl.Enabled = False
> Next Ctrl
> End Sub
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "Asif" <(E-Mail Removed)> wrote in message news:B3A3F396-D3E9-4BC1-BAB6-(E-Mail Removed)...
>>I have a similar routine re-enabling everything in the Worksheet_Deactivate
>> event. Still doesn't work.
>>
>> --
>> Thanx & regards,
>> Asif
>>
>>
>> "Ron de Bruin" wrote:
>>
>>> Hi Asif
>>>
>>> You must reset it in the Worksheet_Deactivate event
>>>
>>> --
>>>
>>> Regards Ron de Bruin
>>> http://www.rondebruin.nl/tips.htm
>>>
>>>
>>> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
>>> >I have used following code to disable cut in a worksheet. But remains
>>> > disabled permanently for the workbook and even for other workbooks. I'd have
>>> > to re-start Excel to get it enabled. Is there a workaround... please help.
>>> >
>>> > Private Sub Worksheet_Activate()
>>> > Dim eCtrl As CommandBarControl
>>> > On Error Resume Next
>>> > For Each eCtrl In Application.CommandBars
>>> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
>>> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
>>> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
>>> > Next eCtrl
>>> > With Application
>>> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
>>> > .OnKey "^x", ""
>>> > .CellDragAndDrop = False
>>> > .CopyObjectsWithCells = False
>>> > End With
>>> > End Sub
>>> >
>>> > --
>>> > Thanx & regards,
>>> > Asif
>>>

 
Reply With Quote
 
=?Utf-8?B?QXNpZg==?=
Guest
Posts: n/a
 
      28th Sep 2007
Hi Ron,

I do not want to disable ctrl-x for all office. I just want to do so in one
particular worksheet. Also, any idea why i can't disable clear in the code
below.

--
Thanx & regards,
Asif

"Ron de Bruin" wrote:

> Oops, the last one(Deactivate) must be True instead of false
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> > There are more problems with your code
> >
> > To disable Cut for example in all toolbars use
> >
> > Private Sub Worksheet_Activate()
> > ' Excel 2000 - 2003
> > Dim Ctrl As Office.CommandBarControl
> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> > Ctrl.Enabled = False
> > Next Ctrl
> > End Sub
> >
> >
> > Private Sub Worksheet_Deactivate()
> > ' Excel 2000 - 2003
> > Dim Ctrl As Office.CommandBarControl
> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> > Ctrl.Enabled = False
> > Next Ctrl
> > End Sub
> >
> >
> > --
> >
> > Regards Ron de Bruin
> > http://www.rondebruin.nl/tips.htm
> >
> >
> > "Asif" <(E-Mail Removed)> wrote in message news:B3A3F396-D3E9-4BC1-BAB6-(E-Mail Removed)...
> >>I have a similar routine re-enabling everything in the Worksheet_Deactivate
> >> event. Still doesn't work.
> >>
> >> --
> >> Thanx & regards,
> >> Asif
> >>
> >>
> >> "Ron de Bruin" wrote:
> >>
> >>> Hi Asif
> >>>
> >>> You must reset it in the Worksheet_Deactivate event
> >>>
> >>> --
> >>>
> >>> Regards Ron de Bruin
> >>> http://www.rondebruin.nl/tips.htm
> >>>
> >>>
> >>> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
> >>> >I have used following code to disable cut in a worksheet. But remains
> >>> > disabled permanently for the workbook and even for other workbooks. I'd have
> >>> > to re-start Excel to get it enabled. Is there a workaround... please help.
> >>> >
> >>> > Private Sub Worksheet_Activate()
> >>> > Dim eCtrl As CommandBarControl
> >>> > On Error Resume Next
> >>> > For Each eCtrl In Application.CommandBars
> >>> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> >>> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> >>> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> >>> > Next eCtrl
> >>> > With Application
> >>> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> >>> > .OnKey "^x", ""
> >>> > .CellDragAndDrop = False
> >>> > .CopyObjectsWithCells = False
> >>> > End With
> >>> > End Sub
> >>> >
> >>> > --
> >>> > Thanx & regards,
> >>> > Asif
> >>>

>

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      28th Sep 2007
If you copy the two events I posted in a worksheet module you see that it will work only for that worksheet
Is it working for you?????????

From which Toolbar do you want to disable the items


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Asif" <(E-Mail Removed)> wrote in message news:63C9812B-C542-4DE3-ABFD-(E-Mail Removed)...
> Hi Ron,
>
> I do not want to disable ctrl-x for all office. I just want to do so in one
> particular worksheet. Also, any idea why i can't disable clear in the code
> below.
>
> --
> Thanx & regards,
> Asif
>
> "Ron de Bruin" wrote:
>
>> Oops, the last one(Deactivate) must be True instead of false
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>> "Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>> > There are more problems with your code
>> >
>> > To disable Cut for example in all toolbars use
>> >
>> > Private Sub Worksheet_Activate()
>> > ' Excel 2000 - 2003
>> > Dim Ctrl As Office.CommandBarControl
>> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
>> > Ctrl.Enabled = False
>> > Next Ctrl
>> > End Sub
>> >
>> >
>> > Private Sub Worksheet_Deactivate()
>> > ' Excel 2000 - 2003
>> > Dim Ctrl As Office.CommandBarControl
>> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
>> > Ctrl.Enabled = False
>> > Next Ctrl
>> > End Sub
>> >
>> >
>> > --
>> >
>> > Regards Ron de Bruin
>> > http://www.rondebruin.nl/tips.htm
>> >
>> >
>> > "Asif" <(E-Mail Removed)> wrote in message news:B3A3F396-D3E9-4BC1-BAB6-(E-Mail Removed)...
>> >>I have a similar routine re-enabling everything in the Worksheet_Deactivate
>> >> event. Still doesn't work.
>> >>
>> >> --
>> >> Thanx & regards,
>> >> Asif
>> >>
>> >>
>> >> "Ron de Bruin" wrote:
>> >>
>> >>> Hi Asif
>> >>>
>> >>> You must reset it in the Worksheet_Deactivate event
>> >>>
>> >>> --
>> >>>
>> >>> Regards Ron de Bruin
>> >>> http://www.rondebruin.nl/tips.htm
>> >>>
>> >>>
>> >>> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
>> >>> >I have used following code to disable cut in a worksheet. But remains
>> >>> > disabled permanently for the workbook and even for other workbooks. I'd have
>> >>> > to re-start Excel to get it enabled. Is there a workaround... please help.
>> >>> >
>> >>> > Private Sub Worksheet_Activate()
>> >>> > Dim eCtrl As CommandBarControl
>> >>> > On Error Resume Next
>> >>> > For Each eCtrl In Application.CommandBars
>> >>> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
>> >>> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
>> >>> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
>> >>> > Next eCtrl
>> >>> > With Application
>> >>> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
>> >>> > .OnKey "^x", ""
>> >>> > .CellDragAndDrop = False
>> >>> > .CopyObjectsWithCells = False
>> >>> > End With
>> >>> > End Sub
>> >>> >
>> >>> > --
>> >>> > Thanx & regards,
>> >>> > Asif
>> >>>

>>

 
Reply With Quote
 
=?Utf-8?B?QXNpZg==?=
Guest
Posts: n/a
 
      28th Sep 2007
I'm using Excel 2003. Before the "Cut" in Edit menu was getting disabled. Now
it remains enabled. The cut button on Standard bar remains disabled though.

--
Thanx & regards,
Asif


"Ron de Bruin" wrote:

> If you copy the two events I posted in a worksheet module you see that it will work only for that worksheet
> Is it working for you?????????
>
> From which Toolbar do you want to disable the items
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "Asif" <(E-Mail Removed)> wrote in message news:63C9812B-C542-4DE3-ABFD-(E-Mail Removed)...
> > Hi Ron,
> >
> > I do not want to disable ctrl-x for all office. I just want to do so in one
> > particular worksheet. Also, any idea why i can't disable clear in the code
> > below.
> >
> > --
> > Thanx & regards,
> > Asif
> >
> > "Ron de Bruin" wrote:
> >
> >> Oops, the last one(Deactivate) must be True instead of false
> >>
> >> --
> >>
> >> Regards Ron de Bruin
> >> http://www.rondebruin.nl/tips.htm
> >>
> >>
> >> "Ron de Bruin" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> >> > There are more problems with your code
> >> >
> >> > To disable Cut for example in all toolbars use
> >> >
> >> > Private Sub Worksheet_Activate()
> >> > ' Excel 2000 - 2003
> >> > Dim Ctrl As Office.CommandBarControl
> >> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> >> > Ctrl.Enabled = False
> >> > Next Ctrl
> >> > End Sub
> >> >
> >> >
> >> > Private Sub Worksheet_Deactivate()
> >> > ' Excel 2000 - 2003
> >> > Dim Ctrl As Office.CommandBarControl
> >> > For Each Ctrl In Application.CommandBars.FindControls(ID:=21)
> >> > Ctrl.Enabled = False
> >> > Next Ctrl
> >> > End Sub
> >> >
> >> >
> >> > --
> >> >
> >> > Regards Ron de Bruin
> >> > http://www.rondebruin.nl/tips.htm
> >> >
> >> >
> >> > "Asif" <(E-Mail Removed)> wrote in message news:B3A3F396-D3E9-4BC1-BAB6-(E-Mail Removed)...
> >> >>I have a similar routine re-enabling everything in the Worksheet_Deactivate
> >> >> event. Still doesn't work.
> >> >>
> >> >> --
> >> >> Thanx & regards,
> >> >> Asif
> >> >>
> >> >>
> >> >> "Ron de Bruin" wrote:
> >> >>
> >> >>> Hi Asif
> >> >>>
> >> >>> You must reset it in the Worksheet_Deactivate event
> >> >>>
> >> >>> --
> >> >>>
> >> >>> Regards Ron de Bruin
> >> >>> http://www.rondebruin.nl/tips.htm
> >> >>>
> >> >>>
> >> >>> "Asif" <(E-Mail Removed)> wrote in message news:75EB95F2-E7FA-4120-BAC2-(E-Mail Removed)...
> >> >>> >I have used following code to disable cut in a worksheet. But remains
> >> >>> > disabled permanently for the workbook and even for other workbooks. I'd have
> >> >>> > to re-start Excel to get it enabled. Is there a workaround... please help.
> >> >>> >
> >> >>> > Private Sub Worksheet_Activate()
> >> >>> > Dim eCtrl As CommandBarControl
> >> >>> > On Error Resume Next
> >> >>> > For Each eCtrl In Application.CommandBars
> >> >>> > eCtrl.FindControls(ID:=21).Enabled = 0 'Disable Ctrl-x
> >> >>> > eCtrl.FindControls(ID:=1964).Enabled = 0 'Disable Clear - All
> >> >>> > eCtrl.FindControls(ID:=872).Enabled = 0 'Disable Clear - Formats
> >> >>> > Next eCtrl
> >> >>> > With Application
> >> >>> > If .CutCopyMode = xlCut Then .CutCopyMode = False 'Clear clipboard
> >> >>> > .OnKey "^x", ""
> >> >>> > .CellDragAndDrop = False
> >> >>> > .CopyObjectsWithCells = False
> >> >>> > End With
> >> >>> > End Sub
> >> >>> >
> >> >>> > --
> >> >>> > Thanx & regards,
> >> >>> > Asif
> >> >>>
> >>

>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vista SP2: Stop button disabled when Send/Recv button pressed Sartre Windows Vista Mail 1 13th May 2009 02:43 AM
disabled radio button labels don't look disabled (grey) Bill R via AccessMonster.com Microsoft Access Form Coding 5 18th Nov 2005 03:02 PM
button disabled? =?Utf-8?B?YjExXw==?= Windows XP General 6 14th Nov 2005 06:49 PM
C#: Toolbar button image not visible for a disabled button. Sveta Microsoft C# .NET 2 19th Jul 2004 11:06 PM
Stand by button is disabled... Jake Windows XP Customization 0 9th Jul 2003 09:00 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:13 AM.