Click here to Skip to main content
15,889,462 members
Home / Discussions / C#
   

C#

 
AnswerRe: Q&A widget please. Pin
Shady George12-Apr-14 11:28
Shady George12-Apr-14 11:28 
GeneralRe: Q&A widget please. Pin
Richard Andrew x6412-Apr-14 15:10
professionalRichard Andrew x6412-Apr-14 15:10 
GeneralRe: Q&A widget please. Pin
Shady George12-Apr-14 17:40
Shady George12-Apr-14 17:40 
AnswerRe: Q&A widget please. Pin
OriginalGriff13-Apr-14 2:42
mveOriginalGriff13-Apr-14 2:42 
AnswerRe: Q&A widget please. Pin
Jay Nardev13-Apr-14 7:44
Jay Nardev13-Apr-14 7:44 
QuestionI found This Error When I run My programe The data reader is incompatible with the specified 'DBLaxmiTatkalModel.TblAttendence'. A member of the type, 'AttendenceId', does not have a... Pin
Šangeet Šhah11-Apr-14 18:10
professionalŠangeet Šhah11-Apr-14 18:10 
AnswerRe: I found This Error When I run My programe The data reader is incompatible with the specified 'DBLaxmiTatkalModel.TblAttendence'. A member of the type, 'AttendenceId', does not have a... Pin
Mycroft Holmes11-Apr-14 22:55
professionalMycroft Holmes11-Apr-14 22:55 
Questionif a real number has two dots in it it must display error that it is not a real number Pin
Member 1074041211-Apr-14 15:09
Member 1074041211-Apr-14 15:09 
i am working on lexical analyzer phase of compiler construction.... i have written a code that display a that the given number is real if it contain one dot int it but if it contains two dot i does not generate error....
here is my code

C#
bool containReal = ss.Any(char.IsDigit) && ss.Contains('.');
                                       if (containReal)
                                       {
                                           MessageBox.Show("this is a Real Number");
                                           break;
                                       }
                                       //invalid b/c of two dots
                                       string str2 = ss.Substring(1, ss.IndexOf('.'));
                                       string str3 = ss.Substring(ss.IndexOf('.') + 1);
                                       bool chk_dot = (str2.Any(char.IsLetter) || str3.Any(char.IsLetter) || str2.IndexOfAny("!@%^&*()#$-_+<>".ToCharArray()) != -1 || str3.IndexOfAny("!@%^&*()#$-_+<>".ToCharArray()) != -1);
 if ( chk_dot)
                                        {
                                            MessageBox.Show("Error: Line num  " + linecount + "  Invalid b/c of two dots in a real number");
                                            errorcount++;
                                            break;

                                        }




can you help me to correct it......

modified 11-Apr-14 21:26pm.

GeneralRe: if a real number has two dots in it it must display error that it is not a real number Pin
PIEBALDconsult11-Apr-14 15:25
mvePIEBALDconsult11-Apr-14 15:25 
Questionthuật toán k-mean Pin
Member 1074281911-Apr-14 8:03
Member 1074281911-Apr-14 8:03 
SuggestionRe: thuật toán k-mean Pin
Richard Deeming11-Apr-14 8:16
mveRichard Deeming11-Apr-14 8:16 
QuestionError msg conveying that a number is invalid because of Two dots within a real number in c# Pin
Member 1074041211-Apr-14 7:00
Member 1074041211-Apr-14 7:00 
AnswerRe: Error msg conveying that a number is invalid because of Two dots within a real number in c# Pin
Dave Kreskowiak11-Apr-14 7:03
mveDave Kreskowiak11-Apr-14 7:03 
GeneralRe: Error msg conveying that a number is invalid because of Two dots within a real number in c# Pin
phil.o11-Apr-14 7:18
professionalphil.o11-Apr-14 7:18 
GeneralRe: Error msg conveying that a number is invalid because of Two dots within a real number in c# Pin
Eddy Vluggen11-Apr-14 7:48
professionalEddy Vluggen11-Apr-14 7:48 
QuestionOpen file image with inform C# Pin
Member 1039071511-Apr-14 6:38
Member 1039071511-Apr-14 6:38 
AnswerRe: Open file image with inform C# Pin
Dave Kreskowiak11-Apr-14 7:00
mveDave Kreskowiak11-Apr-14 7:00 
GeneralRe: Open file image with inform C# Pin
Member 1039071511-Apr-14 8:07
Member 1039071511-Apr-14 8:07 
GeneralRe: Open file image with inform C# Pin
Dave Kreskowiak11-Apr-14 9:09
mveDave Kreskowiak11-Apr-14 9:09 
Questiondownload a file from google drive Pin
BODEMPUDI_CHOWDARY11-Apr-14 4:38
BODEMPUDI_CHOWDARY11-Apr-14 4:38 
AnswerRe: download a file from google drive Pin
Richard MacCutchan11-Apr-14 4:56
mveRichard MacCutchan11-Apr-14 4:56 
AnswerRe: download a file from google drive Pin
Mycroft Holmes11-Apr-14 13:45
professionalMycroft Holmes11-Apr-14 13:45 
QuestionStoring deserialized data into SQL Server Ce using Entity Framework code first Pin
sifi mohamed amine10-Apr-14 23:12
sifi mohamed amine10-Apr-14 23:12 
AnswerRe: Storing deserialized data into SQL Server Ce using Entity Framework code first Pin
Dave Kreskowiak11-Apr-14 6:59
mveDave Kreskowiak11-Apr-14 6:59 
QuestionToolStripMenuItem color becomes white after clicking Pin
Aaditya Hasiyan10-Apr-14 21:38
Aaditya Hasiyan10-Apr-14 21:38 

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.