This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Windows 8: Show or Hide Hidden Files


metro

In order to change and tweak Windows 8, accessing the hidden and system files is essential.

With the newly integrated ribbon at the top of Windows Explorer, toggling the viewing of hidden files on or off has become easier than ever. For advanced settings, users may still need to access the Folder options similar to prior versions of Microsoft Windows.
1.Open Windows Explorer by clicking the Explorer icon in the taskbar. Alternatively, this can be performed through the Win key + E shortcut.
2.In the Explorer window, switch to the View tab.
3.In the Show/hide section, check the box next to the Hidden items option. If you want to reveal all file extensions, choose File name extensions too.
4.For more advanced settings, click the Options icon and choose Change folder and search options.
5.From this step, users may notice that the interface is similar to the previous Windows version. When the Folder Options window appears, make sure you are in the View tab.
6.The Advanced settings section offers similar settings to the previous OS. Options included:Hide empty drives in the Computer folderHide extensions for known file types,Hide folder merge conflicts, and Hide protected operating system files.

Useful Windows Key Shortcuts for Windows 8




Keyboard Shortcut




Details
Windows Key + X
This combination will show the textual menu which allows the user to navigate to the Task Manager, Windows Explorer, Control Panel, Run and other similar system utilities.
Windows key + E
This shortcut opens Windows Explorer on desktop. Most users will start here to browse through drives, folders, and files.
Windows key + F
If you wish to search only for files on your machine, this shortcut will filter your search only for files only.
Windows key + Q
Likewise, this shortcut is a search filter only for Applications.
Windows key + W
Search filtered for Only Settings.
Windows key + <
By holding this keys pair, the user can quickly peep at the desktop.
Windows key + P
This combination will be used if you need to connect to external devices like an external monitor or adjust projector settings.
Windows key + C
Considering Windows 8 is built around charm use, this will be one of the most popular shortcuts. It will show a notification for current date time, battery life and all of the Windows charms on right-side of the screen. These charms will differ depending on your current task.
Windows key +
Print Scrn
This will capture a screenshot of your currently opened screen and it will place the image in your pictures folder. (No more mspaint!)
Windows key + I
This shortcut opens up the Settings Panel. From here users can navigate to areas including the Control Panel, Personalization, PC Info, Network Connectivity, and Power Options for Shutdown or Restart.


These shortcuts were generated on early versions of Windows 8. When Windows 8 is released, additional shortcuts will be added if needed. Additionally, feel free to share your favorite Windows 8 shortcuts in the comments below.

Office 2013: Disable the Start Screen


Previous versions of Office programs would typically start with a blank document. However, programs in Office 2013 suit load up from a Start screen instead. Many users will not like this feature and want to open directly to a blank document. By following these steps, you can disable the Start screen from applications within the Office 2013 suite including Excel, PowerPoint, and Word.

The tutorial works for Office 2013 programs like Word, Excel and PowerPoint. However, the setting is not universal across all the Office applications. For example, changing this setting in Word will not carry over to Excel. You will have to configure the setting in each program to get rid of the Start screen for each respective application.
This Start screen gives a wide variety of options and is different than the Splash screen.
1.Launch the Office program that you want to disable the Start Screen.
2.Click the blue File button to open the Backstage view.
3.In the Backstage view, click the Options button.
4.The Options window will appear on the screen as expected. Make sure that you are currently in the General section.
5.On the right side of the window, find and uncheck the Show the Start screen when this application starts option.
6.Click the OK button to save the setting and dismiss the window.

Windows 8 - Login / Profile Picture , Background,Colour personalization Changer





Most users want to customize the look of the operating system. Tweaking the images associated with the Start and Lock screens along with the user account will personalize the appearance of your Windows 8 installation.

Personalizing the appearance of Windows is one of the first things that most users do after performing a new installation. The heavy graphics appearance of the new Windows 8 Metro environment lends itself well to customization.
About

Remover: Removes desktop water mark and prevents activation notification from appearing.
Personalization: Changes account picture, metro background, start screen picture and background color.

If u want This Change Visit here And Add me 

Join Facebook And Get Rs. 50 talk time


Facebook has silently made a smart move to add new users to the social network from India. The company is enticing users to join the social network by offering Rs. 50 talk time to every new users who signs up using a mobile phone.




So if a user registers himself/herself to Facebook through mobile using the URL - m.facebook.com/tt, his mobile number would get credited by Rs 50. Obviously, this offer is meant for new registrations only and is valid for registrations through mobile only.




Add Me On Facebook And Get My Help


Hello Frnds I'm Ankit Jain , Owner this Blog . This year (2012) is my 2 year of B.C.A . I had a computer at home since i was in 12th class in which i used to apply all computer tricks and always tried to learn new things every day. I also started C programming. 



But after getting my laptop, my life has changed. I started learning programming and hacking as a part of my daily life. I have knowledge in every field of computer (Hardware, software, networking, programming  etc.) but still i am a noob and have a long way to go. I have no certification in computers. Neither in programming nor hacking. This is my interest and google which helps me to improve myself. 

If U Want To Any Help 
Add Me Or Subscribe Me


(1) Add only 


(2) Subscribe only 



Prime Number Tester VB Progrom




In this program, I use the Select Case And Select statement to determine whether a number entered by a user is a prime number or not. 

Case 1- all numbers that are less tha 2 are prime. 

Case 2, if the number is 2, it is a prime number. In the last case, if the number N is more than 2, I need to divide this number by all the numbers from 3,4,5,6,........up to N-1, if it can be divided by any of these numbers, it is not a prime number, otherwise it is a prime number. I use a Do......Loop While statement to control the program flow. Here I also used a tag="Not Prime' to identify the number that is not prime, so that when the routine exits the loop, the label will display the correct answer.




Private Sub Command1_Click()
Dim N, D  As  Single
Dim tag As String

N = Val(TxtNumber.Text)

Select Case N
Case Is < 2
Lbl_Answer.Caption = "It is not a prime number"

Case Is = 2
Lbl_Answer.Caption = "It is a prime number"

Case Is > 2
D = 2
Do
If N / D = Int(N / D) Then
Lbl_Answer.Caption = "It is not a prime number"
tag = "Not Prime"
Exit Do
End If
D = D + 1

Loop While D <= N - 1
If tag <> "Not Prime" Then
Lbl_Answer.Caption = "It is a prime number"
End If
End Select
End Sub

Traffic Light Visul Basic Program

This Traffic Light program is a Visual Basic program designed by Ankit Jain that works like the actual traffic light. It is a nice little program. In this program, you have to insert one timer and set its interval according to your wish. Here I set it to 5000, which is equivalent to 5 seconds. Next you insert three shapes and set their shape properties to circle and fill the colors. There it goes, your traffic light is working!




The Code


Private Sub Timer1_Timer()
If Shape1.Visible Then

Shape2.Visible = True
Shape1.Visible = False
Shape3.Visible = False

ElseIf Shape2.Visible Then

Shape3.Visible = True
Shape2.Visible = False
Shape1.Visible = False

Else

Shape1.Visible = True
Shape2.Visible = False
Shape3.Visible = False

End If
End Sub