Sunday, February 5, 2012

How to Change the Usb Drive Icon with Your Picture

You can choose a custom icon or any of your image to appear as the icon of your removable usb drive on any computer. This trick will let you create a personalized icon for your Usb drive which will work in any computer.

First things first, you need a .ico file to be used as the icon in the removable drive. To do that you can search for some really beautiful icons at Iconarchive or use your own picture as an icon whenever you plug in the removable drive in any computer. (also read: How to prevent usb drives from auto running programs)

How to create an Icon File of your image and use it as removable drive icon

Wednesday, February 1, 2012

Remove Shortcut Virus from USB Drive

1. Goto Start >> Run and write cmd and enter.

*Here I assume your flash drive letter as G:

2. When DOS Dialog Box open then Enter This Command :

 attrib -h -r -s /s /d g:\*.*

After Entering this command wait for 15 - 30 sec . and you succesfully recover your Orignal Folder / Files.

To delete shortcut files , simply Enter this Command :

del G:\*.lnk
Please do give comments and suggestions plus spread and share my blog if you think it has something that mean to be share!!! Thank you

Tuesday, January 31, 2012

Windows 7 tips & Tricks

                                        WIN 7 TIPS:

Use Keyboard Shortcuts:

Using the mouse, you can drag-”˜n-dock windows to either side of the screen, or drag it to the top to maximize it. These keyboard shortcuts are even faster:

  •     Win+Left Arrow and Win+Right Arrow dock the window to the left and right side of the screen
  •     Win+Up Arrow and Win+Down Arrow maximize and restore/minimize
  •     Win+M minimizes everything
  •     Alt+Up, Alt+Left Arrow, Alt+Right Arrow navigate to parent folder, or browse Back and forward through folders in Explorer

Send Free SMS in Pakistan

Salam, hello mates.., Following are some links of websites which provides the service of sending free SMS through all over Pakistan.., you can send SMS to any where in Pakistan just by visiting these links which are given below!!!! Thank you!!! Cheers!!!


sendsms.pk
smsmarkaz.com
replysms.com

P.S: These all are different websites.., you can send SMS by using any of the mentioned webs. You have to sign up to send SMS but don't worry.., sign up is absolutely free!!
Please do give comments and suggestions plus spread and share my blog if you think it has something that mean to be share!!! Thank you

Wednesday, December 28, 2011

How to Jailbreak iPhone

This Article will help you jailbreaking your APPLE iPhone/iPod touch!!!
 
This is the article for jailbreak iPhone that helps you unleash the power of jailbreak iPhone.

Thursday, December 22, 2011

MS WORD Shortcut Keys

Below is a listing of all the major shortcut keys in Microsoft Word. See the computer shortcut page if you are looking for other shortcut keys used in other programs.
Shortcut KeysDescription
Ctrl + 0Adds or removes 6pts of spacing before a paragraph.
Ctrl + ASelect all contents of the page.
Ctrl + BBold highlighted selection.
Ctrl + CCopy selected text.
Ctrl + EAligns the line or selected text to the center of the screen.
Ctrl + FOpen find box.
Ctrl + IItalic highlighted selection.
Ctrl + JAligns the selected text or line to justify the screen.
Ctrl + KInsert link.

Saturday, December 17, 2011

What is MATLAB? How to work on it?

Overview of the MATLAB Environment

MATLAB is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numeric computation. Using the MATLAB product, you can solve technical computing problems faster than with traditional programming languages, such as C, C++, and Fortran.
You can use MATLAB in a wide range of applications, including signal and image processing, communications, control design, test and measurement, financial modeling and analysis, and computational biology. Add-on toolboxes (collections of special-purpose MATLAB functions, available separately) extend the MATLAB environment to solve particular classes of problems in these application areas.

Wednesday, December 7, 2011

How to Add data in SQL with C# and ADO.NET

,



Hi, This is the first video of the 5 video series. In this video, you can learn about adding data into SQL Server using C# and ADO.NET. In the next four videos of the video series, you can learn about retrieving data, deleting and updating data. You can watch all the videos of the series by visiting youtube by simply clicking on that video or just clicking the youtube logo on this video. Cheers!!!

Friday, November 4, 2011

More C# and Java Differences

Features of C# Absent in Java

  • C# includes more primitive types and the functionality to catch arithmetic exceptions.
  • Includes a large number of notational conveniences over Java, many of which, such as operator overloading and user-defined casts, are already familiar to the large community of C++ programmers.
  • Event handling is a "first class citizen"—it is part of the language itself.
  • Allows the definition of "structs", which are similar to classes but may be allocated on the stack (unlike instances of classes in C# and Java).
  • C# implements properties as part of the language syntax.
  • C# allows switch statements to operate on strings.
  • C# allows anonymous methods providing closure functionality.
  • C# allows iterator that employs co-routines via a functional-style yield keyword.
  • C# has support for output parameters, aiding in the return of multiple values, a feature shared by C++ and SQL.

Difference between C# and Java

Following are some important and key difference in the language C# and Java!!!

#10 – Give me my standard output!

This may not seem like a big deal, but when I’m first getting my head in a language, I want to be able to debug. With everything so new and shiny, I don’t want to hear about the debugger yet, I don’t care about the fancy message boxes, just tell me how to get something on standard output!
In C#, the code looks like this:
Console.WriteLine("your string here");

#9 – Namespaces == Freedom

In Java, the package hierarchical structure mirrored the directory hierarchical structure. This made sense to a degree, but then why didn’t Sun just auto-derive the package structure? Anyway, Microsoft has freed us from this constraint. The C# package structure is defined using namespaces (just like Java), but the namespaces do NOT have to reflect the directory structure.

#8 – What happened to super?

Slight renaming of keywords drives me bonkers! Substitute Java’s super keyword with base.