Skip to main content

Posts

Featured Post

How to create customizable products in Shopify for Free (No coding!)

Creating customizable products in your Shopify store not only increase your customer satisfaction, it also increases your conversion rate.  Here is a method to add custom options for your Shopify product and convert it into personalized product - Go to Shopify store page and search for "Advanced Product Customizer" app or you can directly the the Shopify app page by clicking on this link Advanced Product Customizer . Install  Advanced Product Customizer  app for free in your Shopify store  From the application dashboard, enable to app embed block to complete the installation process Click "Product Custom Options"  From the Shopify products list, select the product on which you want to add custom options. Advanced Product Customizer  offers Image Swatch, Color Swatch, Text box, File Upload, Radio, Checkbox, Date Picker and more. Here is the a demo video for adding custom option for a Shopify product -

Task Management Software

A Task Management software can have following basic features- To-do list Reminders Notes User can be provided with following options with respect to above features: Priority set for each task of To-do list. Deadlines setup for each task of To-do list. Reminders of due dates of each task. Reminders about birthdays dates and important meetings Taking notes about specific task of To-do list. Maintaining the status of each task of To-do list. In my upcoming posts I will show you how these functionalities can be implemented using C#.NET. For maintaining the database I will use MS SQL Server.

Send email using C# - details

Here are the details for the classes and properties used in my previous post: Simple Mail Transfer Protocol is an Internet standard for email transmission across IP networks. System.Net.Mail: It is namespace contains classes used to send e-mail to a Simple Mail Transfer Protocol server for delivery. In the previous post,  following two classes of System.Net.Mail are used: MailMessage - represents the contents of mail  message. SmtpClient - transmit email to the SMTP host that you designate for mail delivery. Note: We can also use "Attachment class" to create mail attachment. Details about properties and functions of MailMessage class which are used in our program: MailMessage.From - Gets or Sets the from address for current email message MailMessage.Subject - Gets or Sets the subject line for current email message MailMessage.Body - Gets or Sets the message body Mail.To - Gets the address collection that contains the recipients of current emai...

Send email using C#

In my previous post I wrote about sticky notes type application. By using that application a user is able to take small notes. As soon as user closes the notes, the application saves the user notes. So next time when user again launches the application, then user is provided with his notes. Now I am adding one more functionality to this application. By using this functionality user will be able to send his notes to a specified email.  To implement this functionality we need to add following libraries in the project: using System.Net.Mail using System.Net.Mime Add a link label at the bottom of the form. On the Click event of link label write the logic for sending email.  Here is the code snippets:             SmtpClient SmtpServer = new SmtpClient();  SmtpServer.Credentials = new System.Net.NetworkCredential("xyz@gmail.com", "xyz");             SmtpServer.Port = 587...

Sticky Notes type application using C#

Technology: C#.NET Major components of .NET used in this app:  Windows Form Text Box control Serialization concept What is "sticky notes"? Ans: Sticky note is a simple note keeping application of Windows. It remains on the top of the every window. We can use it to write down small notes that requires frequent attention. Concept of serialization: To save the current state of sticky note we can use Serialization concept. Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization. Steps to create this utility: Create a Windows Form based project in IDE. Add TextBox control on the Windows form Set following properties of the TextBox control: Dock Style to Fill Multiline to True Code Snippnets: //stor...