Posts

Showing posts from September, 2013

C# Tutorial 89: How to Publish an Application in C# and Make the Install...

Image
-------------------------------------------------------------------- How to Create Installation Setup for Your C# Application Project Howto make setup file from project in VS2012 C# How to Create an Installer For a WinForm Application How to make an installer for my C# application? How can I deploy a C# application Deploying a C# application Visual Studio Create Setup project How to make setup file using VS 2010 in C# window forms How do I create setup in c# Create a simple installer from Visual Studio How make Setup installation file of my Completed C# project Make an Installation program for C# applications C# publish application properties

How to use Cmake with Qt Creator for Building C++ programs

Image
------------------------------------------------------------ How to install cmake on ubuntu linux Using CMake to Build Qt Projects ubuntu c++  Using Cmake with Qt Creator ubuntu linux c++  cmake does not find qt 5.1.1 ubuntu c++ Error while building custom Qt library with CMake Qt Creator, CMake and C++/Qt Using CMake to build a Qt application "Hello World !" using Qt with CMake Configuring CMake for QT development

How to install Qt Creator and SDK on Linux Ubuntu

Image
--------------------------------------------------- How to Install Qt SDK on Ubuntu Linux Ubuntu 12.04 to 13.04 Install Qt Creator and SDK How to install qt sdk Ubuntu Installing Qt SDK on Linux How to install Qt Creator Ubuntu Download Qt, the cross-platform application framework Ubuntu Searches related to qt install Installing Qt for Windows qt install windows Searches related to qt gui tutorial qt gui tutorial python qt gui tutorial linux qt gui tutorial c++ qt creator gui tutorial qt c++ gui tutorial python qt gui tutorial qt4 tutorial qt designer examples qt linux install qt install plugin qt install tutorial qt install x11 qt install mac qt install instructions qt install event filter How can I install Qt 5.x on Qt Installer Framework How to Install Qt SDK on windows

How to Install Node.js on Ubuntu

Image
------------------------------------------------------------------------- Installing Node.js How to Install Node.js installation - How do I install the latest version of node.js Installing Node.js on Ubuntu How to install latest version of Node.js on Ubuntu Searches related to how to install node.js on ubuntu install node.js debian sudo apt-get install nodejs sudo apt-get install node ubuntu npm ubuntu nodejs package apt-get node js ubuntu apt-get node debian squeeze nodejs How to install the latest node.js on Ubuntu

How do I create a backup image of an SD card Ubuntu Linux

How to make a image of a SD card  ubuntu Linux Step-1 Insert the SD card/USB stick in your computer Now give the following command to find out the SD card in your system # df –h you will get a response like /dev/XXXXX  e.g  /dev/sdb1 Step 2 We must unmunt the Device whose image we want to make .So give the following command to unmount the device # umount /dev/XXXXX  Step-3 Now we are ready to make the image give the following command to make the image called sdimage.img in you designated folder. # sudo dd if=/deve/XXX of=~/sdimage.img    The image can take few minutes(10 to 20 min.) to be fully ready .So wait for some time and don't worry if you don't see any response for some time. Now your image of SD card is ready. Step-4 If you want to transfer the image you have to another SD card follow the commands below 1.) change SD CARD !!!!! 2.) #  umount /dev/XXXXX 3.) # sudo dd if=~/sdimage.img of= /deve/XXX   --------------------------------------...

Write a C++ Program Banking Record System

Banking Record System in C++ #include<iostream> #include<fstream> #include<cstdlib> using std :: cout ; using std :: cin ; using std :: endl ; using std :: fstream ; using std :: ofstream ; using std :: ifstream ; using std :: ios ; class account_query { private : char account_number [ 20 ]; char firstName [ 10 ]; char lastName [ 10 ]; float total_Balance ; public : void read_data (); void show_data (); void write_rec (); void read_rec (); void search_rec (); void edit_rec (); void delete_rec (); }; void account_query :: read_data () { cout << " \n Enter Account Number: " ; cin >> account_number ; cout << "Enter First Name: " ; cin >> firstName ; cout << "Enter Last Name: " ; cin >> lastName ; cout << "Enter Balance: " ; cin >> total_Ba...

