2007-05-18

EMERGENCY SERVICES IN HYDERABAD

24-hr Pharmacies
Name Phone No
Apollo Pharmacy 23601380
Health Pharmacy 23310618
Kamineni Pharmacy 24022272 to 76
Medwin Pharmacy 23202902/4621


Ambulance
Name Phone No
Free service 102
CDR Ambulance 23456789
Apollo 23548888
AP Centre for Emerg. Medicare (Apathbandu) 24603566
EMRI 108


Blood Banks
Name Phone No
Gandhi Hospital 27702222
Govt. Chest Hospital 23814421/22
Govt. ENT Hospital 24740245/24742329
Heritage Medical Centre 23730202/23736650
Bhanji Kheraj Blood Bank 24745243
CDR Blood Bank 23221221 Ext. 4558
Kamineni Blood Bank 24022272 to 76
Institute of Transfusion Medicine and Research 23319491
Matadin Goel Blood Bank 23226624
Medwin Blood Bank 23202902/4616
Modern Blood Bank 24731976/24606106


Eye Banks
Name Phone No
Ramayamma International 23548266
Sarojini Devi Eye Bank 23317274
Kapadia Eye Bank 23317274
Chiranjeevi Eye Bank 23359066
L V Prasad Eye Bank 23548267


Fire
Name Phone No
Fire 101
Divisonal Fire Office 26500102/3/ 23260091


Fuse Call
Name Phone No
General Complaints 1912
Electricity Control Room 23232051
Abids 24734941
AC Guards 23310691
Ashoknagar 27616140
Indira Park 27611424
Amberpet 27037540
Asmanghad, Saleemnagar 24069306
Azamabad 27664283
Balanagar 23771258
Banjara Hills 23356862
Begumpet 23313987
Bolaram 27862116
Bowenpally 27750912
Bolaram 27862116
Bowenpally 27750912
Chaderghat 24528351
Champapet 24068340
Chanchalguda 24527024
Chandulal Baradari 24520286
Charminar 24521106
Clock Tower 27704637
Falaknuma 24440411
Feelkhana 24614591
Gachi Bowli 23010362
Gandhi nagar 27611424
Gunfoundry 23235305
Gymkhana, Sec’bad 27840342
Himayatnagar 27638577
Indira Park 27616140
James Street 27844336
Lalbazar 27744406
Malkajgiri 27053266
Mehdipatnam 23514020
Moghulpura 24523149
Musheerabad 27664283
Moula Ali 27120765
Narayanaguda 23223389
Padmarao nagar 27615109
Sanjeeva Reddi Nagar 23730213
Santoshnagar 24530479
Sanatnagar 23704249
Saroornagar 24045522
Sitaphalmandi 27616372
Sitarampet 24732553
Sultanbazar 24656509
Somajiguda 23235300
Tarnaka 27821633
Yellareddiguda 23742589


Govt Hospitals
Name Phone No
Dental Hospital 24601930
ESI, Erragadda 23700531
Cancer Hospital 23318422
ENT, Koti 24740245
Fever Hospital, Nallakunta 27667844
Gandhi Hospital, Secunderabad 27702222
Golconda Hospital 23513776
Govt. Maternity Hospital, Koti 24653647
Homeopathy Hospital 24046817
King Koti Hospital 24756085
Koti Maternity Hospital 24653647
Mental Hospital, Erragadda 23814441
Military Hospital, Secunderabad 27792580
MNJ Cancer Hospital, Red Hills 23318422
Niloufer Hospital (for children), Red Hills 23391652
NIMS, Panjagutta 23320332/23314887
Nizamia Gen. Hospital 2524422/2524424
Osmania General Hospital, Afzalganj 24600121/24
Railway Hospital, Secunderabad 27001134
SD Eye Hospital, Mehdipatnam 23317274
State TB Centre, Erragadda 23811797


Medical Services
Name Phone No
LV Prasad Eye Institute 23608262
Andhra Mahila Sabha 27617801
Apollo Hospital 23608856
Apollo Heart Institute 23548888
Care Hospital (Hyderabad) 24735465-70
Care Hospital (Secunderabad) 27706252/27717452
Care Hospital (Yellareddyguda) 23742589
Mahavir Hospital 23393134
Mediciti 23237644
Kamineni Hospital 24022272-76
Medinova 23311122/23311133
Medwin Hospital 23202902/4000
CDR Hospital (Hyderguda) 23221221
Niloufer Hospital 23391652
Osmania General Hospital 24600122
St. Theresa’s Hospital 23701013
The Nizam’s Institute of Medical Sciences 23320332/23318120
Vijay Marie Hospital 23315055
Yashoda Superspeciality Hospital (Somajiguda) 23312642/9999/1022
Yashoda Superspeciality Hospital (Malakpet) 24555555 /24547070
Oxygen Cylinder/Bed Service 24740108
Cancer Hospital 23318422


Oxygen
Name Phone No
Asiatic Indl. Gases 23095911
IOL, Sanathnagar 23811756
OXEE Co 23701710


