Timeline for Nullable<T> Implementation for VB6/VBA
Current License: CC BY-SA 3.0
14 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jun 10, 2020 at 13:24 | history | edited | CommunityBot |
Commonmark migration
|
|
| Apr 13, 2017 at 12:40 | history | edited | CommunityBot |
replaced http://codereview.stackexchange.com/ with https://codereview.stackexchange.com/
|
|
| Oct 15, 2015 at 17:17 | comment | added | Mathieu Guindon | @JeffRoe blast from the past! ...and damn, you're right! | |
| Oct 15, 2015 at 16:50 | comment | added | Jeff Roe |
I think that what you suggest in your "UPDATE" section only works if you make MyBoolean a Variant rather than a Boolean.
|
|
| Feb 14, 2014 at 15:29 | history | edited | Mathieu Guindon | CC BY-SA 3.0 |
added 432 characters in body
|
| Feb 14, 2014 at 3:01 | vote | accept | Mathieu Guindon | ||
| Feb 14, 2014 at 2:58 | answer | added | Mathieu Guindon | timeline score: 7 | |
| Feb 14, 2014 at 2:13 | comment | added | Comintern |
Dim n As New SomeClass is the exact same thing as doing Dim n As SomeClass followed by Set n = New SomeClass. Unfortunately both are the same as Dim n As SomeClass followed by Debug.Print (n)
|
|
| Feb 14, 2014 at 2:11 | comment | added | Comintern | I thought this deserved a longer-winded explanation. See below. :-) | |
| Feb 14, 2014 at 2:10 | answer | added | Comintern | timeline score: 10 | |
| Feb 14, 2014 at 1:34 | history | edited | Mathieu Guindon | CC BY-SA 3.0 |
added 468 characters in body
|
| Feb 14, 2014 at 1:33 | comment | added | Mathieu Guindon | @Comintern I've edited with my latest findings (although that's starting to be more on StackOverflow's grounds) | |
| Feb 14, 2014 at 1:31 | comment | added | Comintern | VB6 has the nasty habit of instantiating a new object if a method is called on something that is Nothing. I'm curious to see your test function for the Set n = Nothing bit. I suspect the surprising behavior is there, not in the class itself. | |
| Feb 14, 2014 at 0:49 | history | asked | Mathieu Guindon | CC BY-SA 3.0 |