Click here to Skip to main content
15,884,237 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to load referenced assemblies Pin
Heath Stewart23-Jan-04 4:53
protectorHeath Stewart23-Jan-04 4:53 
GeneralGAC / Reference / VStudio Pin
dabossuk23-Jan-04 2:25
dabossuk23-Jan-04 2:25 
GeneralRe: GAC / Reference / VStudio Pin
Heath Stewart23-Jan-04 4:44
protectorHeath Stewart23-Jan-04 4:44 
GeneralMultiple InternetExplorer objects' DownloadComplete event Pin
profoundwhispers23-Jan-04 0:07
profoundwhispers23-Jan-04 0:07 
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
Mazdak23-Jan-04 2:20
Mazdak23-Jan-04 2:20 
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
profoundwhispers23-Jan-04 4:17
profoundwhispers23-Jan-04 4:17 
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
Mazdak23-Jan-04 4:34
Mazdak23-Jan-04 4:34 
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
Heath Stewart23-Jan-04 4:42
protectorHeath Stewart23-Jan-04 4:42 
Mazdak's idea may work, but another way is to use the lock keyword (or handle synchronization yourself) against an instantiate object (nothing special, you could even lock against the Type):
private void InternetExplorer_DocumentComplete(...)
{
  lock (this.GetType())
  {
    // Do stuff
  }
}
And, yes, Navigate2 is an asynchronous call, hence the need for a DownloadComplete event (as well as other similar events for each element and the document while being parsed).

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
profoundwhispers23-Jan-04 4:53
profoundwhispers23-Jan-04 4:53 
GeneralRe: Multiple InternetExplorer objects' DownloadComplete event Pin
Heath Stewart23-Jan-04 4:58
protectorHeath Stewart23-Jan-04 4:58 
GeneralHelp with Collections Pin
crushinghellhammer22-Jan-04 18:19
crushinghellhammer22-Jan-04 18:19 
GeneralRe: Help with Collections Pin
Heath Stewart22-Jan-04 18:49
protectorHeath Stewart22-Jan-04 18:49 
GeneralRe: Help with Collections Pin
crushinghellhammer22-Jan-04 19:32
crushinghellhammer22-Jan-04 19:32 
GeneralRe: Help with Collections Pin
Heath Stewart22-Jan-04 19:35
protectorHeath Stewart22-Jan-04 19:35 
GeneralRe: Help with Collections Pin
crushinghellhammer22-Jan-04 20:25
crushinghellhammer22-Jan-04 20:25 
GeneralRe: Help with Collections Pin
crushinghellhammer23-Jan-04 7:36
crushinghellhammer23-Jan-04 7:36 
GeneralRe: Help with Collections Pin
Heath Stewart23-Jan-04 8:21
protectorHeath Stewart23-Jan-04 8:21 
GeneralRe: Help with Collections Pin
crushinghellhammer23-Jan-04 7:44
crushinghellhammer23-Jan-04 7:44 
Questionhow to embed excel and pdf into winform ? Pin
Xpeive22-Jan-04 16:14
Xpeive22-Jan-04 16:14 
AnswerRe: how to embed excel and pdf into winform ? Pin
Heath Stewart22-Jan-04 18:42
protectorHeath Stewart22-Jan-04 18:42 
GeneralRe: how to embed excel and pdf into winform ? Pin
Xpeive23-Jan-04 16:34
Xpeive23-Jan-04 16:34 
GeneralRe: how to embed excel and pdf into winform ? Pin
Heath Stewart23-Jan-04 17:52
protectorHeath Stewart23-Jan-04 17:52 
GeneralRe: how to embed excel and pdf into winform ? Pin
Xpeive23-Jan-04 22:59
Xpeive23-Jan-04 22:59 
AnswerRe: how to embed excel and pdf into winform ? Pin
Guillermo Rivero23-Jan-04 1:27
Guillermo Rivero23-Jan-04 1:27 
GeneralCustom Component Functions Pin
obelisk2922-Jan-04 14:47
obelisk2922-Jan-04 14:47 

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.