My defaults are set to Infer Off, Strict and Explicit On.
I create a windows forms app in VS2022. It is .Net 8.
The form has a button and a textbox and this code shows no errors and runs.
What?Code:Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click TextBox1.Text = 1 / 2 ' TextBox1.Text has 0.5 End Sub End Class
edit:
If I declare the options in the form then I get errors.
Option Strict On : Option Explicit On : Option Infer Off
If I create a Windows Forms App (.Net Framework) then I get the appropriate errors.




Reply With Quote