Forum: C# May 15th, 2008 |
| Replies: 1 Views: 3,626 Checking whether value is entered into a control and preventing focus to go out if no value is entered. |
Forum: C# Mar 31st, 2008 |
| Replies: 0 Views: 2,459 EventViewer can be accessed by Selecting Event Viewer from Administrative Tools of Control Panel. This code snippet will add an Entry called Shalvin inside the Application section. |
Forum: ASP.NET Mar 12th, 2008 |
| Replies: 0 Views: 4,945 Uploading a file to a specific folder inside the virtual directory. |
Forum: ASP.NET Mar 3rd, 2008 |
| Replies: 0 Views: 5,594 aspnet_regsql is a tool user for installing membership, role and personalization tables to Sql Server.
1. Porting all tables to Sql Server
2. Porting only membership tables to Sql Server
3.... |
Forum: ASP.NET Mar 2nd, 2008 |
| Replies: 0 Views: 5,174 Web site Administration Tool is accessible only from the hosting server. Many times programmers won't have direct access to the the hosting server. So knowledge of ASP.Net Membership classes is an... |
Forum: C# Feb 26th, 2008 |
| Replies: 0 Views: 2,283 CAS is the programatically means by which you secure the resouce of a system like file system, printer, registry, etc. in contrast to Role Base Security (RBS) |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 0 Views: 5,697 Placing ComboxBox in DataGrid Cell is a task usually found in Invoicing application. Here is my version of same. |
Forum: C# Feb 15th, 2008 |
| Replies: 1 Views: 5,734 Serialization is the process of saving the state of an object into persistant medium.
BinaryFormatter class is used for serializing and deserializing an object.
HybridDictionary is optimized for... |
Forum: C# Feb 14th, 2008 |
| Replies: 0 Views: 7,680 Though .Net classes are vast and versatile at time you will have to resort to Win32 API calls for accomplishing certain tasks.
The following code shows a simple example of invoking a Win32 api. ... |
Forum: C# Feb 14th, 2008 |
| Replies: 0 Views: 4,344 TreeView was one of my favourite control in COM. It is well suited for creating Chart of Accounts, Hierarchical data and the like. Though there is a tree view in .Net I find it less flexible in... |
Forum: ASP.NET Sep 29th, 2006 |
| Replies: 10 Views: 25,319 But how to do the same in C#. For instance :
int hits = Int32.Parse(Application["Hits"]);
Will create a error
Error 2 Argument '1': cannot convert from 'object' to 'string' E:\Sh\ASP\cS... |