473,499 Members | 1,609 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Option Strict and aspnet 2.0

I fully expected the lack of a way to set Option Strict globally to be fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com
Jan 18 '07 #1
13 2303
To set Option Strict

1. With your VB Web project open, click "Tools", then "Options".
2. Make sure the "Show all settings" box is selected.
3. Go to "Projects and Solutions", and scroll down to "VB defaults".

You'll see the "Default Project Settings" and the "Option Strict" dropdown,
with "On" and "Off" choices.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message news:eD**************@TK2MSFTNGP04.phx.gbl...
>I fully expected the lack of a way to set Option Strict globally to be fixed in SP1. I can't seem
to figure out if it has been fixed or not. It still seems we have to add the declaration at the top
of each and every single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com


Jan 18 '07 #2
Did you try this answer before offering it? My settings are already set to
this. I then created a new class in my web project (thinking it's only
applied to new files added) and was able to add
Dim i As Integer = "some text"
with no problem.

That's bad.

--
-C. Moya
www.cmoya.com
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
To set Option Strict

1. With your VB Web project open, click "Tools", then "Options".
2. Make sure the "Show all settings" box is selected.
3. Go to "Projects and Solutions", and scroll down to "VB defaults".

You'll see the "Default Project Settings" and the "Option Strict"
dropdown,
with "On" and "Off" choices.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message
news:eD**************@TK2MSFTNGP04.phx.gbl...
>>I fully expected the lack of a way to set Option Strict globally to be
fixed in SP1. I can't seem
to figure out if it has been fixed or not. It still seems we have to add
the declaration at the top
of each and every single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com



Jan 18 '07 #3
I havent used VB.Net in a while, I only use C# nowadays, but I seem to
remember that if you want to set option strict globally you need to
open visual studio to the start page, with no project loaded and change
the option strict setting then. all new projects from then on will be
option strict by default.

worth a try, but as I said, I haven't used VB for a while

C. Moya wrote:
I fully expected the lack of a way to set Option Strict globally to be fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com
Jan 18 '07 #4
Not sure as not yet for real under 2.0 but I remember to have seen this is
now in the web.config file i.e. it could be perhaps different dpeending on
weteherr you are prcompiling the site (in whihc case the project level
property could aply) or on the fly (in which case the web.config option
could be used).
"C. Moya" <cm*@nospam.coma écrit dans le message de news:
eD**************@TK2MSFTNGP04.phx.gbl...
>I fully expected the lack of a way to set Option Strict globally to be
fixed in SP1. I can't seem to figure out if it has been fixed or not. It
still seems we have to add the declaration at the top of each and every
single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com

Jan 18 '07 #5
I have Option Strict On in Tools|Options->VB Defaults.
And also strict="true" in web.config.
It doesn't seem to matter.

It's also not in the list of bug fixes for SP1 (which is a fairly small list
considering the ludicrous amount of time that we've been waiting). But I
find it hard to believe that this hasn't been addressed... I'm hoping I'm
just overlooking something.

--
-C. Moya
www.cmoya.com
"Patrice" <http://www.chez.com/scribe/wrote in message
news:uV**************@TK2MSFTNGP03.phx.gbl...
Not sure as not yet for real under 2.0 but I remember to have seen this is
now in the web.config file i.e. it could be perhaps different dpeending on
weteherr you are prcompiling the site (in whihc case the project level
property could aply) or on the fly (in which case the web.config option
could be used).
"C. Moya" <cm*@nospam.coma écrit dans le message de news:
eD**************@TK2MSFTNGP04.phx.gbl...
>>I fully expected the lack of a way to set Option Strict globally to be
fixed in SP1. I can't seem to figure out if it has been fixed or not. It
still seems we have to add the declaration at the top of each and every
single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com


Jan 18 '07 #6
re:
That's bad.
It would only be bad if you couldn't modify the VS templates.