Police
Name Phone No
Police 100
Crime Stopper 1090
Police Exchange 23230191
Police Control Room (City) 23232222
Police Control Room (RR dt) 23235398
Traffic Police 23234065
Cooking Gas Emergency Cell 27801123

Read more...

How to Remove Arrows from Shortcuts

Even if you have no interest in VBScript, I'm going to show you how to do something that you may like: how to remove those annoying arrows on shortcuts. In addition to VBScript code, I'll provide instructions on how to accomplish the same task using simple Windows Registry .reg files.

Beware, the IsShortCut method works fine for XP and Windows Server 2003, but can produce ugly side-effects in Vista. Down the road a bit, I'll publish a separate Shell Icons script to remove the arrows from Vista shortcuts.

Thanks to the .reg files supplied, you don't actually have to study VBScript to get this job done. However, if you use or would like to use VBScript, the VBScript examples show how easy it is to create objects. In this instance the object and its .RegDelete method modify the Windows Registry. It almost goes without saying that in other scripts you can use different methods to automate any task that you can perform through a GUI.

Removing the arrows on shortcuts is a classic case of Microsoft having not one, but three ways of configuring a Registry setting; VBScript, a .reg file and of course regedit.

My VBScript method, which deletes the IsShortCut value, works for both XP and Vista machines. However beware, because in Vista, removing this Registry value causes problems with shortcuts in the Favorites folder.

If you just want to remove the arrows quickly, use the .reg file. If you are using my VBScript to remove the arrows, the .reg files provide a complimentary method for resetting the Registry before you run the script for a second time.

A hidden bonus of using a script to remove the shortcut arrows is that you learn about the full range of Registry commands: .RegWrite, .RegDelete and .RegRead.

wo Visual Basic Scripts

Example 1 is relatively simple. It concentrates on creating objShell and applying the .RegDelete method.

Example 2 is more complex, and introduces limited error correcting code. Moreover Example 2 creates a substitute REG_SZ value, which is the equivalent of renaming IsShortCut.

These scripts are designed for XP and Windows 2003. While they will work on Vista, as noted above, they produce ugly side-effects on icons in the Favorites folder.

Example 1: Basic Script To Remove The Arrow On Shortcuts

Instructions
  • Preliminary step: In order to give the script a chance, create a shortcut. For example, at the desktop, right-click, new, shortcut and type 'calc'. Press 'Finish' and the shortcut, complete with arrow will arrive on the desktop.
  • Copy and paste the script below into notepad, or get a script editor such as OnScript.
  • Save the file with .vbs extension e.g. NoArrowEg1.vbs
  • Double click your VBScript, then 'OK' the message box.
  • To help you understand what is happening in the Registry, I recommend that you launch regedit and navigate to the section specified by strRoot.
  • Ah yes, to actually see the arrows disappear, simply logoff and logon again. The shortcuts should now have no arrows.

' NoArrowEg1.vbs
' Example VBScript to remove arrows on shortcuts in XP
' and Windows 2003.
' Author Guy Thomas http: //computerperformance.co.uk
' Version 1.5 - March 2007
' ---------------------------------------------------------------'
'
Option Explicit
Dim objShell, strRoot, strRead, strDelete, strCreate
strRoot = "HKEY_CLASSES_ROOT\lnkfile\IsShortCut"
' Create the Shell object
Set objShell = CreateObject("WScript.Shell")
strDelete = objShell.RegDelete(strRoot)
WScript.Echo "Error No: " & err.number & " check " & strRoot
strDelete = null
WScript.Quit

' End of example script.

Learning Points
  1. Check how VBScript creates the objShell object, then trace how .RegDelete performs its work on the Registry.
  2. In VBScript HKEY_CLASSES_ROOT can be abbreviated to HKCR. (There is also HKLM and HKCU.) Surprisingly, you cannot use HKCR or HKLM in .Reg files.
  3. The RegDelete method deletes an entry from the Registry based on strName. If strName ends with a backslash (\), then strName is treated as a key, otherwise it is treated as a value.
  4. For completeness, you may wish to find other instances of IsShortCut, for example at: HKCR\piffile and HKCR\WSHFile.

Example 2: Full Script To Remove The Arrow On Shortcuts

Rather than just delete the appropriate Registry value, I have also decided to create a new Registry value. This achieves the illusion of renaming the original value IsShortCut to IsNotShortcut. From a learning point of view, this extra code provides examples of .RegWrite and .RegRead. From a strategic point of view this script introduces primitive error correcting code. In particular the 'If' section, together with On Error Resume Next, copes with the situation where you run the script for a second time.

Instructions
  • If you have already run Example 1, you may want to run the second .reg file to restore the 'IsShortCut' value.
  • I expect that you have a shortcut on the desktop, if not: right-click, new, shortcut and type 'calc'. Press 'Finish' and the shortcut, complete with arrow will arrive on the desktop.
  • Copy and paste the script below into notepad, or get a script editor such as OnScript.
  • Save the file with .vbs extension e.g. NoArrowEg2.vbs
  • Double click your VBScript, then 'OK' the message box.
  • I recommend that you investigate the Registry section specified by strRoot.
  • Ah yes, to actually see the arrows disappear, simply logoff and logon again. The shortcuts should now have no arrows.

