Forum Replies Created
- AuthorPosts
- September 2, 2014 at 8:56 am in reply to: Switch all jquery ui date pickers to normal html input on button click #5069
Ankur
MemberBut In Some case if will disable entire TextBox
So you can also use
$(“#txtDate”).datepicker(“destroy”);
September 2, 2014 at 8:54 am in reply to: Switch all jquery ui date pickers to normal html input on button click #5068Ankur
MemberIf you are using Jquery datepicker then enable/disable will work
$("#txtDate").datepicker("disable"); $("#txtDate").datepicker("enable");
Ankur
September 2, 2014 at 8:50 am in reply to: OnSelectedIndexChanged event is not firing of the asp.net dropdown list #5067Ankur
MemberValue should be unique in case of use SelectedIndexChange Event properly.
Ankur
MemberSo Should we use TryParse in every scenario to parse a value in Int to prevent any exception ?
May 16, 2012 at 12:33 pm in reply to: source code-pdf to html conversion in windows application #3752Ankur
MemberThere is not any direct way to convert pdf to html in C#. You need to use any third party tools.
Ankur
MemberThanks you very much for all now its clear me the specific difference between dll and assembly.
I really appreciate it.
December 19, 2011 at 7:53 am in reply to: How to Reset development environment settings of your visual studio #3225Ankur
MemberThanks Hirendra…
Ankur
Memberyou can see the solution on following URL
http://www.authorcode.com/add-contextmenu-with-cutcopy-and-paste-options-to-textbox-in-vb-net/
Ankur
MemberHi Mike
There is a property “DataGridViewCheckBoxType” in Datagridview Column property. you need to set it and it will display check box in your datagridview.
please let me know if you have any further confusion.
Thanks
AnkurAnkur
MemberYou see you name at the Top of Gmail Window. Click on your Name and it will show you a sign out option.
Thanks.
Ankur
MemberHi Pavan
The .NET Framework provides a runtime environment called the Common Language Runtime or CLR. The CLR can be compared to the Java Virtual Machine or JVM in Java. CLR handles the execution of code and provides useful services for the implementation of the program. In addition to executing code, CLR provides services such as memory management, thread management, security management, code verification, compilation, and other system services. It enforces rules that in turn provide a robust and secure execution environment for .NET applications.
Ankur
MemberThank you Pavan
It help me a lot.Can we delete record from view which we create from more then one table ?
November 15, 2011 at 10:07 am in reply to: difference between varchar and nvarchar in sql 2008 #3036Ankur
MemberVARCHAR is an abbreviation for variable-length character string. It’s a string of text characters that can be as large as the page size for the database table holding the column in question. The size for a table page is 8,196 bytes, and no one row in a table can be more than 8,060 characters. This in turn limits the maximum size of a VARCHAR to 8,000 bytes.
The “N” in NVARCHAR means uNicode. Essentially, NVARCHAR is nothing more than a VARCHAR that supports two-byte characters. The most common use for this sort of thing is to store character data that is a mixture of English and non-English symbols — in my case, English and Japanese.
You can get a detail description between two on that following link
http://www.dotnetglobe.com/2008/03/difference-between-nvarchar-and-varchar.html
http://msdn.microsoft.com/en-us/library/ms186939.aspxAnkur
MemberI am waiting for any response……
please sendThanks
Ankur
MemberCan you please send me some sql example ?
- AuthorPosts