Friday, December 27, 2013

How To Mirror Your iPhone/iPad/iPod Screen To Your Computer For Free?

How To Mirror Your iPhone/iPad/iPod Screen To Your Computer For Free?

Apple's airplay mirroring on ipod,ipad and iphone allows us to wirelessly stream the screen to a Tvdisplay via the Apple TV.But if you want to mirror the screen to your computer then try this trick.There are different apps for windows that allows windows to act as an airplay receiver.Mirroring...

Wednesday, December 25, 2013

C program for Calculation of the surface and the volume of a cone

C program for Calculation of the surface and the volume of a cone

C program for Calculation of the surface and the volume of a cone#include<stdio.h>#include<conio.h>#include<math.h>void main(){ float r,h; float sa,volume; clrscr(); printf("Enter length of radius and height of cone:\n"); scanf("%f\n%f",&r,&h); sa=3.141*r*(r+sqrt(r*r+h*h)); volume=(1.0/3)*3.141* r * r * h; printf("Surface area of cone is: %.3f",sa); printf("\nVolume of cone is : %.3f",volume); getch();}OUTPUT:Enter size...
Write a C program to calculate roots of a quadratic equation

Write a C program to calculate roots of a quadratic equation

Write a C program to calculate roots of a quadratic equation#include<stdio.h>#include<math.h>int main(){ float a,b,c; float d,root1,root2; printf("Enter a, b and c of quadratic equation: "); scanf("%f%f%f",&a,&b,&c); d = b * b - 4 * a * c; if(d < 0){ printf("Roots are complex number.\n"); printf("Roots of quadratic equation are:...
write a C Program to arrange 10 numbers in ascending order

write a C Program to arrange 10 numbers in ascending order

C Program to arrange 10 numbers in ascending order/*C Program to arrange 10 numbers in ascending order*/#include<stdio.h>#include<conio.h>void main(){int i,j,temp,a[10];clrscr();printf(“Enter 10 integer numbers: \n”);for(i=0;i<10;i++)scanf(“%d”,&a[i]);for (i=0;i<10;i++){for(j=i+1;j<10;j++){if(a[i]>a[j]){temp=a[j];a[j]=a[i];a[i]=temp;}}}printf(“\n\nThe 10 numbers sorted in ascending order are: \n”);for(i=0;i<10;i++)printf(“%d\t”,a[i]);getch();}OUTPUT:Enter 10 integer numbers:29743681510The 7 numbers sorted in ascending order are:1 2 3 4 5 6 7 8...

Sunday, December 22, 2013

ASP.NET Tutorial 8- Create a Login website-Creating Master Page and appl...

ASP.NET Tutorial 8- Create a Login website-Creating Master Page and appl...

MasterPage Source Code<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title> <asp:ContentPlaceHolder id="head" runat="server"> </asp:ContentPlaceHolder></head><body> <form id="form1" runat="server"> <table style="font-family:Arial"> <tr> <td colspan="2" style="width:800px; height:80px; background-color:#3399FF; text-align:center"> <h1> WebSite Header </h1> </td> </tr> <tr> <td style="height:500px; background-color:#66FFFF; width:150px"> <h3>Menu</h3> </td> <td...

Saturday, December 21, 2013

Prolific USB-to-Serial Comm Port LINUX DRIVER

Prolific USB-to-Serial Comm Port LINUX DRIVER

Prolific technology USB serial driver LinuxWhen you connect USB (or serial to USB) to your Linux device and if it recognises the USB but A in a little different manner e.g usbdev1.XX and Not in the expected format like ttyUSB0 (ttyUSB1 , ttyUSB2 .....) . I am lising Out the...

Friday, December 20, 2013

C# SQL Database Tutorial 1:How to Connect and Use Local Database ( sql s...

C# SQL Database Tutorial 1:How to Connect and Use Local Database ( sql s...

