Click here to Skip to main content
16,015,023 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Connecting to pastel Pin
Dave Kreskowiak9-Jun-05 5:14
mveDave Kreskowiak9-Jun-05 5:14 
GeneralRe: Connecting to pastel Pin
toxcct9-Jun-05 5:32
toxcct9-Jun-05 5:32 
GeneralVB.NET Controls Pin
meetaqadir8-Jun-05 22:54
meetaqadir8-Jun-05 22:54 
GeneralRe: VB.NET Controls Pin
Christian Graus9-Jun-05 0:44
protectorChristian Graus9-Jun-05 0:44 
GeneralHelp regarding cache the assemplies to speed up the VB.net application Pin
prashant79_pawar8-Jun-05 20:45
prashant79_pawar8-Jun-05 20:45 
GeneralRe: Help regarding cache the assemplies to speed up the VB.net application Pin
Christian Graus9-Jun-05 0:49
protectorChristian Graus9-Jun-05 0:49 
GeneralRe: Help regarding cache the assemplies to speed up the VB.net application Pin
Dave Kreskowiak9-Jun-05 5:11
mveDave Kreskowiak9-Jun-05 5:11 
GeneralRe: Help regarding cache the assemplies to speed up the VB.net application Pin
Dave Kreskowiak9-Jun-05 5:27
mveDave Kreskowiak9-Jun-05 5:27 
From your repeated question about the same thing, it's bloody obvious that you have no idea how the JIT compiler works.

When you start your application, only the code that is required to start is compiled by JIT. JIT compiles code on a per-method basis, and only done once per execution session. This means that when a new form is loaded, only it's startup and rendering code is compiled. If you have a button on the form, the buttons Click event and other handlers ARE NOT COMPILED! They are only compiled to machine code upon first execution. This means that your Click event handler code is only compiled when you click the button for the first time!

Here, read this[^] on Performance Considerations. It explains how alot of this stuff works. Read it, understand it, then apply this knowledge to your existing code. God forbid, you might even find and fix your own problems using this knowledge.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

Generalvb call Pin
Anonymous8-Jun-05 18:54
Anonymous8-Jun-05 18:54 
GeneralRe: vb call Pin
Christian Graus8-Jun-05 19:37
protectorChristian Graus8-Jun-05 19:37 
GeneralRe: vb call Pin
Anonymous8-Jun-05 23:28
Anonymous8-Jun-05 23:28 
GeneralRe: vb call Pin
Dave Kreskowiak9-Jun-05 5:07
mveDave Kreskowiak9-Jun-05 5:07 
GeneralSpped up VB.Net application Pin
prashant79_pawar8-Jun-05 18:46
prashant79_pawar8-Jun-05 18:46 
GeneralRe: Spped up VB.Net application Pin
Christian Graus8-Jun-05 18:48
protectorChristian Graus8-Jun-05 18:48 
GeneralRe: Spped up VB.Net application Pin
Rizwan Bashir8-Jun-05 22:48
Rizwan Bashir8-Jun-05 22:48 
GeneralRe: Spped up VB.Net application Pin
prashant79_pawar9-Jun-05 0:48
prashant79_pawar9-Jun-05 0:48 
GeneralRe: Spped up VB.Net application Pin
Dave Kreskowiak9-Jun-05 4:15
mveDave Kreskowiak9-Jun-05 4:15 
GeneralReflector Pin
hungmitec8-Jun-05 18:37
hungmitec8-Jun-05 18:37 
GeneralRe: Reflector Pin
Christian Graus8-Jun-05 18:50
protectorChristian Graus8-Jun-05 18:50 
GeneralRe: Reflector Pin
hungmitec8-Jun-05 20:06
hungmitec8-Jun-05 20:06 
GeneralRe: Reflector Pin
Dave Kreskowiak9-Jun-05 4:13
mveDave Kreskowiak9-Jun-05 4:13 
Questionhow to delete rows in datagrid?tnx Pin
8-Jun-05 18:34
suss8-Jun-05 18:34 
AnswerRe: how to delete rows in datagrid?tnx Pin
Dave Kreskowiak9-Jun-05 4:06
mveDave Kreskowiak9-Jun-05 4:06 
GeneralRe: how to delete rows in datagrid?tnx Pin
10-Jun-05 6:43
suss10-Jun-05 6:43 
Questionhow TO ADD CRYSTAL REPORT TO WINDOWS APPLICATION Pin
Anonymous8-Jun-05 16:51
Anonymous8-Jun-05 16:51 

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.