0
votes
1answer
168 views
Linq query has an implicit cast error for DataGridViewRow when option strict is enabled
I have a DataGridView that is bound to a list of objects called "BaseChange". The BaseChange objects are made up of 4 properties...
ChangeType
ChangeStatus
ChangeDescription
Last …
2
votes
7answers
120 views
Do you use strict off in your projects?
Do you use 'strict off' option, 'explicit off'? Or may be 'strict custom' and some other options like 'Implicit type. Object assumed', 'Late binding', 'Implicit conversion'?
0
votes
2answers
73 views
linking to options drop down
I don't know if this is possible so bare with me on this one. Can you link to a specific value in an options drop down box from another page? In other words, let's say that I'm on …
2
votes
4answers
243 views
Using early binding on a COM object
Hello,
I have this piece of code that works very well and gives me the path the user's start menu:
Dim oShell As Object = CreateObject("Shell.Application")
MsgBox(oShell. …
6
votes
3answers
372 views
VB.Net Turning Option Strict Off In-Line
Is there a way to turn option strict off for just a single line of code? I'm doing some maintenance work and I need to "cheat" in just one place and I don't want to lower the stan …
1
vote
1answer
364 views
Converting enum tostring of underlying type in VB.Net (Option Strict On)
I'd like to get a string representation of the underlying type of the enum.
Dim target As System.ConsoleColor = ConsoleColor.Cyan
Dim actual = 'What goes here?
Dim exp …
3
votes
1answer
358 views
What is the best way to mix VB.NET’s Option Strict and the new Option Infer directives?
In a related question, my team is about to (hopefully) start using LINQ, and I'd like to take advantage of anonymous types. What is the best way to mix VB.NET's Option Strict (whic …
