Latest stories

How to create simple Tabs and Buttons in Sencha

H

Sencha Touch is used to create HTML5 based mobile apps that work on Android, iOS and Blackberry devices. – To develope  Sencha Touch Applications,  two things are needed: 1. Sencha Touch 2SDK 2. SDK Tools -There is a command to develop  Sencha Touch Application: E:wampwwwsencha-touch-2.0.1>sencha generate app  <Application Name >../<Application Name> -It will create a...

How to add an audio file to a button in Unity3D

H

using UnityEngine; using System.Collections; using System; public class MainMenu : MonoBehaviour { public AudioSource audioSource; public AudioClip palySound; void Start ()  { } public void OnGUI() {  if(GUI.Button(new Rect(50,200,100,45),”Play”))  { audioSource.PlayOneShot(palySound); } }} when we attached the script in the inspector. we have to attach the AudioSource  from the...

Five ways to pull yourself out of workaholism

F

‘In sickness and in health and till death do us part’ – if these are the vows your family and friends think you have exchanged with your Blackberry/keyboard/iPad, then you are a certified workaholic. The symptoms are many, but some of the significant ones are that you punch away nonstop, receive every call from office and take your meals at odd hours to finish that extra bit at...

QR_CODE Scanner for Android

Q

“QR Codes” also knows as “Quick Response Codes”. Its two dimensional code (also known as Matrix Barcode ), and can be read easily by a mobile phone. They fetch piece of information from temporary media and push that in your mobile phone. The reason why they are getting popular than normal Barcode is because they are able to capture more information(data, urls, texts and geo coordinates). Another...

Skype is conflicting Wamp server. OR Wamp server error – though it is online,it is not working properly and showing orange color on quick launch icon.

S

Wamp server showing above error massage- Could not execute menu item (internal error). [execution ] Could not perform service action: The service has not been started. This error is fault of Apache  service of Wamp server. To solve this error- 1. left click on quick launch icon of wamp server . 2.then goto Apache–> Service–>click on Test Port 80. the following screen will appear...

Add UIButton on UITableView when drag , Swipe or touches moved on Cell Using UIGestureRecognizerDelegate in iPhone

A

//——– .h //Delegate UIGestureRecognizerDelegate UIButton *YourButton; //——– .m – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *SimpleTableIdentifier = @”SimpleTableIdentifier”; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];...

Launch the app store app from your application

L

  Step 1: Create an empty iPhone application with and add the UIViewController subclass to it. Step 2: Create a view just like the one given below and the add the view of this view controller into the iPhone window. Step 3: Create a function for the button and this function will contain the code for launching the app store application of the iOS device from your application. So declare a...

How to export leads to excel sheet in salesforce apex

H

Here is the code for exporting leads to excel in salesforce apex Class Code: public class exportExcel { public string header{get;set;} public List<wrapper> lstwrapper {get; set;} public class wrapper{ public string Id{get; set;} public string Name{get; set;} public string Email{get; set;}    } public string Filetype{get;set;} public boolean isExcel {get;set;} public boolean isCsv {get;set;}...

Category