Posts

Showing posts from 2013

How to submit an App to Google Play store

Image
Login to your Google play account: https://market.android.com/publish/Home   Purchase Google play certificate in $25 then Download the apk file from Conduit mobile platform.            In your Google play account click "Add new application"            Add your app name in Title rubric. Then click Upload APK.           Click "Upload your first APK" and upload the APK file you downloaded from Conduit mobile platform on step 1.          Choose Store listing from the list on left screen          Add your app description           Scroll down to add your App's Graphics assets. The minimum are 2 phone screen shots and a High res icon images.      Phone screen shots dimensions required are: 320(w)X640(L)      High res icon dimensions: 512X512         * If you have a nice feature graphic and a promo graphic, or a video introducing your business or your app purpose           you can add these as well and it will appear on the App in marketplace.            Scrol
Java: Exception in thread main java.lang.NoClassDefFoundError   Exception in thread “main” java.lang.NoClassDefFoundError: When trying to run a Java program, you may get this annoying error. I first got it when running our simple hello world program . The error occurs because the classpath is not set up or referenced correctly. Executing your program using the following command should correct the problem: java -classpath . helloworld In this command, helloworld is the name of your compiled class. This tells Java that your classpath is your local directory.

How to delete your Facebook account

Quick Link: http://www.facebook.com/help/contact.php?show_form=delete_account You have 2 options here: deactivate your account or delete it permanently. Deactivating is essentially the same as deleting, except that all your data is retained, but not visible until you reactivate. To deactivate: Visit your Account Settings Choose "deactivate account" Fill out the form, and click "Deactivate My Account" To delete: Visit the delete my account page and click submit. Oops! I deleted it! How can I get my account back? If you deleted your account, this can not be undone. If you only deactivated it, simply login to your Facebook account again, and Facebook will send you a confirmation email to reactivate.

Disable right click on web page and images and all content

Disable right click on web page Similarly we can disable right click on whole page by adding oncontextmenu handler in body tag of webpage. Now this will disable right click on each and every control of a webpage. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">      <head>                  <script type="text/javascript"> function disableRightClick() { alert("Sorry, right click is not allowed !!"); return false; } </script>            </head>       <body oncontextmenu=" return disableRightClick(); "> </body> </html> Show alert on right click        <script type="text/javascript"> function disableRightClick() { alert("Sorry, right click is not allowed !!"); return false; } </script>

How to Change Mac Address in XP

Image
For Windows XP Users Step -1 Windows XP  Users Navigate to  Control Panel (Classic View) > Network Connections Step -2 Select and right click on your network connection, and then click Properties. Step – 3 Click and select local area connection properties  Configure  button as illustrated below. Step – 4 Select the  advanced  tab (highlighted in red) as shown below. Step – 5 Under advanced tab, Select Network address Properties and enter the custom 12-digit hexadecimal number (Custom MAC ID) ranging between 0000 0000 0001 – FEFF FFFF FFFF (without spaces) as shown below and click  OK . (In this tutorial, we used FEFEFEFEFE as Custom MAC ID) All done. The New MAC ID assigned as  FEFEFEFEFE  in your Windows XP computer. If you wish to revert back default MAC ID in feature, do the same steps illustrated above and select Not Present radio button and click  OK  button. So, the default MAC ID will be restored.

Restrict WiFi Access to Only Your Computers (MAC Address Control)

1. Connect to your wireless network. 2. Open your Web browser and type in the Web address http:// www.routerlogin.net 3. Press Enter 4. The NETGEAR Prompt dialog opens 5. Click the OK button 6. Type in the user name and default password 7. The Router Manager window will appear 8. Under Advanced , select the Wireless Settings menu item 9. Click the Setup Access List button 10. Check the radio button next to Turn Access Control On 11. Click the Add button 12. The program will display all computers connected to the wireless network -- with its MAC address. The one shown here is ours. 13. Select the radio button next to your computer's name and MAC address 14. Click the Add button 15. Click the Apply button

Friend Function Using C++ Programming

#include<iostream.h> #include<conio.h> class  Ashish {     int a,b;    public:     void input()     {        cout<<"Enter two values:";        cin>>a>>b;     }     friend int info(Ashish ob); }; int info(Ashish ob) {    return int(ob.a+ob.b)/2; } void main() {     clrscr();     Ashish m;     m.input();     cout<<"\n value is : "<<info(m);     getch(); }           Output: Enter two values: 10, 20 Mean Value is: 15

Integer pointer to Character pointer type casting In C

WAP to Integer pointer to Character pointer type casting in C? #include<stdio.h> #include<conio.h> void main() {    clrscr(); int a=350,*p; char *c; p=&a; c=(char*)p; printf(" \t%d",*c); getch(); }

Install And Run Java

Image
1:-Download JDK 1.6 [ what ever the version you want, its 1.6 the time i writing this article ] from www.oracle.com / any sharing sites, its just about 50 – 60 Mb in size. 2:-Now just double click on this application and just follow the bellow steps… 3:-Click on Accept > 4:-Click on Next > 5:-Let is install > 6:-Now you will get one new window with title SE Runtime Environment 6 , which is nothing but JRE, JDK needs JRE to be install first, so click Next 7:-Then finally it will show you one window with Finish button just click on that, and that’s it, let us see the class path settings …. 8:-Its simple mates, just right click on My Computer Icon then choose Advanced system settings .. 9:-click on that Advanced system settings then it will shows like.. 10:-Now just click on Environment Variables button at bottom-right then… 11:-Then select path , and click on Edit button…. 12:-Now there, just append your bin folder path of jdk folder,   in my sys