Show hidden files and folders not working ? Computer shuts down automatically ?
If all these things are happening to your Computer , the reason is that it has got infected by a virus named " RAVMON " .What can this Virus do ??
* Disables task manager , Registry Editor and Command prompt .
* Right click menu shows some Chinese scripts as shown in the figure.
* Computer shutdown automatically and slogs a lot.
* Folder Options disappear
* Show hidden files and folders Option won't work.
With all these things not working , I can understand what can go with you !! I saw this thing on my friends PC . Then only I decided to write the solution for this.So how are you going to remove this ?
One of my friend has developed a solution to kill this Virus.Download it and remove the Virus.
Download the RAVMON virus removal Tool
One you download the tool , install it.Click on the three of them.and press OK.If you are not infected with RAVMON then the tool automatically shows the error message.So download it and enjoy using your PC.
Like Technova's solution channel ??? Subscribe here or click here to get updates via email
Access Orkut, Or anyother socialnetworkingwebsite from School or Work
In colleges students and office workers asking for workarounds to access social networking websites that are blacklisted.The most common websites that are blocked in schools include Bebo, MySpace, Hi5, Xanga, Orkut, Facebook and in some cases, Youtube. We share a couple of options to bypass the internet ban and they includes using proxy servers, special mobile websites and screen sharing software:
Trick B: Surf the web using Mowser, a new service that’s free and converts any website into a mobile phone friendly format. The other option that may help access blocked website is Bitty Browser, a miniature web browser that is meant for embedding inside other web pages. Another solution may be Google Mobile Search.
Trick C: Finally, a option that will always work provided you have your sister or mom at home to help you - Use a screen sharing software like Microsoft Tahiti, CrossLoop or Yuuguu.
Ask someone at home to accept your screen sharing invitation request and browse the web at school using your home computer. This will enable you to access any website or instant messenger like Skype or Yahoo from the school or work computer. You may also try remote control software that comes with Win XP Pro instead of screen sharing apps to access restricted sites.
If Google Talk is blocked by your employer, use the Firefox Trick and connect with Google Talk buddies outside the office firewall.
Accessing unauthorized web sites using the above tricks may be considered a violation of school or work policies and might put you in trouble. Use them at your own risk.
Blocking Myspace,Orkut Manually To Restrict Children and Office Staff
Want to block porn or any illegal web content from yours home or Office system .If yes then you can do this by following simple steps mention below .This trick will really helpful for all those parents who wants to block myspace ,Facebook ,Orkut ,Youtube or any other website from there home computer in order to restrict there children to surf all those websites.
For Blocking any website (Like orkut,youtube,playboy,myspace,facebook) in which you dont want yours friends Family members etc to visits etc you have to follow below steps carefully.
- Click the Start button and select Run. Now type the below text in Run box:
notepad c:\WINDOWS\system32\drivers\etc\hosts
- A New notepad window will open on your screen containing some Information. Just goto the last line of the file, hit the enter key and type the following:
Transcend rolls out 192 GB high-speed 2.5 inch SSD in India
How to display a message while your GWT app loads
When a GWT application loads, nothing is actually displayed by your application until all the generated JavaScript has been downloaded by the browser. I was looking for way to display a loading screen while my GWT application was loading, and then remove it once the GWT application is loaded.
The Solution
Since every GWT application has to be embedded in an HTML Host Page, an easy way to display a loading message is to place the loading message in a
Here is a sample HTML Host Page. The loading message, along with a loading animation image is contained in a
1: <html>
2:
3: <head>
4: <title>GWT Applicationtitle>
5: <link rel="stylesheet" href="style.css">
6: head>
7:
8: <body>
9:
10: <script type="text/javascript" language="javascript" src="gwtapp.nocache.js">script>
11:
12: <h2>GWT Applicationh2>
13:
14:
15: <div id="Loading-Message">
16: <img src="loading-animation.gif" alt="loading"> Loading GWT Application, please wait...
17: div>
18:
19:
20:
21: <div id="GWT-Application-Panel">
22: div>
23:
24: body>
25:
26: html>
The “Loading-Message” can be removed from the HTML Host Page using the following line of Java Code:
DOM.setInnerHTML(RootPanel.get("Loading-Message").getElement(), "");
Where would you put this line of code? You can put it anywhere in your GWT application. However, a good place to put it would be in your GWT application EntryPoint class’s onModuleLoad method. You can place it either before or after your application loads the UI elements. Here is an example onModuleLoad
method:
1: public void onModuleLoad() {
2: // Remove the loading message
3: DOM.setInnerHTML(RootPanel.get(“Loading-Message”).getElement(), “”);
4:
5: // Get the Application Container div from the DOM
6: mainPanel = RootPanel.get(“GWT-Application_Panel”);
7:
8: // Add GWT UI components
9: addWidgetsTo(mainPanel);
10: }