Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 13af123

Browse files
committed
Added alt text for two images
1 parent b87725e commit 13af123

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_posts/2010-07-28-the-use-of-the-random-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ End Class
4848

4949
If you run this you’re likely to get an outcome similar to this;
5050

51-
![](/assets/images/2010/07/badrandom.jpg)
51+
![Random done wrong](/assets/images/2010/07/badrandom.jpg)
5252

5353
As you can see from the code they are creating a new Random object every time they want to get a random number. This is where the problem lies, the Random class requires a seed and if the programmer doesn’t supply a seed then the current system clock is used. Another thing to note about the seed for the Random class is that if you provide the same seed then the number that you receive when you call Next() will be the same.
5454

_posts/2017-03-04-creating-dynamic-sub-menu-excel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ When you click on OK, you might get a warning that this formula gives an error,
9999

100100
We are now complete, if you select one of the countries then the options available in the city cell will be those specified in the corresponding table. If you add an item to the table it will automatically be added without having to worry about changing the named range.
101101

102-
![](/assets/images/2017/02/Excel-Dynamic-Sub-Menu-Final-Drop-Downs.png)
102+
![The final drop downs](/assets/images/2017/02/Excel-Dynamic-Sub-Menu-Final-Drop-Downs.png)
103103

104104
## Why I chose to use Tables
105105

0 commit comments

Comments
 (0)