Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
3k views

VB.Net equivalent for C# 'dynamic' with Option Strict On

Is there an equivalent for the C# 4 'dynamic' keyword when using 'type safe VB.Net', i.e. with Option Strict On?
12
votes
3answers
2k 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 standard for the ...
6
votes
1answer
1k 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 (which we've been using ...
4
votes
4answers
135 views

Option strict on by default in VB.NET

Whenever I created a new VB.NET program I must go into project's proerties and set 'option strict' on. Can I do that once so it is a default for every time I create new project?
3
votes
3answers
433 views

Tools to convert option strict off code into option strict on?

I have to take over a project written in vb.net, which contains more than 400k lines of code written in option strict off mode. I want to build it under option strict on first before I do anything ...
2
votes
8answers
236 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'?
2
votes
4answers
1k views

Using early binding on a COM object

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.NameSpace(11).Self.Path) ...
1
vote
1answer
63 views

VB.NET not seeing some classes

One of my classes seems to be invisible to the rest of my project. I wonder if I somehow have to initialize it before I can use its public stuff. The functions and methods of Class1 immediately ...
1
vote
2answers
136 views

how to use Option Strict On and Late Binding

I am trying to get some code to compile after switching Option Strict On. However I am using some Interop with VB6 and passing in a form object ByRef so Form.Caption fails and I can't convert it to ...
1
vote
1answer
82 views

How do I use Thread.VolatileWrite with reference types with Option Strict On?

Wrapping the argument in CObj or DirectCast shuts the compiler up, but the value is still not written. Option Strict On Imports System.Threading Module Module1 Dim str As String Sub Main() ...
1
vote
1answer
1k views

How to use System.Linq extension method in VB.NET project with Option Strict ON

I'm using .NET 3.5 In my DataLayer class I have references of System.Core,System.Data.Linq, System.Data.DataSetExtensions. But I cantnot use this feature in Linq query if I have Option Strict ON: ...
1
vote
2answers
181 views

VB.NET: Which As clause to use with anonymous type with Option Strict On?

Consider the requirement to always declare Option Strict On. We'll always need to declare variables with the As keyword. What would be the type of an anonymous type? Example : Dim product As ... = ...
1
vote
3answers
190 views

Why does the compiler think this is an Object instead of a DataRow?

I'm using a LINQ query to translate data inside a DataTable object to be a simple IEnumerable of a custom POCO object. My LINQ query is: Dim dtMessages As DataTable '...dtMessages is ...
1
vote
1answer
970 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 expected = "11"
0
votes
1answer
32 views

How to set DataGridViewCell.Value with Option Strict On

How to test for DataGridViewCell.Value with Option Strict On? If DataGridViewCell.Value = "some value" then Gives the error: Option Strict On disallows operands of type Object for operator '='. ...
0
votes
1answer
757 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 LastChangeDate The ...
0
votes
2answers
133 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 page 1 and I want to ...