Saturday, May 24, 2014

RUMI - అమృతత్వం ...


మట్టిలా గిట్టి, మొక్కనై పుట్టి
మానులా మన్నై, జంతువుగా జన్మించి
ఆ ప్రాణీ అంతమైతే, మనిషిగా పుట్టా !
భయమెందుకు నాకు?
చావులేనిదెప్పుడు..ఈ సముద్రపు అలకు?

మళ్ళీ ఓ సారి పోతా, ఈ సారి మనిషిగా !
ఆకాశానికి ఎగసి ఆ దేవతలలో కలిసిపోతా !
అలా మాత్రం ఎంత కాలం?
మహా దేవుడు కాక మృత్యుంజయుడు ఎవ్వడు?

దేవతగా నా ఆత్మ పరిత్యజించాక
దేవతల కన్నా ఇంకా పైకి..
ఏ ఊహకి అందని ఊర్ధ్వానికి
ఓహ్! ఇలాగే ఎప్పుడూ ఉండిపోవాలని కోరుకోను,
ఎందుకంటే అమృతత్వం అంటే ఆది చేతనంలో కలవడమే !!
-అనువాదం, రూమీకి అభివాదం, కీర్తి

Saturday, May 17, 2014

Wsh Shell || Invoke Internet Explorer and navigating through an URL

There are couple of ways to invoke Internet Explorer and navigating through an URL.

Method 1:

Function Invoke_Browser(str_url)
On Error resume next
    'Create an IE browser object and invoke the URL
    Set obj_Brow_invok = createobject("InternetExplorer.Application")
    obj_Brow_invok .Visible = True
obj_Brow_invok .Navigate str_url
        Do While obj_Brow_invok .Busy Or obj_Brow_invok .readyState <> 4
            WScript.Sleep 50
        Loop
        Set obj_Brow_invok  = Nothing
End Function

Method 2:

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run"iexplore.exe www.yahoo.com", 1
WScript.Sleep 50
Set WshShell = Nothing