dhruval-dotnet.blogspot.com
.NET Fundamentals: April 2009
http://dhruval-dotnet.blogspot.com/2009_04_01_archive.html
Thursday, April 30, 2009. This article describes the technique to merge the header of a. I found many times the need to merge the header of a. So, when I was having spare time, I tried to find a way to do it, and here it is. I know that if you need to merge headers, you can use the. Control instead. But if you are fond of. Just like me), or may be you already used. Then this article is for you. When rendered, a. Will be converted into a HTML. Element and the header will be the first HTML. Event, like this.
dhruval-dotnet.blogspot.com
.NET Fundamentals: September 2009
http://dhruval-dotnet.blogspot.com/2009_09_01_archive.html
Saturday, September 26, 2009. Send Mail through Gmail Accoun [ Asp.net C# ]. System.Net.Mail;. Client.Port = 587;. Client.EnableSsl = true. Client.UseDefaultCredentials = false. Client.Credentials = loginInfo;. ExMessage.ToString() ;. 2] Stack Trace :". ExStackTrace.ToString() ;. Posted by Dhruval Shah. Subscribe to: Posts (Atom). Subscribe To My Blog. Ms Sql Server Fundamentals. Net 20 Framework Fundamental. Send Mail through Gmail Accoun [ Asp.net C# ]. Notify Icon Text vs BalloonTipText.
dhruval-dotnet.blogspot.com
.NET Fundamentals: Crystal Reports In ASP.NET
http://dhruval-dotnet.blogspot.com/2012/06/crystal-reports-in-aspnet.html
Monday, June 25, 2012. Crystal Reports In ASP.NET. This example shows how to Create Crystal Reports In ASP.NET 2.0,3.5,4.0 Using C# And VB.NET. I am generating Crystal report by fetching data from two tables and grouping them based on Project Name. Database tables are just for demo purpose you can create your own tables with whatever schema you want. Two tables are as shown below. Create a new website and right click on solution explorer add new Item Select Crystal Report. Click ok to finish the wizard.
dhruval-dotnet.blogspot.com
.NET Fundamentals: January 2010
http://dhruval-dotnet.blogspot.com/2010_01_01_archive.html
Sunday, January 31, 2010. Access Report Viewer DLL Files for your Application. If an application requires the use of Report Viewer Redistributable and needs access to specific .dlls for the application to run, you’ll find this post helpful, http:/ drowningintechnicaldebt.com/blogs/dennisbottjer/archive/2006/10/16/Hacking-Report-Viewer-Redistributable.aspx. I will outline the steps below to avoid another click. ;) I have also added links for the most recent versions of Report Viewer. Rename: FL Microsoft ...
dhruval-dotnet.blogspot.com
.NET Fundamentals: May 2010
http://dhruval-dotnet.blogspot.com/2010_05_01_archive.html
Sunday, May 2, 2010. The Object base class. In the .NET Framework, all types are derived from System.Object. That relationship helps establish the common type system used throughout the .NET Framework. Posted by Dhruval Shah. Labels: .net 2.0 Framework Fundamental. The simplest types in the .NET Framework, primarily numeric and boolean types, are. Value types. Value types are variables that contain their data directly instead of containing. Update, and remove them quickly with minimal overhead.
dhruval-dotnet.blogspot.com
.NET Fundamentals: Windows Forms Tip: Ensure only one instance of your application is running at a time
http://dhruval-dotnet.blogspot.com/2012/06/windows-forms-tip-ensure-only-one.html
Friday, June 22, 2012. Windows Forms Tip: Ensure only one instance of your application is running at a time. In some scenarios, you may wish to ensure that a user can run only one instance of your application at a time. Besides ensuring that only a single instance of your application is running, you may also want to bring the instance already running to the front and restore it, if it is minimized. System.Runtime.InteropServices;. Mutex m = new. App is already running…. IntPtr hWnd = FindWindow(. SetWind...
dhruval-dotnet.blogspot.com
.NET Fundamentals: February 2010
http://dhruval-dotnet.blogspot.com/2010_02_01_archive.html
Thursday, February 4, 2010. Notify Icon Text vs BalloonTipText. Old way of setting text, with 64 character limit. ThisnotifyIcon1.Text = "Show me in the toolbar";. Set the balloon tip text. ThisnotifyIcon1.BalloonTipText = "Some realy really really really really . text";. Using the MouseMove event to show the balloon tool tip. Private void notifyIcon1 MouseMove( object sender, MouseEventArgs e ). ThisnotifyIcon1.ShowBalloonTip( 10 );. Posted by Dhruval Shah. Subscribe to: Posts (Atom).
dhruval-dotnet.blogspot.com
.NET Fundamentals: March 2010
http://dhruval-dotnet.blogspot.com/2010_03_01_archive.html
Wednesday, March 31, 2010. Get Identity value after Insert in LINQ C#. Create object of entity. Fiil the entity information. Name = "test";. Id / Id is primary key column of CustomerSalesInformation Table. Posted by Dhruval Shah. Saturday, March 27, 2010. Accessing Global Resource Files from a Class Library in ASP.NET. Then you can retrieve values from the resource files from within your class library simply by passing in the key you want to retrieve:. Posted by Dhruval Shah. Thursday, March 25, 2010.
dhruval-dotnet.blogspot.com
.NET Fundamentals: How to Declare a Value Type Variable
http://dhruval-dotnet.blogspot.com/2012/06/how-to-declare-value-type-variable.html
Monday, June 25, 2012. How to Declare a Value Type Variable. To use a type, you must first declare a symbol as an instance of that type. Value types. Have an implicit constructor, so declaring them instantiates the type automatically; you. Don’t have to include the New keyword as you do with classes. The constructor assigns. A default value (usually null or 0) to the new instance, but you should always explicitly. Initialize the variable within the declaration, as shown in the following code block:.