Yes, its working now. Thanks. :)
nagendrathecoder
Posts
-
Unable upvote/downvote even after email confirmation -
Unable upvote/downvote even after email confirmationI am not able to upvote/downvote any messages. I was able to do that some days back. Even after confirming my email address, i am not able to upvote/downvote. What could be the reason?
-
Difference between Array and Loop.Nice example:thumbsup:
-
Two Calendar ControlsSo, what is the problem? You didn't mentioned your problem. :wtf:
-
datagridviewptvce wrote:
but my form is windows form not web form
Then why you posted this question in ASP.Net forum, you should have posted it in C# forum.
-
Exception in C#rapsrik wrote:
if ((CheckDuplicates(ExistingAssociatetbl) == false) & (CheckDateTime(ExistingAssociatetbl)
For me, problem seems to be here, "&" is Unary AND operator and you are using it as Logical AND. Try to use "&&" operator, its Logical AND operator used in if conditions. I am not too sure whether it'll solve your problem, but i think error is for that only. Try it. :)
-
Exception in C#Can you please provide code snippet of the lines where you are getting this error.
-
Hashtable and dictionary -
C# versionLatest version of c# is 4.0. Yes, you are right, c# 4.0 comes with Visual Studio 2010 (.Net Framework 4.0). :)
-
how i add a pictures in the database & how to connect to sql server with formview and gridview using c# -
converting gridview to excel in asp.netHave you tried earlier solutions?
-
export gridview to excel in asp.netWhat is the extension of file you are getting? If its .xls then it is excel format. The gridlines might not be visible there, you have to add gridlines.
-
return type error "not all code paths return a value"By looking at your code, it seems that you have written a program to checked whether entered number is prime or not. I am sorry my friend but logic of this program is incorrect.
wjbjnr wrote:
not all code paths return a value
This error is coming because its not returning anything if program control doesn't entered inside "for" loop. You have to make your logic correct. P.S: Please provide code snippets in code block, it enhances readability of code.
-
execution of a C # applicationExecution of C# application starts from method Main(). :omg:
-
Generate Sequencial NumberYou just need to concatenate all strings, "your datetime string" + "000000" + your value of x. Are you facing any problem in this?
-
ASP:NET: Page leaves or not [modified]Can you please explain your question or provide some details.
-
Remove items from the list box in C# windows applicationyadlaprasad wrote:
Lstservices.SelectedItems.Remove(Lstservices.SelectedItem);
I don't think this'll work. Use this instead :
Lstservices.Items.Remove(o);
-
Error in Windows CE Emulator [Solved]I figured it out. :)
-
Error in Windows CE Emulator [Solved]Hi, I have developed an mobile application. I successfully deploy it on Windows CE Emulator. My application is referencing a dll from other c# project. Dll is visible on my Emulator. But when i try to run my application on Emulator, it shows the error as: Could not load type 'TestClass.MyClass' from assembly 'TestClass,Version=1.0.0.0, Culture=Neutral,PublicKeyToken=null'. TestClass is my c#project whose dll i am referencing in my mobile application. Can anybody tell me what i am doing wrong or am i missing something? Thanks and regards, Nagendra.
modified on Friday, April 30, 2010 1:27 AM
-
delegates and events in c#