C# Tutorial 88: How to Search Listbox and get all matches using C#

Image
--------------------------------------------------------------------- Making a Searching List Box C# Create a list of choices by using a list box C# How to make a ListBox Search C# Trying To Create Search A ListBox C# Create list box of search terms Dynamic restrict data in List box c sharp Textbox to make a selection (like a listbox)? C# Categorizing List Box Data Advanced Fuzzy Search C# Listbox search operator for "unequal" C#

How to Install, Build and Use the Boost C++ libraries in eclipse IDE on UBUNTU LINUX

Image
-------------------------------------------------- how to install boost library on ubuntu and run simple program in eclipse IDE Howto: Install Boost from source Ubuntu with Boost Library How and where to install Boost Library? - [SOLVED] updating Boost libraries on Boost Libraries C++ with Ubuntu Thread: Howto: Install Boost from source How to use boost library on ubuntu Searches related to how to install boost library on ubuntu ubuntu install gd library ubuntu install openssl library install curl library ubuntu ubuntu install shared library ubuntu install pcre library ubuntu boost library path apt-get install boost boost c++ ubuntu

Installing Eclipse IDE with C/C++ plugin(or CDT) in Ubuntu Linux

Image
Installing Eclipse IDE with C/C++ plugin(or CDT) in Ubuntu Linux C++ Write a C++ program to Make Simple calculator Write a C++ program to arrange 10 numbers in ascending order Write a C++ program to calculates the following equation for entered numbers (n, x). 1+ (nx/1!) - (n(n-1)x^2/2!) Write a C++ program to 1. Initialize Matrices 2. Print Matrices 3. Multiply Matrices 4. Transpose of 2nd Matrix 5. Move Row and Column of 2nd Matrix 6. Quit Write the C++ program for processing of the students structure Write a C++ program that gets two strings from input and stores them in variables such as str1 and str2 Write a C++ program that gets one text with the maximum of 256 characters from input and converts it to standard format based on the following rules and prints the final standardized text C++ Mini-Project: Human Resource Management Program Write a C++ program to Solve Quadratic equation C++ program for Calculation of the surface and the volume of a cone C++ Program to show Fibonacci S...

How to install Package build-essential on Ubuntu Linux

Image
----------------------------------------------------------- Searches related to build essential ubuntu terminal download build essential for ubuntu ubuntu 11.04 build essential What's the command to install the build-essential ubuntu 11.10 build essential ubuntu 12.04 build essential ubuntu build essential installieren sudo apt-get install build-essential does not work Package build-essential is not available

QT C++ GUI Tutorial 12- How to open a new window after successful Login

Image
---------------------------------------------------------------------------------- c++ - How would I open a new window from a button in the main How to show another window from mainwindow in QT Login How to move to another window in Qt by a pushbutton Login How to open a new window in Qt Login Open new window when button on main-window is clicked Thread: Open new window on menu action.  QMainWindow open a new QMainWindow Thread: Open a window inside another window Login Thread: right way to open a new window Login Open a window inside another window Login

Write a C++ Program for Calculating Slope of a Line Given Two End Points

Write a C++ Program for Calculating Slope of a Line Given Two End Points It uses the following formula given points are (x1,y1) and (x2, y2) slope = (y2 - y1) / (x2 - x1) #include <iostream> #include <math.h> void main () { float slope ; float x1 , y1 , x2 , y2 ; float dx , dy ; std :: cout << "Program to find the slope of a line given two end points \n " ; std :: cout << "Enter X1: " ; std :: cin >> x1 ; std :: cout << "Enter Y1: " ; std :: cin >> y1 ; std :: cout << "Enter X2: " ; std :: cin >> x2 ; std :: cout << "Enter Y2: " ; std :: cin >> y2 ; dx = x2 - x1 ; dy = y2 - y1 ; slope = dy / dx ; std :: cout << "Slope of the line with end points (" << x1 << ", " << y1 << " and (" << x2 ...