Click here to Skip to main content
15,886,830 members
Home / Discussions / C#
   

C#

 
QuestionNested Transaction Pin
123456uio18-Aug-06 2:31
123456uio18-Aug-06 2:31 
QuestionDataGridView header click Pin
zaboboa18-Aug-06 2:24
zaboboa18-Aug-06 2:24 
AnswerRe: DataGridView header click Pin
Robert Rohde18-Aug-06 3:14
Robert Rohde18-Aug-06 3:14 
QuestionHow can i change the base address of my dll Pin
Timothy_198218-Aug-06 2:08
Timothy_198218-Aug-06 2:08 
AnswerRe: How can i change the base address of my dll Pin
Dave Kreskowiak18-Aug-06 2:25
mveDave Kreskowiak18-Aug-06 2:25 
JokeRe: How can i change the base address of my dll Pin
Guffa18-Aug-06 4:11
Guffa18-Aug-06 4:11 
GeneralRe: How can i change the base address of my dll Pin
Timothy_198219-Aug-06 4:06
Timothy_198219-Aug-06 4:06 
GeneralRe: How can i change the base address of my dll [modified] Pin
Dave Kreskowiak19-Aug-06 6:02
mveDave Kreskowiak19-Aug-06 6:02 
You don't really. Not without some work in the debugger to figure out what your resulting code size is anyway.

Why do you think you need to do this anyway? The only real benefit is to speed up loading assemblies, but only slightly. All you're doing is (trying to) save the loader from having to calculate a starting address for you.

This can also introduce unexpected problems. If an assembly won't fit in a hole that exists at the address you specify, or if the address is already being used by another assembly, then you actually increase the time it takes to load the assembly as the loader has to calculate a new address.


-- modified at 12:05 Saturday 19th August, 2006

Dave Kreskowiak
Microsoft MVP - Visual Basic


GeneralRe: How can i change the base address of my dll Pin
Timothy_198219-Aug-06 22:02
Timothy_198219-Aug-06 22:02 
GeneralRe: How can i change the base address of my dll Pin
Dave Kreskowiak26-Aug-06 3:25
mveDave Kreskowiak26-Aug-06 3:25 
GeneralRe: How can i change the base address of my dll Pin
Timothy_198226-Aug-06 22:39
Timothy_198226-Aug-06 22:39 
QuestionAccess Denied trying to read file with StreamReader [modified] Pin
Matt Casto18-Aug-06 2:02
Matt Casto18-Aug-06 2:02 
AnswerRe: Access Denied trying to read file with StreamReader Pin
Dave Kreskowiak18-Aug-06 2:19
mveDave Kreskowiak18-Aug-06 2:19 
GeneralRe: Access Denied trying to read file with StreamReader Pin
Matt Casto18-Aug-06 2:41
Matt Casto18-Aug-06 2:41 
GeneralRe: Access Denied trying to read file with StreamReader Pin
Dave Kreskowiak18-Aug-06 11:41
mveDave Kreskowiak18-Aug-06 11:41 
AnswerSolution Found Pin
Matt Casto18-Aug-06 4:45
Matt Casto18-Aug-06 4:45 
GeneralRe: Solution Found [modified] Pin
Dave Kreskowiak18-Aug-06 11:46
mveDave Kreskowiak18-Aug-06 11:46 
Questionclient server network problem Pin
Kim061818-Aug-06 1:15
Kim061818-Aug-06 1:15 
QuestionBegin-Commit Transaction in .NET Pin
Coding C#18-Aug-06 1:14
Coding C#18-Aug-06 1:14 
AnswerRe: Begin-Commit Transaction in .NET Pin
coolestCoder18-Aug-06 1:24
coolestCoder18-Aug-06 1:24 
JokeRe: Begin-Commit Transaction in .NET Pin
Guffa18-Aug-06 1:29
Guffa18-Aug-06 1:29 
AnswerRe: Begin-Commit Transaction in .NET Pin
Guffa18-Aug-06 1:26
Guffa18-Aug-06 1:26 
GeneralRe: Begin-Commit Transaction in .NET Pin
Coding C#18-Aug-06 1:30
Coding C#18-Aug-06 1:30 
AnswerRe: Begin-Commit Transaction in .NET Pin
Dustin Metzgar18-Aug-06 3:27
Dustin Metzgar18-Aug-06 3:27 
GeneralRe: Begin-Commit Transaction in .NET Pin
Coding C#18-Aug-06 5:13
Coding C#18-Aug-06 5:13 

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.