' NoArrowEg2.vbs
' Example VBScript to remove arrows on shortcuts on XP
' and Windows 2003.
' Author Guy Thomas http: //computerperformance.co.uk
' Version 2.3 - March 2007
' ---------------------------------------------------------------'
'
Option Explicit
Dim objShell, strRoot, strRegRead, strNew
Dim strRead, strDelete, strCreate
err.number = 0
strRoot = "HKCR\lnkfile\"
strNew = strRoot & "IsNotShortCut"
strRegRead = strRoot & "IsShortCut"
' Create the Shell object
Set objShell = CreateObject("WScript.Shell")
On Error Resume Next
strRead = objShell.RegRead(strRegRead)
If err.number => 0 then
strCreate = objShell.RegWrite(strNew,"", "REG_SZ")
strDelete = objShell.RegDelete(strRegRead)
End if
WScript.Echo "Error No: " & err.number & " check " & strRoot
On Error GoTo 0
strCreate = null
strDelete = null
WScript.Quit

' End of example script.

Learning Points
  1. The If err.number section has primitive error correcting code to prevent the script halting if you run it for a second time.
  2. RegWrite also has the implicit create property. Observe how it creates the parent value, and then assigns it a value. To emphasise the point, before the script runs for the first time, there is no 'IsNotShortCut' value. Yet thanks to .RegWrite a new REG_SZ called 'IsNotShortCut' is added to the Registry with a null value (""). A null value can actually be checked for in statements such as the "If" statement.
  3. The RegDelete method deletes an entry from the Registry based on strName. If strName ends with a backslash (\), then strName is treated as a key, otherwise it is treated as a value.
  4. For completeness, you may wish to find other instances of IsShortCut, for example at: HKCR\piffile and HKCR\WSHFile.

Using .reg Files To Modify The Registry

Here are two .reg files. The first removes shortcut arrows. The second restores arrows to shortcuts. Both are designed for XP and Windows Server 2003, but will work on Vista within the limits noted above.

Instructions
  • Copy the text into notepad.
  • Save as ArrowGone.reg
  • Double click the file and its contents are merged with your Registry.
  • Note the minus sign in: "IsShortCut"=-. There are no quotes around the (-). This deletes the value of IsShortCut and IsShortCut itself. If you tried "IsShortCut"="-", then you would not delete the value and shortcut, but instead you would set its value to a minus sign. "IsNotShortCut"="" creates the key and sets its value to null.

.reg File To Remove Arrows On Shortcuts

Important: You need a blank line between "Windows Registry Editor Version 5.00" and [HKEY...]

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\lnkfile]
"IsShortCut"=-
"IsNotShortCut"=""

That's it!

.reg File To Display Arrows On Shortcuts

This .reg file returns the Registry to its default configuration, where shortcuts display an arrow. The script below reverses the script above.

Instructions
  • Copy the text into notepad.
  • Save as ArrowBack.reg
  • Double click and merge with your Registry.
  • Note that "IsShortCut" now reads "IsShortCut"="". This re-creates the variable and sets it to blank. IsNotShortCut is deleted this time.

Important: Again, you need a blank line between Windows Registry Editor Version 5.00 and [HKEY...]
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\lnkfile]
"IsShortCut"=""
"IsNotShortCut"=-

Again, that's it!

Conclusions

Those arrows on shortcuts can be most annoying. My methods remove the Registry entry which controls these arrows. The scripting techniques show you how to employ .RegWrite, .RegRead and especially RegDelete to control the appropriate Registry values.

I have also included .reg files, these are a quicker and more convenient method for achieving the same goal, removing the arrow from shortcuts.

Read more...

Be Carefull with your USB Pen Drives

It is identified a new worm that targets removable drives such as USB flash drives, memory cards, and USB hard drives.

The SillyFD-AA worm searches for removable drives such as floppy disks and USB memory sticks and creates a hidden file called autorun.inf so that a copy of the worm runs the next time the device is connected to a computer running Windows. In addition, it changes the title of Internet Explorer windows to say that the computer has been “Hacked by 1BYTE.”

Attacks like this are going to be a nightmare for corporate networks. Employees bring in their MP3 players and flash drives and plug them into their company computer and that system is quickly infected.

I bet we’ll start to see variants that are more sophisticated and include rootkits and backdoors that will allow the attackers into the corporate network.

To protect yourself from these threats you should disable the Autorun in Windows and ensure that your anti virus software is up to date and active.

Read more...

NEEVALLE NEEVALLE(2007) ---- AUDIO DOWNLOADS

Actors : Sada, Tanisha, Vinay
Director : Jeeva
Lyrics : Bhuvanachandra
Music Director : Harris Jayaraj
Producer : Oscar Ravichandran
Year : 2007


LINK : http://rapidshare.com/files/19726145/Neevalle_Neevalle-2007.zip.html

PASSWORD : desi ( if asked)

Read more...

TV9 LIVE

About This Blog

  © Blogger templates The Professional Template by Ourblogtemplates.com 2008

Back to TOP