Tag: zonix

Some very special features of crystal reports

Visit: .comhttp://www.zonixsoft Create a Watermark A watermark is a graphical or textual element that is placed behind the rest of yourreport. Examples of useful watermarks are your company logo, the word “Draft,”or other items that you may want to appear right behind the rest of the elements of your report.   1. Open the report […]

Code Sample to Upload file to FTP Server

Visit: https://zonixsoft.com check out below code to upload file to FTP Server:   /// <summary> /// Code to upload file to FTP Server /// </summary> /// <param name=”strFilePath”>Complete physical path of the file to be uploaded</param> /// <param name=”strFTPPath”>FTP Path</param> /// <param name=”strUserName”>FTP User account name</param> /// <param name=”strPassword”>FTP User password</param> /// <returns>Boolean value based […]

Code Sample to Upload file to FTP Server

Visit: https://zonixsoft.com check out below code to upload file to FTP Server:   /// <summary> /// Code to upload file to FTP Server /// </summary> /// <param name=”strFilePath”>Complete physical path of the file to be uploaded</param> /// <param name=”strFTPPath”>FTP Path</param> /// <param name=”strUserName”>FTP User account name</param> /// <param name=”strPassword”>FTP User password</param> /// <returns>Boolean value based […]

Icon in the Address bar Textbox in Browsers

Visit: https://zonixsoft.com (Short Cut) Icon in the Address bar Textbox in Browsers You have to insert this line after the <head> tag in your html / ASPX / Master Page. <link rel=”shortcut icon” href=”images/MyComp.ico”> Make sure the image is file type .ico (for icon). Also, after inserting this line, the image may not appear immediately. […]

Boxing and UnBoxing

    Boxing and unboxing enable value types to be treated as objects. Boxing a value type packages it inside an instance of the Object reference type. This allows the value type to be stored on the garbage collected heap. Unboxing extracts the value type from the object. In this example, the integer variable i is […]

Boxing and UnBoxing

    Boxing and unboxing enable value types to be treated as objects. Boxing a value type packages it inside an instance of the Object reference type. This allows the value type to be stored on the garbage collected heap. Unboxing extracts the value type from the object. In this example, the integer variable i is […]

OOPS Concepts and .NET Part 2 Inheritance, Abstraction, Polymorphism

Summary The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will […]

OOPS Concepts and .NET Part 2 Inheritance, Abstraction, Polymorphism

Summary The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will […]