BUG FIX - Configuration Managament Application Block ==> Bug in ExtendedFormatHelper.vb

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I had a problem in getting the config app block to work when I got in one day(1st December 2003). (It was fine the day before...!)

I'm not sure if this has been fixed, but since the release date of the Config Block.MSI hasn't changed... I assume it hasn't :(
This is surprising to say the least. It's like it implies that nobody used it last December - that can't be right? I'm not sure what I am missing there...anywayz..
If this post falls on deaf ears & nobody else has been affected, then I suppose we'll find out December 2004

I was trying to figure out who to contact & really got nowhere. Till now! I found this newsgroup. I couldn't find anywhere on MSDN to post this bug & I was frustrated as
Fix is below..

There's a bug in
===> ExtendedFormatHelper.v
The fix is below
Fixed bug where cacheing doesn't work in December (Month=12)

'TODO: MINA - Post back to Microsoft
'++MINA - fixed? code
If (DateTime.DaysInMonth(expirYear, expirMonth) < expirDay) The
If (expirMonth = 12) The
expirMonth =
expirYear = expirYear +
End I
Els
If (expirMonth = 12) The
expirMonth =
expirYear = expirYear +
Els
expirMonth = expirMonth +
End I
expirDay =
End I
'--MINA - fixed? cod

'++MINA - original cod
'If (DateTime.DaysInMonth(expirYear, expirMonth) < expirDay) The
' If (expirMonth = 12) The
' expirMonth =
' expirYear = expirYear +
' End I
'Els
' expirMonth = expirMonth +
' expirDay =
'End I
'--MINA - original code
 
Hello,

Thanks very much for your feedback.

As a MSDN subscriber, you can directly report bug to Microsoft at:
http://msdn.microsoft.com/subscriptions/faq/default.asp
(Please refer to "I think I found a bug. How do I report it?" part)

Beside, the messageboard specially for CMAB is at:
http://www.gotdotnet.com/Community/MessageBoard/messageBoard.aspx?id=3735

The GotDotNet community site provides a place for .NET developers to share
code and ideas. A GotDotNet workspace for the Configuration Management
Application Block has been created at
http://www.gotdotnet.com/community/workspaces/workspace.aspx?id=01875f69-935
8-437b-a8ae-fa4bf2e3080f. Please share your Configuration Management
Application Block questions, suggestions, and customizations with the
community in this workspace.

Also, you could send email to me with the following information:

A full description of what you were doing, what you were expecting to
happen, and what actually happened
Your system's configuration (example: DELL OptiPlex 133, 64 MB RAM, 8 GB
hard drive)
Operating system and version (example: Windows NT 4.0 Workstation Service
Pack 4)
Browser and version (example: Internet Explorer 4 Service Pack 1)
Date/time of the incident
If you can reproduce it and the steps it takes to do so

I am glad to forward it to the product group so that they could review it
ASAP.

Thanks very much.

Best regards,
Yanhong Huang
Microsoft Community Support

Get Secure! ¨C www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top