Forum: C# Nov 21st, 2008 |
| Replies: 1 Views: 651 i have done this by checking condition in key pressevent
if(datagridview.currentcell.editformattedvalue>10000)
{
datagridview.endedit();
} |
Forum: C# Nov 21st, 2008 |
| Replies: 1 Views: 651 hi all,
I want to restrict user enter upto value 1000 in a datagridview cell editbegin event.How to check this after we set the following.
dataGridViewValueUnits.BeginEdit(true); |
Forum: C# Nov 13th, 2008 |
| Replies: 4 Views: 2,853 Thanks for the replies.
I got the solution this way...
url = "http:\\website\dir\sample.txt";
Uri uri = new Uri(url); |
Forum: C# Nov 12th, 2008 |
| Replies: 4 Views: 2,853 Hi all,
Iam developing one windows application in that i have to open one text file and read it from http link on website like: "http:\\website\dir\sample.txt" iam using c# as language.How to... |
Forum: C# Nov 6th, 2008 |
| Replies: 5 Views: 623 Thanks for the replies, i got the solution. Actually it is incrementing but in my application more than one dll we are using,it is pointing to other dll. so , i have taken primary output assembly... |
Forum: C# Nov 6th, 2008 |
| Replies: 5 Views: 623 Please anyone tell me how to increment version no at compile time.
I have tried by placing following line in assemblyinfo.cs file still its not working
[assembly: AssemblyVersion("1.0.0.*")] |
Forum: C# Nov 5th, 2008 |
| Replies: 5 Views: 623 hi all,
here i got strucked on auto incrementation of version using c# ,iam trying to do it programatically but i could able to change version number in variables but iam not able to write it... |
Forum: C# Apr 30th, 2008 |
| Replies: 2 Views: 1,192 Hi all, iam developing one web application using asp.net ,c#.net which is basically for online examination
How to generte random questions which are stored in the questions master while creating... |