------------------------------------------------------Connecting to local SQL Server database (SQL Server Compact 3.5 database file) using C#c# - Local database, I need some examplesc# windows, local database(sql server), connectionC# How to connect and use a databaseConnecting to a Local databasehow to connect to localDatabase C#Can't connect to local database C#Creating a Connection...

Tuesday, December 17, 2013

ASP.NET Tutorial 7- Create a Login website -  Creating Sessions and Secu...

ASP.NET Tutorial 7- Create a Login website - Creating Sessions and Secu...

------------------------------------------------Easy way to create secure ASP.NET login using SessionSession Attacks and ASP.NETWhich is More Secure? Session VS CookiesASP.NET Security: An Introductory Guide to BuildingSimple Login and Redirect for ASP.NET and AccessForce ASPSessionID to change on loginSession Security in ASP.NETHandling session and authentication timeouts in ASP...

Monday, December 16, 2013

ASP.NET Tutorial 6- Create a Login website - Login page & Validating Use...

ASP.NET Tutorial 6- Create a Login website - Login page & Validating Use...

-----------------------------------------------------------asp.net login validation with databasec# - Validating username and password in a database in asp.netValidating User Input in ASP.NET Web Pages SitesAsp.Net Examples: Simple login form example in asp.netHow to create Login page/form and check username,password in databaseSimple login form example in asp.net Check UsernameHow to implement form validation...

Friday, December 13, 2013

ASP.NET Tutorial 3- How to Create a Login website - Creating Database Fo...

ASP.NET Tutorial 3- How to Create a Login website - Creating Database Fo...

