Customized Confirmation Box in jQuery

Submitted by GeePee on
This project will teach you on how to create a customized confirmation box using the jQuery plugin. In my example, I used the Delete Multiple Records project that I did before. When the user click the delete button, confirmation box will display confirming if you want to delete selected files. The user has an option to delete or cancel the process. By hitting "Confirm Deletion" button, files will

Creative Verification OOP Complete Package

Submitted by michael.galanza on
/** Reservation script from Fujimura & Graphics Solutions This program is free software published under the terms of the GNU Lesser General Public License. This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For updates, please send me your personal message or comment us

Object Oriented Programming Style in C# (OOP)

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to use OOP (Object Oriented Programming) in C#.

What is OOP?

OOP is when you are able to run multiple instances of one class or form at one time without them colliding in to one another. I will give you an example; Let's say that we have a 'person' class, with the variables to hold that person's name and age. Without OOP, we could only have one person.

Skype4COMLib Skype API Auto Response in C#

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to use the Skype4ComLib Libaries in C# .NET to access our Skype program on our computer.

SKYPE4COMLib:

To use the Skype libaries you need to first obtain them via .NET Framework installation of 4.0 or later. I am using 4.5 for this tutorial, then you want to create a new Console/Form application in Visual Studio for a C# application. Right click on your application in the 'Solution/Package Explorer', click on 'Add', then 'Reference', select 'COM' from the side tabs, and choose 'SKYPE4COMLib Libary'.

Sliding Sidebar in jQuery

Submitted by GeePee on
This project will teach you on how to slide in and out sidebar using jQuery plugin. You have an option in which side do you want the sidebar to come out. It is either left or right. First, the sidebar is hide and by pressing the menu button, the sidebar slide in. Hope you learn from this.

Buffer Overflow Attack Protection in C# .NET

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to secure your application in C# from Buffer Overflow Attacks.

What's a Buffer Overflow Attack? (BTA)

A buffer overflow attack is when the user purposefully enters too much data in such a way that the program will spill the data across different memory locations which will cause unexpected behaviour such as opening another vulnerability for the attack to exploit. This works through the use of user input.

Switch Statements in C#

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to use Switch statements in C#.

Switch:

A switch statement allows a single variable or static piece of data to be checked for mulitple conditions, essentially like a long 'else if' statement but a lot more compact and with slightly more flexability.

Case:

To use a switch statement there are a few other keywords we need to learn first, one of which is 'case'. Case is a possible value of the variable or value being 'switched', this must be of the same data type as the value being switched and must be followed by a colon. Break