Hi,
I'm trying to hide an event of my custom usercontrol derived control,
something like "Shadows" in VB.Net, but although the event is hidden from
PropertyGrid, from CodeEditor I can still see/reach it. I use this code :
[EditorBrowsable(EditorBrowsableState.Never)]
[Browsable(false)]
new public event EventHandler BackColorChanged;
Does anybody knows a solution for this?
Thanks in advance,
Özden 10 3157
Try marking the event as protected or internal.
--
HTH
Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
| Hi,
|
| I'm trying to hide an event of my custom usercontrol derived control,
| something like "Shadows" in VB.Net, but although the event is hidden from
| PropertyGrid, from CodeEditor I can still see/reach it. I use this code :
|
| [EditorBrowsable(EditorBrowsableState.Never)]
|
| [Browsable(false)]
|
| new public event EventHandler BackColorChanged;
|
| Does anybody knows a solution for this?
|
| Thanks in advance,
|
| Özden
|
|
Dear Kyril,
Thanks for the suggestion but I already tried it at got no success...
Any other suggestion?
Thanks again..
Özden
"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:O2**************@tk2msftngp13.phx.gbl... Try marking the event as protected or internal.
-- HTH
Kyril Magnos "I'm not a developer anymore, I'm a software engineer now!" :-)
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message news:uZ**************@TK2MSFTNGP10.phx.gbl... | Hi, | | I'm trying to hide an event of my custom usercontrol derived control, | something like "Shadows" in VB.Net, but although the event is hidden
from | PropertyGrid, from CodeEditor I can still see/reach it. I use this code
: | | [EditorBrowsable(EditorBrowsableState.Never)] | | [Browsable(false)] | | new public event EventHandler BackColorChanged; | | Does anybody knows a solution for this? | | Thanks in advance, | | Özden | |
Hmm, short of marking the event private, no.
In what scope will this event be used? It is something that will only be
used internally by the control? Or, will consumers of the control be able to
register for the event?
--
HTH
Kyril
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:eC*************@tk2msftngp13.phx.gbl...
| Dear Kyril,
|
| Thanks for the suggestion but I already tried it at got no success...
|
| Any other suggestion?
|
| Thanks again..
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:O2**************@tk2msftngp13.phx.gbl...
| > Try marking the event as protected or internal.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | Hi,
| > |
| > | I'm trying to hide an event of my custom usercontrol derived control,
| > | something like "Shadows" in VB.Net, but although the event is hidden
| from
| > | PropertyGrid, from CodeEditor I can still see/reach it. I use this
code
| :
| > |
| > | [EditorBrowsable(EditorBrowsableState.Never)]
| > |
| > | [Browsable(false)]
| > |
| > | new public event EventHandler BackColorChanged;
| > |
| > | Does anybody knows a solution for this?
| > |
| > | Thanks in advance,
| > |
| > | Özden
| > |
| > |
| >
| >
|
|
Dear Kyril,
Yes, events are going to be used internally and won't be exposed to the
developer...Developer neither will see it in PropertyGrid nor will be able
to register it via code...
"Shadows" works in VB.Net but I couldn't find the same in C#...:(
Özden
"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OQ**************@tk2msftngp13.phx.gbl... Hmm, short of marking the event private, no.
In what scope will this event be used? It is something that will only be used internally by the control? Or, will consumers of the control be able
to register for the event?
-- HTH
Kyril
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message news:eC*************@tk2msftngp13.phx.gbl... | Dear Kyril, | | Thanks for the suggestion but I already tried it at got no success... | | Any other suggestion? | | Thanks again.. | | Özden | | "Kyril Magnos" <ky**********@yahoo.com> wrote in message | news:O2**************@tk2msftngp13.phx.gbl... | > Try marking the event as protected or internal. | > | > -- | > HTH | > | > Kyril Magnos | > "I'm not a developer anymore, I'm a software engineer now!" :-) | > | > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message | > news:uZ**************@TK2MSFTNGP10.phx.gbl... | > | Hi, | > | | > | I'm trying to hide an event of my custom usercontrol derived
control, | > | something like "Shadows" in VB.Net, but although the event is hidden | from | > | PropertyGrid, from CodeEditor I can still see/reach it. I use this code | : | > | | > | [EditorBrowsable(EditorBrowsableState.Never)] | > | | > | [Browsable(false)] | > | | > | new public event EventHandler BackColorChanged; | > | | > | Does anybody knows a solution for this? | > | | > | Thanks in advance, | > | | > | Özden | > | | > | | > | > | |
I think "new" in C# is the equivivalent of "Shadows" in VB.
/Chris
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl... Hi,
I'm trying to hide an event of my custom usercontrol derived control, something like "Shadows" in VB.Net, but although the event is hidden from PropertyGrid, from CodeEditor I can still see/reach it. I use this code :
[EditorBrowsable(EditorBrowsableState.Never)]
[Browsable(false)]
new public event EventHandler BackColorChanged;
Does anybody knows a solution for this?
Thanks in advance,
Özden
Hi Özden,
Then you would want to mark your event as private. That will allow access
internally to the class itself but will not allow access to it from
consumers or other outside components.
//this event is only seen from this class.
private event EventHandler myEvent;
--
HTH
Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:ev**************@TK2MSFTNGP12.phx.gbl...
| Dear Kyril,
|
| Yes, events are going to be used internally and won't be exposed to the
| developer...Developer neither will see it in PropertyGrid nor will be able
| to register it via code...
|
| "Shadows" works in VB.Net but I couldn't find the same in C#...:(
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:OQ**************@tk2msftngp13.phx.gbl...
| > Hmm, short of marking the event private, no.
| >
| > In what scope will this event be used? It is something that will only be
| > used internally by the control? Or, will consumers of the control be
able
| to
| > register for the event?
| >
| > --
| > HTH
| >
| > Kyril
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:eC*************@tk2msftngp13.phx.gbl...
| > | Dear Kyril,
| > |
| > | Thanks for the suggestion but I already tried it at got no success...
| > |
| > | Any other suggestion?
| > |
| > | Thanks again..
| > |
| > | Özden
| > |
| > | "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| > | news:O2**************@tk2msftngp13.phx.gbl...
| > | > Try marking the event as protected or internal.
| > | >
| > | > --
| > | > HTH
| > | >
| > | > Kyril Magnos
| > | > "I'm not a developer anymore, I'm a software engineer now!" :-)
| > | >
| > | > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | > news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > | Hi,
| > | > |
| > | > | I'm trying to hide an event of my custom usercontrol derived
| control,
| > | > | something like "Shadows" in VB.Net, but although the event is
hidden
| > | from
| > | > | PropertyGrid, from CodeEditor I can still see/reach it. I use this
| > code
| > | :
| > | > |
| > | > | [EditorBrowsable(EditorBrowsableState.Never)]
| > | > |
| > | > | [Browsable(false)]
| > | > |
| > | > | new public event EventHandler BackColorChanged;
| > | > |
| > | > | Does anybody knows a solution for this?
| > | > |
| > | > | Thanks in advance,
| > | > |
| > | > | Özden
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| >
| >
|
|
Yes, the new keyword is the equivalent of Shadows in VB.NET.
--
HTH
Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)
"Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message
news:Os**************@TK2MSFTNGP11.phx.gbl...
|I think "new" in C# is the equivivalent of "Shadows" in VB.
|
| /Chris
|
|
|
|
| "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > Hi,
| >
| > I'm trying to hide an event of my custom usercontrol derived control,
| > something like "Shadows" in VB.Net, but although the event is hidden
from
| > PropertyGrid, from CodeEditor I can still see/reach it. I use this code
:
| >
| > [EditorBrowsable(EditorBrowsableState.Never)]
| >
| > [Browsable(false)]
| >
| > new public event EventHandler BackColorChanged;
| >
| > Does anybody knows a solution for this?
| >
| > Thanks in advance,
| >
| > Özden
| >
| >
|
|
Hi Özden,
I did some research and came up with this. The BackColorChanged event is
inherited from UserControl and as such cannot be hidden from the code
internally in C#. One of the facts of life and inheritance. Now, while you
can hide it from the PropertyGrid by using Attributes, you will not be able
to hide it from code. Unfortunately, VB and C# do inheritance a bit
differently. The Shadows keyword in VB allows you to hide a base class
member by defining a new member that can have a different access level,
return type, and parameter signature. In other words, only the name remains
the same but the member itself may be completely different. Base class
members hidden in C# using the "new" keyword can only redefine their access
level and return type. The parameter signature must remain the same, or the
method is treated as an overload. This is why you cannot hide it completely
from code. But, I have a solution for you. While you cannot hide it, you can
override the OnBackColorChanged() method like so:
protected override void OnBackColorChanged(EventArgs e)
{
base.OnBackColorChanged (e);
throw new NotImplementedException("This event is unavailable");
//I just put this in, you can put whatever you want here...
}
So that even if the consumer registers for the event, they will not be able
to anything with it.
--
HTH
Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:e2**************@tk2msftngp13.phx.gbl...
|I know that "new" keyword is the equal/nearest functional in C# for
| "Shadows" in VB.Net but I couldn't get it work like in "Shadows"...
|
| I've attached two sample "usercontrol" files...In VB.Net, I can hide
| "BackColorChanged" with "Shadows" but in C#, even it hides it from the
| PropertyGrid, I can still see/reach it via code after I use "new"...
|
| Any help will be appreciated...
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:%2****************@TK2MSFTNGP10.phx.gbl...
| > Yes, the new keyword is the equivalent of Shadows in VB.NET.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message
| > news:Os**************@TK2MSFTNGP11.phx.gbl...
| > |I think "new" in C# is the equivivalent of "Shadows" in VB.
| > |
| > | /Chris
| > |
| > |
| > |
| > |
| > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > Hi,
| > | >
| > | > I'm trying to hide an event of my custom usercontrol derived
control,
| > | > something like "Shadows" in VB.Net, but although the event is hidden
| > from
| > | > PropertyGrid, from CodeEditor I can still see/reach it. I use this
| code
| > :
| > | >
| > | > [EditorBrowsable(EditorBrowsableState.Never)]
| > | >
| > | > [Browsable(false)]
| > | >
| > | > new public event EventHandler BackColorChanged;
| > | >
| > | > Does anybody knows a solution for this?
| > | >
| > | > Thanks in advance,
| > | >
| > | > Özden
| > | >
| > | >
| > |
| > |
| >
| >
|
|
|
Dear Kyril,
Thank you for your great effort on solving my problem...
Normally I don't care whether the events will work or not but it was
essential for me to hide the events as those events normally doesn't have
anything to do with my control, in a correct way, my control is for a
specific purpose and I didn't want to make it available for a generic usage
(Some technical and commercial reasons lies on this) so I wanted to hide the
events...
Anyway, if we can't do it, nothing else can be done...
I again want to thank you for your personal attention...
Best Wishes,
Özden Irmak
"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:u2**************@TK2MSFTNGP11.phx.gbl... Hi Özden,
I did some research and came up with this. The BackColorChanged event is inherited from UserControl and as such cannot be hidden from the code internally in C#. One of the facts of life and inheritance. Now, while you can hide it from the PropertyGrid by using Attributes, you will not be
able to hide it from code. Unfortunately, VB and C# do inheritance a bit differently. The Shadows keyword in VB allows you to hide a base class member by defining a new member that can have a different access level, return type, and parameter signature. In other words, only the name
remains the same but the member itself may be completely different. Base class members hidden in C# using the "new" keyword can only redefine their
access level and return type. The parameter signature must remain the same, or
the method is treated as an overload. This is why you cannot hide it
completely from code. But, I have a solution for you. While you cannot hide it, you
can override the OnBackColorChanged() method like so:
protected override void OnBackColorChanged(EventArgs e) { base.OnBackColorChanged (e); throw new NotImplementedException("This event is unavailable"); //I just put this in, you can put whatever you want here... }
So that even if the consumer registers for the event, they will not be
able to anything with it. -- HTH
Kyril Magnos "I'm not a developer anymore, I'm a software engineer now!" :-)
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message news:e2**************@tk2msftngp13.phx.gbl... |I know that "new" keyword is the equal/nearest functional in C# for | "Shadows" in VB.Net but I couldn't get it work like in "Shadows"... | | I've attached two sample "usercontrol" files...In VB.Net, I can hide | "BackColorChanged" with "Shadows" but in C#, even it hides it from the | PropertyGrid, I can still see/reach it via code after I use "new"... | | Any help will be appreciated... | | Özden | | "Kyril Magnos" <ky**********@yahoo.com> wrote in message | news:%2****************@TK2MSFTNGP10.phx.gbl... | > Yes, the new keyword is the equivalent of Shadows in VB.NET. | > | > -- | > HTH | > | > Kyril Magnos | > "I'm not a developer anymore, I'm a software engineer now!" :-) | > | > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message | > news:Os**************@TK2MSFTNGP11.phx.gbl... | > |I think "new" in C# is the equivivalent of "Shadows" in VB. | > | | > | /Chris | > | | > | | > | | > | | > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message | > | news:uZ**************@TK2MSFTNGP10.phx.gbl... | > | > Hi, | > | > | > | > I'm trying to hide an event of my custom usercontrol derived control, | > | > something like "Shadows" in VB.Net, but although the event is
hidden | > from | > | > PropertyGrid, from CodeEditor I can still see/reach it. I use this | code | > : | > | > | > | > [EditorBrowsable(EditorBrowsableState.Never)] | > | > | > | > [Browsable(false)] | > | > | > | > new public event EventHandler BackColorChanged; | > | > | > | > Does anybody knows a solution for this? | > | > | > | > Thanks in advance, | > | > | > | > Özden | > | > | > | > | > | | > | | > | > | | |
Not a problem at all. Best of luck to you. :-)
--
Kyril Magnos
"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:eF*************@TK2MSFTNGP11.phx.gbl...
| Dear Kyril,
|
| Thank you for your great effort on solving my problem...
|
| Normally I don't care whether the events will work or not but it was
| essential for me to hide the events as those events normally doesn't have
| anything to do with my control, in a correct way, my control is for a
| specific purpose and I didn't want to make it available for a generic
usage
| (Some technical and commercial reasons lies on this) so I wanted to hide
the
| events...
|
| Anyway, if we can't do it, nothing else can be done...
|
| I again want to thank you for your personal attention...
|
| Best Wishes,
|
| Özden Irmak
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:u2**************@TK2MSFTNGP11.phx.gbl...
| > Hi Özden,
| >
| > I did some research and came up with this. The BackColorChanged event is
| > inherited from UserControl and as such cannot be hidden from the code
| > internally in C#. One of the facts of life and inheritance. Now, while
you
| > can hide it from the PropertyGrid by using Attributes, you will not be
| able
| > to hide it from code. Unfortunately, VB and C# do inheritance a bit
| > differently. The Shadows keyword in VB allows you to hide a base class
| > member by defining a new member that can have a different access level,
| > return type, and parameter signature. In other words, only the name
| remains
| > the same but the member itself may be completely different. Base class
| > members hidden in C# using the "new" keyword can only redefine their
| access
| > level and return type. The parameter signature must remain the same, or
| the
| > method is treated as an overload. This is why you cannot hide it
| completely
| > from code. But, I have a solution for you. While you cannot hide it, you
| can
| > override the OnBackColorChanged() method like so:
| >
| > protected override void OnBackColorChanged(EventArgs e)
| > {
| > base.OnBackColorChanged (e);
| > throw new NotImplementedException("This event is unavailable");
| > //I just put this in, you can put whatever you want here...
| > }
| >
| > So that even if the consumer registers for the event, they will not be
| able
| > to anything with it.
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:e2**************@tk2msftngp13.phx.gbl...
| > |I know that "new" keyword is the equal/nearest functional in C# for
| > | "Shadows" in VB.Net but I couldn't get it work like in "Shadows"...
| > |
| > | I've attached two sample "usercontrol" files...In VB.Net, I can hide
| > | "BackColorChanged" with "Shadows" but in C#, even it hides it from the
| > | PropertyGrid, I can still see/reach it via code after I use "new"...
| > |
| > | Any help will be appreciated...
| > |
| > | Özden
| > |
| > | "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| > | news:%2****************@TK2MSFTNGP10.phx.gbl...
| > | > Yes, the new keyword is the equivalent of Shadows in VB.NET.
| > | >
| > | > --
| > | > HTH
| > | >
| > | > Kyril Magnos
| > | > "I'm not a developer anymore, I'm a software engineer now!" :-)
| > | >
| > | > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in
message
| > | > news:Os**************@TK2MSFTNGP11.phx.gbl...
| > | > |I think "new" in C# is the equivivalent of "Shadows" in VB.
| > | > |
| > | > | /Chris
| > | > |
| > | > |
| > | > |
| > | > |
| > | > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | > | news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > | > Hi,
| > | > | >
| > | > | > I'm trying to hide an event of my custom usercontrol derived
| > control,
| > | > | > something like "Shadows" in VB.Net, but although the event is
| hidden
| > | > from
| > | > | > PropertyGrid, from CodeEditor I can still see/reach it. I use
this
| > | code
| > | > :
| > | > | >
| > | > | > [EditorBrowsable(EditorBrowsableState.Never)]
| > | > | >
| > | > | > [Browsable(false)]
| > | > | >
| > | > | > new public event EventHandler BackColorChanged;
| > | > | >
| > | > | > Does anybody knows a solution for this?
| > | > | >
| > | > | > Thanks in advance,
| > | > | >
| > | > | > Özden
| > | > | >
| > | > | >
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| > |
| >
| >
|
| This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Jochen Demuth |
last post by:
Hi, I am trying to install ZWiki on Zope 2.5.1 / Debian 2.4.20-bf2.4-xfs.
First I copied the contents of the ZWiki-0.32.0.tgz to the
Products-directory under SOFTWARE_HOME:
This is what it...
|
by: muldoon |
last post by:
Americans consider having a "British accent" a sign of sophistication
and high intelligence. Many companies hire salespersons from Britain to
represent their products,etc. Question: When the...
|
by: Greg G |
last post by:
We have a band web site. Here's the site now:
http://www.risky-biz.com
The home page has a "collage" of photos of the members of the band.
The collage is actually one .gif image that I put...
|
by: Dot net work |
last post by:
I need VB.NET's "shadows" functionality inside a C# project.
I tried the "new" keyword, but it didn't seem to work, because my
particular function does in fact differ in signature to the function...
|
by: Chazza |
last post by:
I would like to override a method from an inherited class, but the new
method has a different signature to the inherited class. Example:
class A {
private void Init() {
// code
}
}
class B...
|
by: Larry Woods |
last post by:
I have a method in my base class that I want ALL derived classes to use.
But, I find that I can create a "Shadow" method in my derived class that
"overrides" the method in my base class. Can't...
|
by: Dave Taylor |
last post by:
I'm trying to derive a class from a typed DataSet to add some methods to one
of the DataTables. I would like to keep the names the same in the derived
class as in the base class, so I have used...
|
by: JohnR |
last post by:
In it's simplest form, assume that I have created a usercontrol,
WSToolBarButton that contains a button. I would like to eventually create
copies of WSToolBarButton dynamically at run time based...
|
by: Nik Coughlin |
last post by:
Further to my earlier post in alt.html, I ended up preparing these pages:
http://nrkn.com/skinning/
They list different ways to "skin" an HTML element (ie add rounded corners,
drop shadows,...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |