Win Rs 150 Mobile Recharge, Shopping Vouchers and Much More with Wechat July WeReward Programe

Yes friends you heared right wechat wereward Program is back again as you know wechat is one of most popular social messenger & wechat always offers new reward program to its user and also for engage more customers. Now wechat again come up with Rs 150 Free recharge, exclusive shopping vouchers and some great prizes also. If you want to get this offer you need to install this app and use it 25 days. about this offer more details are given below.

How To Get Offer – Wechat July WeReward Programe :

  • For participating in this First download the WeChat�App
  • In beginning Wechat will credit Rs.250 Points in each Wechat accounts Ensure that you perform the activity listed below daily � Missing out a day will lead to loss of money from your wechat account .
  • You have to Share any of the Wechat sticker in New or Existing Wechat group with minimum 3 Peoples � Do it Daily to maintain your Balance.
  • This Activities you have to daily for 25 Days(Till 25th July 2015).
  • After that you can redeem your Prizes / Vouchers Listed Below .
  • You can redeem the vouchers you want with your We chat balance. Redemptions process will start from 26th July right at 11:00 AM and Ends on 30th July. Below are the Vouchers and Prizes which one can win.

Reward You will get:

Balance Required
Reward � �
Voucher Details
Rs.10 �
Ferns & Petals
100 off on 500 or more Purchase.
Rs.10 �
Naaptol
20% Off Voucher upto Rs.200
Rs.20
Moto E 4G
Moto E 4G for 5 Lucky Winners.
Rs.20
Trendin � �
250 off on Purchase of 999 or more.
Rs.30
Printvenue
150 off on Purchase of 499 or more.
Rs.30
Voylla
100 off on purchase of 500 or more.
Rs.40
Saavari �
200 off on 1300 or more transactions.
Rs.40
Trendin � �
500 off on 1999 or more purchase.
Rs.50
iPhone 6 � � � � �
iPhone 6 for 3 Lucky Winners.
Rs.60
Make my trip
30% OFF upto 1000 on bookings.
Rs.100
Citrus
Get Rs.150 Cashback on Rs.50 transaction.
So Friends, in this offer you don’t need to anything hard. must try this offer and get balance and vouchers.
If you want to check your wechat balance Go to – WeChat offical account in Wechat app > Rewards > My Balance / Know more.

Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

5 Best Application For Type Cool and Fancy Font In Whatsapp

Application For Type Cool and Fancy Font In Whatsapp
5 Best Application For Type Cool and Fancy Font In Whatsapp

5 Best Application For Type Cool and Fancy Font In Whatsapp:- Nowadays social networks craze is increasing day by day. if I talking about my self so I get up and check out my cell phone and check out my WhatsApp messages and dp. then I start my routine work. in the whole day, I use the internet much time. If you are also using internet Like Me? then you are also using WhatsApp. I search for latest trick about WhatsApp also. But sometimes I didn’t find good status or when we find then it’s not in a Cool or Fancy font so today I am sharing Five awesome application that may help you to do something different.

5 Best Application For Type Cool and Fancy Font In WhatsApp

 

Stylish Font :

Stylish Font is made with Motive to provide the stylish look to Smart Phone with attractive Fonts. It has various fonts with the instant preview so you can take a look how exactly font will look.

Download Stylish Font App

WhatsApp Fancy Text:

Whatsapp Fancy text this application allows you to send messages to your contacts and other applications WhatsApp impressively. You should Try the Fancy Text of WhatsApp and amazed all the people Write your text in a box, writing, immediately below really every styles of different sources and texts, as simple as clicking on one and click the button WhatsApp, that initiated the message sent to select the desired contact messaging application. If what you want is to send it by other means, facebook, line, hangout, mail etc .. simply click the copy, go to the app you want and click paste button. Easy, simple and totally free Never surprise your friends with a fancy text was so fast and efficient, impressing everyone with Fancy Text – Text luxury is now simple and suitable for WhatsApp.

Download WhatsApp Fancy Text

 

ColorMyText :

ColorMyText- This application for Whatsapp and wechat. “Fill Your emotions with colours” with the ColorMyText android app.
It’s awesome to be different!! Be Awesome !! Now Send Coloured text messages on all your messengers. You may Also share the coloured texts on Facebook and other social networking sites.

Download ColorMyText

Read Also:
How To Unblock Yourself On Whats App
Airtel Free Whatsapp Daily! Without Data Charges
Methods to use Multiple Whatsapp Account in single Android Phone
Change Your Friend’s Profile Picture On Whatsapp

Cool Font Whatsapp & SMS:

Cool Fonts App has Variety of Fonts which You can use to text your Friends, Relatives, Chatting with Friends, Bio on Facebook and Whatsapp. It’s one Different application and In them, you can write in Fancy Fonts Moreover it is Provide lots of font for the user which you can use easily.

Download Cool Font Whatsapp & SMS

 

50 Love Fonts:

In This Font Pack contains 50 free love fonts for your phone it’s compatible with every phone so that’s the great feature.
Note:- Phone restart will not be required for devices running Android 3.0 or later. Devices such as the Samsung Galaxy Y and Samsung Galaxy Ace will still require a restart to apply the new font.

Download 50 Love Fonts Pack

So all of this 5 android application which can make your Whatsapp chat, SMS or most of chatting application make stylish. 🙂
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com

Super Hide the files Using Command Prompt

Super Hide the files Using Command Prompt - MyTricksTimeEveryone have some personal data which he/she don’t want to share with any one. We can make file hidden via file properties. But it is not really safe when you really want to hide something because every one know how they can see hidden file just enable single option in folder options. Today we are sharing details which help your to�Super Hide the files Using Command Prompt. It is easy and not much peoples are aware about it.�

Read more

Animating A Car In Java

This program is only for beginners in Java. Most of you may have imagined it is very difficult of it takes a lot of time to grasp the essence of animation in Java. Well this program here dispels all those fears. It is a very basic (and dare I say an ugly) animation of a red car which moves from left to right.

COPY CODE BELOW START

// CARMOVE.JAVA// MOVING CAR
// Created by Karthik Sampath on 28/4/2010.
// Copyright 2010, Karthik. All rights reserved.
// The copyright to the computer program(s) herein
// is the property of Karthik Sampath, India. The
// program(s) may be used and/or copied only with the
// written permission of Karthik Sampath or in accordance
// with the terms and conditions stipulated in the
// agreement/contract under which the program(s) have
// been supplied. This copyright notice must not be
// removed.

// Published in www.MyTricksTime.com
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.*;
public class test extends JApplet {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.getContentPane().add(new test());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(1024, 739);
frame.setVisible(true);
}
public void paint(Graphics g) {
try {
int j = 0;
while (j < 500) {
g.setColor(Color.white);
g.fillRect(0, 0, 5000, 5000);
g.setColor(Color.red);
g.fillRect(250 + j, 250, 100, 50);
g.setColor(Color.black);
g.fillOval(260 + j, 300, 20, 20);
g.fillOval(320 + j, 300, 20, 20);
j++;
Thread.sleep(2);
}
} catch (InterruptedException e) {
}
}
}

END

COPY CODE END 
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com