Tuesday 25 December 2012

                 HOW TO REMOVE FACEBOOK RED SCAM or MALWARE


Have your Facebook friends invited you to switch your boring blue Facebook profile to an attractive shade of red?
Judging by the number of messages the Naked Security team has received from Facebook users struck by the scam in the last few days, many social networking users must have seen similar messages.
Predictably, the point of all of this sharing is to drive more traffic to the scammers' link where an online survey will pop-up. The more people who take the survey, the more commission that the scammers will earn.
For google Chrome-

1.go to settings
2.click on extensions
3.and then remove facebook red extension.

FOR mozilla-
1.go to settings
2.then to add-on
3.and after that Extensio.n
4.and remove that Extension.

Wednesday 12 December 2012

How to make App packages for submitting apps at windows 8 Store(for a Grid App)

now,we will see how to make packages for submitting our application at windows 8 store.what we have to do is to just follow these basic steps.

step1-

just change the mode from Debug mode to release mode.

step2-

Open  package.appxmanifest in solution explorer.go to capabilities and unmark internet option if your app doesn't make use of internet(no use of internet in case of grid app).

step3-

now,just go to store option in project option in menu bar.
click on create app package option in store option.now it will ask two options.click on "No".
and now click on "Next"option.


finally we have to click on "Create" option.
                                                                                                                                                     our app package will be created
after that a box will open saying"package creation completed".now we have to select "ok" option.our app package is finally created and we can locate it in"C:\Users\Shashank\Documents\Visual Studio 2012\Projects\my first data app\my first data app\AppPackages".The app package will be in form of APPXUPLOAD file.so now,we are done with creation of packages for uploading on windows store.now what we need is a Store developer Account from where we can upload our apps.now create our account .                                                                                                                                          



Monday 26 November 2012

HOW to make A grid APP for WINDOWS 8

in past few days i have developed apps for windows 8.i have developed  many apps and many of them are on windows store.so i thought,i should share my knowledge about developing a grid app for windows 8.
so at starting point we will need a windows 8 OS and visual studio 2012.we will doing our coding in C#.
step1-open visual studio 2012 and click on start new project.
        then give the name of the project.
















                                    step2-then go to solution explorer and open GroupDeatailPage.xaml,GroupedItemPage.xaml,ItemDetailPage.xaml.
now go to data model in solution explorer and open C#sampleDataSource.cs


step 3-now start coding in sampleDataSource.cs
what you have to do is just edit in the sampleDataSource.cs

var group1 = new SampleDataGroup("Group-1",
                    "grid app",
                    "windows 8  ",
                    "Assets/DarkGray.png",
                    "this is a simple data app"
step 4-now start editing in group items of grid app

 group1.Items.Add(new SampleDataItem("Group-1-Item-1",
                    "your first Item",
                    "first Item's subtitle",
                    "Assets/LightGray.png",
                    "description of first Item",
                    "content of first Item ",
                    group1));
you have to edit your code here
step5-how to add images
adding images is also simple.you have to add images in assets.
just click on assets in solution explorer.and click on add from existing images.









now ,edit in code.
"Assets/image1.jpg",
step6-when you are all done then,click on" local machine" in debug mode.



                                                                                                 
now,you are ready with your app.you can now publish it on windows store
you can also change the background color of your app by following these steps.
step1-open the page of which you want to change color.
                                                   eg. if you want to change the background of  GroupDeatailPage.xaml then,
                                             click on GroupDeatailPage.xaml in solution explorer and click on open in blend.
                         step2-after blend is open then click on "grid" in left part in "objects and timline"


                             step3-a properties block will come on right side.this block will contain many colors.choose any color from these colors.

step4-debug your code.

in this way you can make your own data app for windows 8 and can publish it on windows store.
go make your own app 
"best of luck"