Add,Edit and Delete Using CodeIgniter.

Submitted by ranjit1 on
In this tutorial you will be able to Add,Edit and Delete Data Using CodeIgniter. System Requirement to run CI: Xampp server or Wamp server . Any Browser Google chrome,Firefox,Opera,Safari.. etc. Php editor you can use Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver to easily fix the error if they have. This

How to get the extension of a file using Java

Submitted by donbermoy on
Today, I will teach you how to create a program that get the extension of a file using java. For example if we input a text file of .txt file extension then the output will be .txt. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of extensionFile.java. 2. Import java.io package.

Basic4Android How To Create a Lib And Use It

Submitted by jahswant on
This is a small piece of code showing how to create and use java libraries in basic4android. In the .java file I included, you will find a java class with many methods. And evidently a B4A project test showing the usage of all these methods. Sure you will have to compile using SLC or generate javadoc. I hope this project will help you build your own Libraries. It also shows how to use multiple Layouts and activities. Be sure to go forward. I want to be precise that i'm gaining in experience while consulting this forum every day. Thanks Very Much To All Forum Members... Jahswant.

Even or Odd in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple tool in Visual Basic to check whether the entered number is even or odd. Design: For this program, we need a couple of components; Button, button1, Begin the checking process. NumericUpDown, numericUpDown1, Hold the number value. Button Click: Once the button is clicked, we first want to create a new integer variable and set it equal to the value of the numericupdown control...

Copy/Paste a Text using C#

Submitted by donbermoy on
In this tutorial, we will create a program that has a copy and paste functions of using the ClipBoard class of C#. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, insert two Buttons for the Copy and Paste Functions named btnCopy labeled it as "Copy", and btnPaste labeled it as "Paste".