MSDN subscribers are supposed to get free e-learning; one or two collections. I just found out about this today so I tried to sign up. It says I'm eligible for 2 collections, but wouldn't allow me to sign up for them.
The first screen says: "MSDN Premium Subscriber: Please select up to two of the listed Microsoft Learning E-Learning Collections and press the Submit button below. Note: You must select both collections at the same time. If you are not ready to make your selection now please close the browser so that you may return to this Product Selection Page via the MSDN Subscription site on a subsequent visit."
Below that is a list of products with checkboxes next to them. So I checked two items and clicked Submit and then I got this error; it said I selected the incorrect number of products:
so I tried submitting with only one checkbox selected and got the same message; incorrect number of products selected
so I tried selecting three checkboxes and got another error; the maximum allowed is two
Maybe it is going to make me wait until after the first of the year, not sure. I hope I can sign up eventually.
Thursday, December 24, 2009
Wednesday, December 9, 2009
Unvalidated Input
I was looking at old bug reports the other day and thinking about the kinds of bugs I find. Unvalidated input has been a common source of bugs. The program doesn't check if the values entered by the user is within the expected range.
I know there isn't an easy answer for these kinds of errors, but wondered how it will be solved in the future. The only half decent answer I thought of was to stop letting users enter whatever they want. For example if they are entering their phone number only accept digits and ignore anything else. Or some type of keyboard or input system that knows which values are on the good list.
Until then I will continue entering letters in numeric fields and reporting the same type of bugs.
I know there isn't an easy answer for these kinds of errors, but wondered how it will be solved in the future. The only half decent answer I thought of was to stop letting users enter whatever they want. For example if they are entering their phone number only accept digits and ignore anything else. Or some type of keyboard or input system that knows which values are on the good list.
Until then I will continue entering letters in numeric fields and reporting the same type of bugs.
Friday, September 4, 2009
VSTT (Visual Studio Team Test) Training Links
This is a list of resources for Visual Studio Team Test.
Visual Studio Team Test Quick Reference Guide 1.0 - from the VSTS Rangers
Web and Load Test Plugins for Visual Studio Team Test - validation rules use the HtmlAgilityPack
Ed Glas on Load Testing
Dennis Stone Filtering Dependent Requests
Josh Christie Creating custom IHttpBody classes for coded web tests
MSDN Forums Team System Web and Load Testing
Happy Reading!
Visual Studio Team Test Quick Reference Guide 1.0 - from the VSTS Rangers
Web and Load Test Plugins for Visual Studio Team Test - validation rules use the HtmlAgilityPack
Ed Glas on Load Testing
Dennis Stone Filtering Dependent Requests
Josh Christie Creating custom IHttpBody classes for coded web tests
MSDN Forums Team System Web and Load Testing
Happy Reading!
Thursday, September 3, 2009
Custom Validation Rule - drop down list
Here's a custom validation rule to check for drop down list by name. This is based on an example I found on an MSDN blog.
Monday, April 6, 2009
Visual Studio Team System Test - Quick Reference Guide
There is a quick reference guide up on Codeplex for VSTS Test Edition. It was originally developed for internal use at Microsoft and recently published by the VSTS Rangers. It covers known issues and other helpful information about running tests. Thanks Rangers and all those who contributed.
Monday, February 23, 2009
Regsvr32 unregister + register from Windows Explorer
This article by John Howard explains how to add commands to Windows Explorer to unregister and register DLLs and OCX's. This way takes less time than typing all the names at the command line.
Save the text below as Shortcuts.reg or some other name and merge to add registry entries & the right click menus to Windows Explorer. The %1 should be in double quotes in case the path to the DLL contains spaces.
REGEDIT4
[HKEY_CLASSES_ROOT\.dll]
@="dllfile"
[HKEY_CLASSES_ROOT\dllfile\shell]
@="WIN_SYS"
[HKEY_CLASSES_ROOT\dllfile\shell\REG_32]
@="Register"
[HKEY_CLASSES_ROOT\dllfile\shell\REG_32\command]
@="regsvr32.exe "%1""
[HKEY_CLASSES_ROOT\dllfile\shell\Unregister]
@=""
[HKEY_CLASSES_ROOT\dllfile\shell\Unregister\command]
@="regsvr32.exe /u "%1""
[HKEY_CLASSES_ROOT\.ocx]
@="dllfile"
Save the text below as Shortcuts.reg or some other name and merge to add registry entries & the right click menus to Windows Explorer. The %1 should be in double quotes in case the path to the DLL contains spaces.
REGEDIT4
[HKEY_CLASSES_ROOT\.dll]
@="dllfile"
[HKEY_CLASSES_ROOT\dllfile\shell]
@="WIN_SYS"
[HKEY_CLASSES_ROOT\dllfile\shell\REG_32]
@="Register"
[HKEY_CLASSES_ROOT\dllfile\shell\REG_32\command]
@="regsvr32.exe "%1""
[HKEY_CLASSES_ROOT\dllfile\shell\Unregister]
@=""
[HKEY_CLASSES_ROOT\dllfile\shell\Unregister\command]
@="regsvr32.exe /u "%1""
[HKEY_CLASSES_ROOT\.ocx]
@="dllfile"
Subscribe to:
Posts (Atom)