[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.vb.general.discussion

Advanced Optimization Options

F*CK

8/31/2010 3:31:00 PM

are 'Advanced Optimization' Options Inherited?

like I have a app in which I have set these options and in it I am using 3rd
party control of which I don't have source code nor do i know if they are
using any of these options.

so if I set some advanced optimization options will those also apply to that
control?


2 Answers

(nobody)

8/31/2010 3:36:00 PM

0

"Abhishek" <user@server.com> wrote in message
news:i5j779$n6h$1@speranza.aioe.org...
> are 'Advanced Optimization' Options Inherited?

No.



Larry Serflaten

8/31/2010 3:50:00 PM

0


"Abhishek" <user@server.com> wrote
> are 'Advanced Optimization' Options Inherited?
>
> like I have a app in which I have set these options and in it I am using 3rd
> party control of which I don't have source code nor do i know if they are
> using any of these options.
>
> so if I set some advanced optimization options will those also apply to that
> control?

You are setting compile time options. The 3rd party control comes pre-compiled.

Your compile options do not effect the pre-compiled control. Had they given
you the source code, and you include such in your program, then the control
compiles along with your own program, and uses your selected options.

LFS