Click here to Skip to main content
15,921,530 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Pre-load libraries Pin
alejx6-Mar-14 12:03
alejx6-Mar-14 12:03 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak6-Mar-14 17:11
mveDave Kreskowiak6-Mar-14 17:11 
GeneralRe: Pre-load libraries Pin
alejx7-Mar-14 6:43
alejx7-Mar-14 6:43 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak7-Mar-14 9:18
mveDave Kreskowiak7-Mar-14 9:18 
GeneralRe: Pre-load libraries Pin
alejx8-Mar-14 2:53
alejx8-Mar-14 2:53 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak8-Mar-14 3:21
mveDave Kreskowiak8-Mar-14 3:21 
GeneralRe: Pre-load libraries Pin
alejx8-Mar-14 4:27
alejx8-Mar-14 4:27 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak8-Mar-14 5:01
mveDave Kreskowiak8-Mar-14 5:01 
GeneralRe: Pre-load libraries Pin
alejx8-Mar-14 6:32
alejx8-Mar-14 6:32 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak8-Mar-14 7:32
mveDave Kreskowiak8-Mar-14 7:32 
GeneralRe: Pre-load libraries Pin
alejx8-Mar-14 9:27
alejx8-Mar-14 9:27 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak8-Mar-14 10:39
mveDave Kreskowiak8-Mar-14 10:39 
GeneralRe: Pre-load libraries Pin
alejx8-Mar-14 11:01
alejx8-Mar-14 11:01 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak8-Mar-14 11:31
mveDave Kreskowiak8-Mar-14 11:31 
GeneralRe: Pre-load libraries Pin
alejx9-Mar-14 5:42
alejx9-Mar-14 5:42 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak9-Mar-14 6:57
mveDave Kreskowiak9-Mar-14 6:57 
alejx wrote:
Ok but a normal exe file ( without using NGEN ) do JIT'ing on first start of a form with these controls ( but on every time I use the application )


No, it doesn't. The JIT happens once, the first time the code is executed. A native image is generated and put into the native image cache.

When you run the code from inside Visual Studio, that native image only lasts for the one time you run the project. When you run the project again, a new .EXE is generated and new native images are generated as the code is executed. This happens every time you run the project from inside Visual Studio.


alejx wrote:
But it's so difficult for you to show me a way how to use the code for doing this process. I want just to try both the alternatives.


The reason I don't recommend do it that way is because if you don't understand the code and why it works you can't support it in the future. What if the code no longer does what you assume it's should be doing anymore? What are you going to do then??

That's why I don't recommend you use it.

GeneralRe: Pre-load libraries Pin
alejx9-Mar-14 7:49
alejx9-Mar-14 7:49 
GeneralRe: Pre-load libraries Pin
Dave Kreskowiak9-Mar-14 7:55
mveDave Kreskowiak9-Mar-14 7:55 
AnswerRe: Pre-load libraries Pin
Richard Andrew x647-Mar-14 15:31
professionalRichard Andrew x647-Mar-14 15:31 
QuestionIs this possible? Pin
hansoctantan6-Mar-14 0:29
professionalhansoctantan6-Mar-14 0:29 
AnswerRe: Is this possible? Pin
Wayne Gaylard6-Mar-14 0:49
professionalWayne Gaylard6-Mar-14 0:49 
GeneralRe: Is this possible? Pin
hansoctantan9-Mar-14 19:57
professionalhansoctantan9-Mar-14 19:57 
GeneralRe: Is this possible? Pin
Wayne Gaylard9-Mar-14 20:01
professionalWayne Gaylard9-Mar-14 20:01 
AnswerRe: Is this possible? Pin
Eddy Vluggen6-Mar-14 2:59
professionalEddy Vluggen6-Mar-14 2:59 
QuestionVB.NET Visual Studio 2113: Windows Explorer right click-> print Pin
dgoogle6-Mar-14 0:14
dgoogle6-Mar-14 0:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.