473,320 Members | 1,814 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

. Net bugs

Hi,
I've noticed a few bugs like with the datetime control
with the checkbox, the checkbox doesn't not work properpy
by code. Setting it to false sometimes does nothing.
As well tab orders seem to change randomly with tab
controls. If you have the same letter as a shortcut on a
button it will only work on one button even if each button
is on seperate tabs.

Is there a fix for these problems? Do we have to get an
upgrade? If so, whats the upgrade cost if you have
VB .net 2002

thanks

Sebastian
Nov 20 '05 #1
4 3366
I've not used the DateTime control so I can't comment on that.

Tab orders do not change randomly. I am currently working on my own
Tabcontrol and found the reason for the changes. They appear in the TabPages
zOrder. To correct the order simply start at the last TabPage and working
towards the first one Bring each control ToFront. This is indeed a bug, but
there is no fix as yet.

The ShortCut key of a control is handled by the Form not the control's
container, so it does not matter if it is in a different container the Form
will only activate one of them. If you want the ShortCut key to activate
different controls based on the current TabPage selection, then change the
Text property of the controls when the TabPage changes.

Private Sub TabControl1_SelectedIndexChanged(...)...
Select Case TabControl1.SelectedIndex
Case 0
Button1.Text = "&Button1"
Button2.Text = "Button2"
Case 1
Button1.Text = "Button1"
Button2.Text = "&Button2"
More Cases as necessary....
End Select
End Sub

"Sebastian Santacroce" <ss*********@ilogic.com> wrote in message
news:07****************************@phx.gbl...
Hi,
I've noticed a few bugs like with the datetime control
with the checkbox, the checkbox doesn't not work properpy
by code. Setting it to false sometimes does nothing.
As well tab orders seem to change randomly with tab
controls. If you have the same letter as a shortcut on a
button it will only work on one button even if each button
is on seperate tabs.

Is there a fix for these problems? Do we have to get an
upgrade? If so, whats the upgrade cost if you have
VB .net 2002

thanks

Sebastian

Nov 20 '05 #2
* "Sebastian Santacroce" <ss*********@ilogic.com> scripsit:
I've noticed a few bugs like with the datetime control
with the checkbox, the checkbox doesn't not work properpy
by code. Setting it to false sometimes does nothing.
As well tab orders seem to change randomly with tab
controls. If you have the same letter as a shortcut on a
button it will only work on one button even if each button
is on seperate tabs.


I don't have a fix, but notice that by posting your message here people
from Microsoft will (hopefully) read it and maybe fix the bug.

:-)

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #3
This bug appears in the framework 1.1 and is not VB specific, C#
suffers from it as well, accelerator keys acting on a button with the
same letter only work on the first tab page, if there is a second
button with the same letter on the second tabpage it won't listen.

Very annoying when customers complain about that and you have to tell
it's a windows(.Net) bug, the customer can't imagine something simple
as that is a windows bug.

:-(

Herfried K. Wagner [MVP] wrote:
* "Sebastian Santacroce" <ss*********@ilogic.com> scripsit:
I've noticed a few bugs like with the datetime control
with the checkbox, the checkbox doesn't not work properpy
by code. Setting it to false sometimes does nothing.
As well tab orders seem to change randomly with tab
controls. If you have the same letter as a shortcut on a
button it will only work on one button even if each button
is on seperate tabs.
I don't have a fix, but notice that by posting your message here

people from Microsoft will (hopefully) read it and maybe fix the bug.

:-)

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>


Nov 21 '05 #4
This bug appears in the framework 1.1 and is not VB specific, C#
suffers from it as well, accelerator keys acting on a button with the
same letter only work on the first tab page, if there is a second
button with the same letter on the second tabpage it won't listen.

Very annoying when customers complain about that and you have to tell
it's a windows(.Net) bug, the customer can't imagine something simple
as that is a windows bug.

:-(

Herfried K. Wagner [MVP] wrote:
* "Sebastian Santacroce" <ss*********@ilogic.com> scripsit:
I've noticed a few bugs like with the datetime control
with the checkbox, the checkbox doesn't not work properpy
by code. Setting it to false sometimes does nothing.
As well tab orders seem to change randomly with tab
controls. If you have the same letter as a shortcut on a
button it will only work on one button even if each button
is on seperate tabs.
I don't have a fix, but notice that by posting your message here

people from Microsoft will (hopefully) read it and maybe fix the bug.

:-)

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>


Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Mudge | last post by:
Hi, I'm trying to help my hosting company decide whether or not to upgrade to php 5. My hosting company does not want to upgrade to php 5 if it has bugs that would cause problems. So i'm doing...
83
by: kartik | last post by:
there seems to be a serious problem with allowing numbers to grow in a nearly unbounded manner, as int/long unification does: it hides bugs. most of the time, i expect my numbers to be small. 2**31...
3
by: Brett C. | last post by:
Anthony Baxter, our ever-diligent release manager, mentioned this past week that Python 2.3.5 will most likely come to fruition some time in January (this is not guaranteed date). This means that...
4
by: Alex Bell | last post by:
There have been several postings recently dealing with bugs in Internet Explorer. Can anyone point me to a review of these bugs and how to work around them? Regards, Alex
20
by: Prashanth Badabagni | last post by:
hi, i'm prashanth Badabagni .. Can anyone tell me the BUGS present in C language whether programming or syntactical BUGS .... Thanks in advance ... Prashanth Badabagni
9
by: David Teran | last post by:
Hi, we are currently using another database product but besides some licensing issues we are finding more and more problems with the database. We are evaluating PostgreSQL and it looks quite...
2
by: TheSteph | last post by:
Using : Windows 2000 Pro SP4 / VS.NET 2005 / .NET 2.0 / C# - All updates done. I have several bugs when I use the DataGridView : When scrolling (or after scrolling) the grid have these...
19
by: Alan Silver | last post by:
Hello, Having discovered what I believe to be two CSS bugs in IE7, I have submitted bug reports to MS. AFAIK, these don't get acted on until they receive votes form others to say they are worth...
15
by: Gary Peek | last post by:
Can anyone tell us the browsers/versions that exhibit errors when tables are nested too deeply? And how many levels of nesting produces errors? (not a tables vs CSS question)
87
by: CJ | last post by:
Hello: We know that C programs are often vulnerable to buffer overflows which overwrite the stack. But my question is: Why does C insist on storing local variables on the stack in the first...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.