Click here to Skip to main content
16,005,149 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to assign Title Case Format for Label Pin
Pualee20-Mar-07 3:47
Pualee20-Mar-07 3:47 
QuestionColumn sort in a ListView Pin
anderslundsgard20-Mar-07 2:11
anderslundsgard20-Mar-07 2:11 
AnswerRe: Column sort in a ListView Pin
dsl/fahk20-Mar-07 2:20
dsl/fahk20-Mar-07 2:20 
GeneralRe: Column sort in a ListView Pin
anderslundsgard20-Mar-07 2:51
anderslundsgard20-Mar-07 2:51 
GeneralRe: Column sort in a ListView Pin
anderslundsgard20-Mar-07 3:49
anderslundsgard20-Mar-07 3:49 
QuestionDatagrid view Pin
hiremath7120-Mar-07 1:58
hiremath7120-Mar-07 1:58 
AnswerRe: Datagrid view Pin
dsl/fahk20-Mar-07 2:17
dsl/fahk20-Mar-07 2:17 
AnswerRe: Datagrid view Pin
Rocky#20-Mar-07 2:31
Rocky#20-Mar-07 2:31 
well u can handle this situation without using regular expressions as well. You need to handle the cellValidating event of the DGV and in that u'd code somthin like this.

int i;<br />
if(e.ColumnIndex == myDGVCol1.DisplayIndex)<br />
{<br />
if(!Int32.TryParse(e.FormattedValue,out i))<br />
{<br />
  e.Cancel = true;<br />
  MessageBox.Show("It is not an integer");<br />
// or <br />
myDGV[e.ColumnIndex, e.RowIndex].ErrorText ="Whatever";<br />
}<br />
<br />
// similarly u can use the tryparse methods of DateTime classes etc<br />
<br />
}

and in order to go without taking special charaters u can use string manuipulation but I dont have the sample right now...

hope it helps

Rocky
GeneralRe: Datagrid view Pin
hiremath7120-Mar-07 5:00
hiremath7120-Mar-07 5:00 
Questionabout AJAX Pin
upadesh20-Mar-07 1:52
upadesh20-Mar-07 1:52 
AnswerRe: about AJAX Pin
Colin Angus Mackay20-Mar-07 2:03
Colin Angus Mackay20-Mar-07 2:03 
AnswerRe: about AJAX Pin
J4amieC20-Mar-07 2:04
J4amieC20-Mar-07 2:04 
AnswerRe: about AJAX Pin
Andrei Ungureanu20-Mar-07 3:03
Andrei Ungureanu20-Mar-07 3:03 
Questionabout .csv files Pin
upadesh20-Mar-07 1:44
upadesh20-Mar-07 1:44 
AnswerRe: about .csv files Pin
Colin Angus Mackay20-Mar-07 2:01
Colin Angus Mackay20-Mar-07 2:01 
AnswerRe: about .csv files Pin
joon vh.20-Mar-07 2:16
joon vh.20-Mar-07 2:16 
Questionorganization chart Pin
merwa20-Mar-07 1:37
merwa20-Mar-07 1:37 
AnswerRe: organization chart Pin
dsl/fahk20-Mar-07 2:08
dsl/fahk20-Mar-07 2:08 
GeneralRe: organization chart Pin
merwa20-Mar-07 3:22
merwa20-Mar-07 3:22 
QuestionUninstall Pin
hadad20-Mar-07 1:31
hadad20-Mar-07 1:31 
AnswerRe: Uninstall Pin
sujithkumarsl20-Mar-07 4:24
sujithkumarsl20-Mar-07 4:24 
GeneralRe: Uninstall Pin
Laxman Auti20-Mar-07 5:12
Laxman Auti20-Mar-07 5:12 
GeneralRe: Uninstall Pin
hadad20-Mar-07 5:22
hadad20-Mar-07 5:22 
GeneralRe: Uninstall Pin
sujithkumarsl20-Mar-07 5:42
sujithkumarsl20-Mar-07 5:42 
GeneralRe: Uninstall Pin
Laxman Auti20-Mar-07 5:42
Laxman Auti20-Mar-07 5:42 

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.