Click here to Skip to main content
15,899,937 members
Home / Discussions / C#
   

C#

 
GeneralRe: Web Browser Document event handling Pin
eliea26-Nov-04 22:06
eliea26-Nov-04 22:06 
GeneralRe: Web Browser Document event handling Pin
Alex Korchemniy27-Nov-04 9:51
Alex Korchemniy27-Nov-04 9:51 
GeneralRe: Web Browser Document event handling Pin
eliea29-Nov-04 1:07
eliea29-Nov-04 1:07 
GeneralRe: Web Browser Document event handling Pin
eliea29-Nov-04 8:06
eliea29-Nov-04 8:06 
Generaldirectx sdk Pin
cmarmr25-Nov-04 7:27
cmarmr25-Nov-04 7:27 
GeneralPagging dataset and rebind controls Pin
Kris{PL}25-Nov-04 5:09
Kris{PL}25-Nov-04 5:09 
GeneralHashtables and foreach loops: Pin
HahnTech25-Nov-04 4:42
HahnTech25-Nov-04 4:42 
GeneralRe: Hashtables and foreach loops: Pin
Daniel Grunwald25-Nov-04 6:31
Daniel Grunwald25-Nov-04 6:31 
You can't cast the left-hand side of an assignment.
The left hand side must be an variable to store the value in, not an complex expression (cast).
Or what would you think the compiler should do with an assignment like a + b = 1 ?

You need to cast the right hand side,
_E.Key = (object)"NOT 1";
but as a cast to object is always implicit, you can also use
_E.Key = "NOT 1";

But DictionaryEntry is a structure, so changing it's key property won't change the key actually used by the hash table.
GeneralRe: Hashtables and foreach loops: Pin
Luis Alonso Ramos25-Nov-04 10:52
Luis Alonso Ramos25-Nov-04 10:52 
GeneralRe: Hashtables and foreach loops: Pin
leppie25-Nov-04 20:49
leppie25-Nov-04 20:49 
GeneralRe: Hashtables and foreach loops: Pin
Luis Alonso Ramos26-Nov-04 5:28
Luis Alonso Ramos26-Nov-04 5:28 
GeneralRe: Hashtables and foreach loops: Pin
leppie26-Nov-04 5:40
leppie26-Nov-04 5:40 
GeneralExit Method Pin
lenchase25-Nov-04 4:01
lenchase25-Nov-04 4:01 
GeneralRe: Exit Method Pin
Stefan Troschuetz25-Nov-04 4:15
Stefan Troschuetz25-Nov-04 4:15 
GeneralRe: Exit Method Pin
Daniel Turini25-Nov-04 4:24
Daniel Turini25-Nov-04 4:24 
GeneralRe: Exit Method Pin
Stefan Troschuetz25-Nov-04 4:36
Stefan Troschuetz25-Nov-04 4:36 
General.Net file copy progress Pin
Erica_Al25-Nov-04 3:53
Erica_Al25-Nov-04 3:53 
GeneralRe: .Net file copy progress Pin
Luis Alonso Ramos25-Nov-04 10:58
Luis Alonso Ramos25-Nov-04 10:58 
GeneralExcel Autofilter in datagrid Pin
ruifernandes2425-Nov-04 3:34
ruifernandes2425-Nov-04 3:34 
GeneralRe: Excel Autofilter in datagrid Pin
Dave Kreskowiak26-Nov-04 3:59
mveDave Kreskowiak26-Nov-04 3:59 
GeneralAccessing TabPages via Index Pin
fracalifa25-Nov-04 2:11
fracalifa25-Nov-04 2:11 
GeneralRe: Accessing TabPages via Index Pin
Daniel Turini25-Nov-04 2:30
Daniel Turini25-Nov-04 2:30 
GeneralRe: Accessing TabPages via Index Pin
Stefan Troschuetz25-Nov-04 2:34
Stefan Troschuetz25-Nov-04 2:34 
GeneralUpdating Container Object Pin
A.Mohsen25-Nov-04 2:07
A.Mohsen25-Nov-04 2:07 
GeneralRe: Updating Container Object Pin
Skynyrd25-Nov-04 10:41
Skynyrd25-Nov-04 10:41 

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.