Click here to Skip to main content
15,891,567 members
Home / Discussions / C#
   

C#

 
GeneralRe: Datagridview Error Pin
dan!sh 22-Mar-10 4:29
professional dan!sh 22-Mar-10 4:29 
GeneralRe: Datagridview Error Pin
kruegersck22-Mar-10 4:36
kruegersck22-Mar-10 4:36 
GeneralRe: Datagridview Error Pin
dan!sh 22-Mar-10 4:42
professional dan!sh 22-Mar-10 4:42 
Questionhow to clear cookie programitically Pin
hotthoughtguy22-Mar-10 2:08
hotthoughtguy22-Mar-10 2:08 
AnswerRe: how to clear cookie programitically Pin
hotthoughtguy22-Mar-10 2:18
hotthoughtguy22-Mar-10 2:18 
GeneralRe: how to clear cookie programitically Pin
hotthoughtguy22-Mar-10 2:27
hotthoughtguy22-Mar-10 2:27 
QuestionDataGridViewDataErrorContexts problem Pin
eyalle22-Mar-10 1:55
eyalle22-Mar-10 1:55 
AnswerRe: DataGridViewDataErrorContexts problem Pin
Luc Pattyn22-Mar-10 2:01
sitebuilderLuc Pattyn22-Mar-10 2:01 
Hi,

DataGridViewDataErrorContexts is an enum and has the FlagsAttribute, which means all members are really bit-oriented flags, so try this:
if ((e.Context & DataGridViewDataErrorContexts.Parsing)!=0) {
    MessageBox.Show("parsing error");
}


PS: please use PRE tags to show code, as I did (see the difference?)

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.

QuestionTransfer Data From Datagrid cell IN form TO Text box IN Other Form Pin
shahramkeyboard22-Mar-10 1:46
shahramkeyboard22-Mar-10 1:46 
AnswerRe: Transfer Data From Datagrid cell IN form TO Text box IN Other Form Pin
Pete O'Hanlon22-Mar-10 2:02
mvePete O'Hanlon22-Mar-10 2:02 
AnswerRe: Transfer Data From Datagrid cell IN form TO Text box IN Other Form Pin
shahramkeyboard22-Mar-10 6:08
shahramkeyboard22-Mar-10 6:08 
QuestionGenerating Rest Ful Web services API Key Pin
kingshez22-Mar-10 1:42
kingshez22-Mar-10 1:42 
AnswerRe: Generating Rest Ful Web services API Key Pin
Eddy Vluggen22-Mar-10 1:48
professionalEddy Vluggen22-Mar-10 1:48 
GeneralRe: Generating Rest Ful Web services API Key Pin
kingshez22-Mar-10 2:03
kingshez22-Mar-10 2:03 
GeneralRe: Generating Rest Ful Web services API Key Pin
Eddy Vluggen22-Mar-10 2:40
professionalEddy Vluggen22-Mar-10 2:40 
Questionbind multiple procedures to one report Pin
Mr.Kode22-Mar-10 1:33
Mr.Kode22-Mar-10 1:33 
AnswerRe: bind multiple procedures to one report Pin
PSK_22-Mar-10 1:41
PSK_22-Mar-10 1:41 
Questionmore cookie Pin
hotthoughtguy22-Mar-10 1:01
hotthoughtguy22-Mar-10 1:01 
AnswerRe: more cookie Pin
PSK_22-Mar-10 1:18
PSK_22-Mar-10 1:18 
GeneralRe: more cookie Pin
hotthoughtguy22-Mar-10 1:27
hotthoughtguy22-Mar-10 1:27 
Questioncookies Pin
hotthoughtguy22-Mar-10 0:29
hotthoughtguy22-Mar-10 0:29 
AnswerRe: cookies Pin
PSK_22-Mar-10 0:32
PSK_22-Mar-10 0:32 
GeneralRe: cookies Pin
hotthoughtguy22-Mar-10 0:46
hotthoughtguy22-Mar-10 0:46 
AnswerRe: cookies Pin
padmanabhan N22-Mar-10 0:40
padmanabhan N22-Mar-10 0:40 
QuestionC# windws- Auto increment font size Pin
leoiser21-Mar-10 23:50
leoiser21-Mar-10 23:50 

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.