--------------------------------------------------------------------Setting up the Database  ASP.NET SiteBuilding ASP.NET Web Applications withASP.NET Web Pages DatabasesASP.NET Web Forms TutorialAfter creating Website using ASP.NET (c#), sqlserver(DatabaseSQL server DAtabaseCreating a DatabaseASP.NET Web Pages TutorialCreate a  Database Application in 15 Minutes with ASP.NETCreate a website with ASP.NetCreate an ASP.NET websiteASP.NET Web Pages DatabasesASP.NET Web Forms...

Sunday, December 8, 2013

ASP.NET Tutorial 1 - Introduction and Creating Your First ASP.NET Web Site

ASP.NET Tutorial 1 - Introduction and Creating Your First ASP.NET Web Site

------------------------------------------------------Good tutorials for beginners using ASP.NET/C#A Beginner's Tutorial for Understanding and Implementing ASP.NETBeginners Introduction to ASP.NETasp.net tutorial for beginnersSearches related to asp .net tutorial for beginnersasp .net tutorial for beginners free downloadasp .net tutorial for beginners pdfasp.net tutorialasp.net 2010 tutorial for beginnersasp net tutorial for beginners with examplesajax tutorial...

Friday, December 6, 2013

C# Tutorial 102: How to make a Live Currency Converter Using C#

C# Tutorial 102: How to make a Live Currency Converter Using C#

-------------------------------------------------currency converter help c#How best to calculate derived currency rate conversions using C#Updating the rates in my currency converter c#currency converter in asp.net c# Live Currency Conversion using C# C# Currency ExampleSearches related to currency conversion using c#how to convert currency using exchange rateconvert decimal to currency c#how to...

Thursday, December 5, 2013

QT C++ GUI Tutorial 27- How to read text file and display file to a text...

QT C++ GUI Tutorial 27- How to read text file and display file to a text...

QFile file("C:/Users/9589693153/Desktop/Test111.txt"); if(!file.open(QIODevice::ReadOnly)) { QMessageBox::information(0, "error", file.errorString()); } QTextStream in(&file); ui->textBrowser->setText(in.readAll()); file.close();----------------------------------------------------------How to display text from a file to a text browser Reading and Writing Text | C++ GUI Programming with Qt4QtCreator GUI open text file parsing - Load Text File Into Table Widget in Qt How to read...

Wednesday, December 4, 2013

Write a C program to Make Simple calculator

Write a C program to Make Simple calculator

Write a C program to Make Simple calculator#include<stdio.h>int main() { int num1,num2,opt; printf("Enter the first Integer:\n"); scanf("%d",&num1); printf("Enter the second Integer:\n"); scanf("%d",&num2); for(;;) { printf("\n\n\n\nEnter the your option:\n"); printf("1-Addition.\n2-Substraction.\n3-Multiplication.\n4-Division.\n5-Exit.\n"); scanf("%d",&opt); switch(opt) { case 1: printf("\nAddition of %d and %d is: %d",num1,num2,num1+num2); break; case 2: printf("\nSubstraction of %d and %d...
QT C++ GUI Tutorial 26- Creating Digital Clock by using QTimer and QDate...

QT C++ GUI Tutorial 26- Creating Digital Clock by using QTimer and QDate...

----------------------------------------------------------------Creating a Digital ClockSimple digital clock by using QtSearches related to qt digital clockqt 4.7 digital clockdigital clock in a phoneUnable to match current Date and time in Qt  How to take the system date timeSearches related to running date time qtqt get date and timeqt date time widgetqt...

Tuesday, December 3, 2013

QT C++ GUI Tutorial 25- How to run any EXE file by clicking a button in Qt

QT C++ GUI Tutorial 25- How to run any EXE file by clicking a button in Qt

----------------------------------------------------Open external file with parameterHow to run exe made of Qt on a computer without QtProblem with QProcess when execute different kind of .exeHow to Open execute any batch file using QT.exe files default to QT How to launch web browser, player, e-mail client and pdf  vlc  crome...
QT C++ GUI Tutorial 24- How to use QFileDialog

QT C++ GUI Tutorial 24- How to use QFileDialog

--------------------------------------------------------------How to use QDir and QFileDialog in Qt can the Open File dialog be used to select a Folderc++ - In the Qt how to open QFileDialog::getOpenFileNames Qt Toolkit - QFileDialog  How to use QFileDialogHow to creat open/save dialog with Qt Creator...

Sunday, December 1, 2013

QT C++ GUI Tutorial 23- How to open a website in a default user browser

QT C++ GUI Tutorial 23- How to open a website in a default user browser

------------------------------------------------------Qt: How to open a link in a default user browser? Qt - How to open a website in a particular browserHow can I open my .html file in a browserOpen link in default browser? Cannot open webpage with QWebView Thread: Hyperlink text in QLabel to open web browserOpening...
C# Tutorial 101:  How to Add or Embed  YouTube Videos In C# Windows Form...

C# Tutorial 101: How to Add or Embed YouTube Videos In C# Windows Form...

-----------------------------------------------------------------------Embedding And Playing YouTube Videos In C#c# - embed video using just urlc# - Play youtube video in windows formPurify Embedding YouTube Videos method in C#Watch Embedding And Playing YouTube Videos In C# Embed youtube videos using .NET (C#)Searches related to add youtube video to c#how to add a...
C# Tutorial 100: How to embed VLC Media Player into C#  Windows Forms Ap...

C# Tutorial 100: How to embed VLC Media Player into C# Windows Forms Ap...

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace vlc_media_player{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Load_Click(object sender, EventArgs e) { OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.Filter = "( *.mp4) | *.mp4"; if (openFileDialog1.ShowDialog() == DialogResult.OK) { axVLCPlugin21.playlist.add(openFileDialog1.FileName, openFileDialog1.SafeFileName,null); } }...

Saturday, November 30, 2013

Java prog#151. How to use JPopupMenu in Java Netbeans

Java prog#151. How to use JPopupMenu in Java Netbeans

---------------------------------------------------------------JPopupMenu: How to use?An example of the JPopupMenu in action  Java: submenu in jpopupmenu with separatorsDo more with JPopupMenu A simple example of JPopupMenujavax.swing.JPopupMenu JTable with JPopupMenuSearches related to jpopupmenu java examplejava swing jpopupmenu examplejava popup menu examplejava submenu examplejava menubar examplejava swing popup menujava jpopupjava swing context menujava popup...
C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#

C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#

-----------------------------------------C#: How do I add a ToolTip to a control? Creating a ToolTip for a Control (Visual C#)ToolTip.SetToolTip MethodHow To Use The Winforms ToolTip ControlVisual C# - Tooltip ControlTooltip in C# - C#Searches related to how to use tooltip in c#c# tooltip example.net tooltipvb.net tooltip examplec# add tooltip to...
C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#

C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#

-----------------------------------------C#: How do I add a ToolTip to a control? Creating a ToolTip for a Control (Visual C#)ToolTip.SetToolTip MethodHow To Use The Winforms ToolTip ControlVisual C# - Tooltip ControlTooltip in C# - C#Searches related to how to use tooltip in c#c# tooltip example.net tooltipvb.net tooltip examplec# add tooltip to...

Friday, November 29, 2013

C# Tutorial 98: How to use ContextMenuStrip (Right mouse click) in C#

C# Tutorial 98: How to use ContextMenuStrip (Right mouse click) in C#

-----------------------------------------------------------C# context menu strip right clickSearches related to Context Menu Strip c#c# vista look and feelleft click context menucontextmenu c#c# right click menuc# popup menu examplec# contextmenu eventright click context menu c#c# contextmenustrip right clickC# Source Codes: Context Menu StripCreating Context Menus in C#Context Menuc# - How to respond...

Thursday, November 28, 2013

Java prog#150. How to shutdown the computer from Java

Java prog#150. How to shutdown the computer from Java

---------------------------------------------------Shutting down a computer using Java Shutdown Windows with JavaJava - shutdown computer after program runShutting down windows operating system using Java code Shutdown/Restart/Logoff/Hibernate system in Java shutdown your system using Java Searches related to how to shutdown your computer using javahow to shutdown your computer using cmdhow to...

Wednesday, November 27, 2013

C# Tutorial 97: How to shutdown the computer from C#

C# Tutorial 97: How to shutdown the computer from C#

--------------------------------------------------------How to make a timer to shutdown computer with c#reboot, shutdown, logoff computer using c#Windows Shut down a computer using .NETShutdown Computer in C#How To Shut Down Your Computer In C#how can ShutDown Windows using c#.net Searches related to How to shutdown the computer from C#c# shut downcomputer shutting...

Tuesday, November 26, 2013

Java prog#148. Determine if internet connection is available using Java

Java prog#148. Determine if internet connection is available using Java

-------------------------------------------------------How to check internet connectivity in JavaHow to check if internet connection is present in java? sockets - check internet connectivity in java How to programmatically check availibilty of internet connectionHow to Check my pc is having internet connection using javaCheck if there is internet connection [Java]Searches related to...

Monday, November 25, 2013

C# Tutorial 96: Determine if internet connection is available using C#

C# Tutorial 96: Determine if internet connection is available using C#

------------------------------------------------------How to detect working internet connection in C#Determine if internet connection is available c sharp What is the best way to check for Internet connectivity using .Net C#check whether Internet connection is available with C#How to check if connected to the internet in C# How to check if the internet...

Sunday, November 24, 2013

How to use VMware Linux Mint in Full Screen with VMware Tools

How to use VMware Linux Mint in Full Screen with VMware Tools

----------------------------------------------Resolution problem with Linux Mint15How to set maximum fullscreen in vmwareEnable full screen on Vmware server/WorstationLinux Mint on VirtualBox—Linux Mint on VMWareVMware Linux Mint in Full Screen with VMware Tools display - How do I get full screen in Mint Linux under VMware playerVMware Linux Mint in Full Screen...
Pages (76)1234567 Next

Blog Archive

 

© 2013 Klick Dev. All rights resevered.Templateism

Back To Top