To change the default value of Option Strict, follow these steps:

Locate WebApplication.vbproj, inside:
drive:\VStudioInstallDir\Common7\IDE\ProjectTempla tes\VisualBasic\Web\1033\WebApplicationProject.zip

Extract it, modify the Option Strict line so it's On, save the file
and add it back to the zip file, overwriting the original file.

Notice thre's other files in the same zip file where the option must be set, too.

Also, do the same for any file in:
drive:\VStudioInstallDir\Common7\IDE\ProjectTempla tes\VisualBasic\Web
which has Option Strict = Off

I agree that the IDE is buggy regarding the setting of this option,
but there's a viable workaround, as detailed in this post.

btw, if you want to change the Option Strict option for other types of projects
( Windows app, Windows Service, etc. ), you'll need to do the same for *their* templates.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message news:%2****************@TK2MSFTNGP03.phx.gbl...
Did you try this answer before offering it? My settings are already set to this. I then created a
new class in my web project (thinking it's only applied to new files added) and was able to add
Dim i As Integer = "some text"
with no problem.

That's bad.

--
-C. Moya
www.cmoya.com
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>To set Option Strict

1. With your VB Web project open, click "Tools", then "Options".
2. Make sure the "Show all settings" box is selected.
3. Go to "Projects and Solutions", and scroll down to "VB defaults".

You'll see the "Default Project Settings" and the "Option Strict" dropdown,
with "On" and "Off" choices.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message news:eD**************@TK2MSFTNGP04.phx.gbl...
>>>I fully expected the lack of a way to set Option Strict globally to be fixed in SP1. I can't seem
to figure out if it has been fixed or not. It still seems we have to add the declaration at the
top
of each and every single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com





Jan 18 '07 #7
I will try this workaround... though it seems kludgy. Regarding other types
of projects: no need... as Windows Forms projects respect the Option Strict
settings you specify. It's only ASP.NET 2.0 projects that brainnumbingly do
not.

Thanks for the tip.

--
-C. Moya
www.cmoya.com
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:uT**************@TK2MSFTNGP03.phx.gbl...
re:
>That's bad.

It would only be bad if you couldn't modify the VS templates.

To change the default value of Option Strict, follow these steps:

Locate WebApplication.vbproj, inside:
drive:\VStudioInstallDir\Common7\IDE\ProjectTempla tes\VisualBasic\Web\1033\WebApplicationProject.zip

Extract it, modify the Option Strict line so it's On, save the file
and add it back to the zip file, overwriting the original file.

Notice thre's other files in the same zip file where the option must be
set, too.

Also, do the same for any file in:
drive:\VStudioInstallDir\Common7\IDE\ProjectTempla tes\VisualBasic\Web
which has Option Strict = Off

I agree that the IDE is buggy regarding the setting of this option,
but there's a viable workaround, as detailed in this post.

btw, if you want to change the Option Strict option for other types of
projects
( Windows app, Windows Service, etc. ), you'll need to do the same for
*their* templates.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Did you try this answer before offering it? My settings are already set
to this. I then created a
new class in my web project (thinking it's only applied to new files
added) and was able to add
Dim i As Integer = "some text"
with no problem.

That's bad.

--
-C. Moya
www.cmoya.com
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>>To set Option Strict

1. With your VB Web project open, click "Tools", then "Options".
2. Make sure the "Show all settings" box is selected.
3. Go to "Projects and Solutions", and scroll down to "VB defaults".

You'll see the "Default Project Settings" and the "Option Strict"
dropdown,
with "On" and "Off" choices.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message
news:eD**************@TK2MSFTNGP04.phx.gbl...
I fully expected the lack of a way to set Option Strict globally to be
fixed in SP1. I can't seem
to figure out if it has been fixed or not. It still seems we have to add
the declaration at the
top
of each and every single code module. Am I missing something here?

--
-C. Moya
www.cmoya.com





Jan 18 '07 #8
Correct. If you have an existing VB project, you can set it in the project
project properties.

Mike.

"sticky" <st********@gmail.comwrote in message
news:11**********************@11g2000cwr.googlegro ups.com...
>I havent used VB.Net in a while, I only use C# nowadays, but I seem to
remember that if you want to set option strict globally you need to
open visual studio to the start page, with no project loaded and change
the option strict setting then. all new projects from then on will be
option strict by default.

worth a try, but as I said, I haven't used VB for a while

C. Moya wrote:
>I fully expected the lack of a way to set Option Strict globally to be
fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com



Jan 19 '07 #9
Sure... you can set it in many places... like Tools|Options and Project
Properties for WINFORMS apps (which works) and web.config for ASP.NET 2.0
projects. The problem is that it DOES NOT WORK for ASP.NET 2.0 projects.

Apparently, you have to manually insert Option Strict On at the top of each
and every code module in ASP.NET 2.0 projects.

I read this has something to do with 2.0's "project-less" infrastructure...
but it's still a bug nonetheless.

--
-C. Moya
www.cmoya.com
"Michael D. Ober" <obermd.@.alum.mit.edu.no.spamwrote in message
news:75******************@newsread1.news.pas.earth link.net...
Correct. If you have an existing VB project, you can set it in the
project project properties.

Mike.

"sticky" <st********@gmail.comwrote in message
news:11**********************@11g2000cwr.googlegro ups.com...
>>I havent used VB.Net in a while, I only use C# nowadays, but I seem to
remember that if you want to set option strict globally you need to
open visual studio to the start page, with no project loaded and change
the option strict setting then. all new projects from then on will be
option strict by default.

worth a try, but as I said, I haven't used VB for a while

C. Moya wrote:
>>I fully expected the lack of a way to set Option Strict globally to be
fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com




Jan 19 '07 #10
You can set it, but it doesn't work as expected.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Michael D. Ober" <obermd.@.alum.mit.edu.no.spamwrote in message
news:75******************@newsread1.news.pas.earth link.net...
Correct. If you have an existing VB project, you can set it in the project project properties.

Mike.
"sticky" <st********@gmail.comwrote in message
news:11**********************@11g2000cwr.googlegro ups.com...
>>I havent used VB.Net in a while, I only use C# nowadays, but I seem to
remember that if you want to set option strict globally you need to
open visual studio to the start page, with no project loaded and change
the option strict setting then. all new projects from then on will be
option strict by default.

worth a try, but as I said, I haven't used VB for a while

C. Moya wrote:
>>I fully expected the lack of a way to set Option Strict globally to be fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com




Jan 19 '07 #11
re:
Apparently, you have to manually insert Option Strict On at the top of each and every code module
in ASP.NET 2.0 projects.
Unless you modify the project templates as I outlined.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message news:%2***************@TK2MSFTNGP04.phx.gbl...
Sure... you can set it in many places... like Tools|Options and Project Properties for WINFORMS
apps (which works) and web.config for ASP.NET 2.0 projects. The problem is that it DOES NOT WORK
for ASP.NET 2.0 projects.

Apparently, you have to manually insert Option Strict On at the top of each and every code module
in ASP.NET 2.0 projects.

I read this has something to do with 2.0's "project-less" infrastructure... but it's still a bug
nonetheless.

--
-C. Moya
www.cmoya.com
"Michael D. Ober" <obermd.@.alum.mit.edu.no.spamwrote in message
news:75******************@newsread1.news.pas.earth link.net...
>Correct. If you have an existing VB project, you can set it in the project project properties.

Mike.

"sticky" <st********@gmail.comwrote in message
news:11**********************@11g2000cwr.googlegr oups.com...
>>>I havent used VB.Net in a while, I only use C# nowadays, but I seem to
remember that if you want to set option strict globally you need to
open visual studio to the start page, with no project loaded and change
the option strict setting then. all new projects from then on will be
option strict by default.

worth a try, but as I said, I haven't used VB for a while

C. Moya wrote:
I fully expected the lack of a way to set Option Strict globally to be fixed
in SP1. I can't seem to figure out if it has been fixed or not. It still
seems we have to add the declaration at the top of each and every single
code module. Am I missing something here?

--
-C. Moya
www.cmoya.com





Jan 19 '07 #12
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:O7**************@TK2MSFTNGP03.phx.gbl...
re:
>Apparently, you have to manually insert Option Strict On at the top of
each and every code module in ASP.NET 2.0 projects.

Unless you modify the project templates as I outlined.
Juan T. Llibre, asp.net MVP
Sigh. So it hasn't been fixed in SP1.
Thanks Juan... I've known about that "workaround" for eons. I was hoping SP1
fixed it.
It's truly (IMO) a dumbfounding lack of foresight on the part of the asp.net
team.

--
-C. Moya
www.cmoya.com
Jan 19 '07 #13
re:
It's truly (IMO) a dumbfounding lack of foresight on the part of the asp.net team
Actually, the ASP.NET team has nothing to do with that.
The problem belongs to the Visual Studio Dev Team, not to the ASP.NET Dev Team.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"C. Moya" <cm*@nospam.comwrote in message news:OT*************@TK2MSFTNGP06.phx.gbl...
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:O7**************@TK2MSFTNGP03.phx.gbl...
>re:
>>Apparently, you have to manually insert Option Strict On at the top of each and every code
module in ASP.NET 2.0 projects.

Unless you modify the project templates as I outlined.
Juan T. Llibre, asp.net MVP

Sigh. So it hasn't been fixed in SP1.
Thanks Juan... I've known about that "workaround" for eons. I was hoping SP1 fixed it.
It's truly (IMO) a dumbfounding lack of foresight on the part of the asp.net team.

--
-C. Moya
www.cmoya.com

Jan 19 '07 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
2119
by: Microsoft News | last post by:
I have a project that was created all with Option Strict OFF. Works great, not a problem with it. But if I turn Option Strict ON then I get a LOT of errors. My question, should I even care...
11
2096
by: Daylor | last post by:
hi. im using option strict on. im doing in ,from the simple reason ,to be warn when there are implict conversion like string to int ,int to string. BUT. the price ,(now i see ), is very bad....
8
1810
by: Rich | last post by:
Hello, If I leave Option Strict Off I can use the following syntax to read data from a Lotus Notes application (a NotesViewEntry object represents a row of data from a Lotus Notes View - like a...
17
4461
by: David | last post by:
Hi all, I have the following problem: my program works fine, but when I add option strict at the top of the form, the following sub fails with an error that option strict does not allow late...
9
2296
by: YYZ | last post by:
After reading many messages in this group, it seems that the preferred setting for this is ON. Okay, I did that in my project (first with ..Net -- long time VB6 developer) and now a bunch of...
15
1529
by: guy | last post by:
when i first started using .net (beta 1) i came across option strict and thought hey this could be really good, and since then have always turned it on, most people here seem to agree that this is...
18
2855
by: Poldie | last post by:
How do I turn it on? I'm using vb 2005 in visual studio 2005 sp1. In my web.config I have: <compilation debug="true" strict="true" /> In my Tools/Options/Projects and solutions/vb defaults...
8
2410
by: Rory Becker | last post by:
A wise man once said: "Never put off until runtime what you can fix at compile time." Actually I think he said it about 10 minutes before I started this post. I am a firm believer, like the...
8
3875
by: =?Utf-8?B?R3JlZw==?= | last post by:
We have an application in our office that has the Option Strict option set to off right now. I do understand it should be set to ON, but right now, I'm just going to continue with it this way since...
0
7134
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7014
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7180
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7229
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7395
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4921
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3108
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
667
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.