'================================= ' Clipboard auto Fixer Ver 1.3 ' ' 2008/06/04 By CodeH ' '================================= Dim clpData, objIE Dim i Dim OutStr MsgBox "Ŭ¸³º¸µå¿¡ 770426-1234567 °ú °°ÀÌ ¼ýÀÚ Áß°£¿¡ ÇÏÀÌÇÂÀÌ µé¾î°£ °æ¿ì" & vbcrlf & "¼ýÀÚ¸¸ ÀçÁ¶ÇÕ ÇØ¼­ ´Ù½Ã Ŭ¸³º¸µå¿¡ ³Ö¾îÁÖ´Â µ¿ÀÛÀ» ÇÕ´Ï´Ù." & vbcrlf & vbcrlf & " 2008/06/04" & vbcrlf & " By CodeH" , vbokonly, "Clipboard auto Fixer Ver 1.3" Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate("about:blank") Do clpData = objIE.document.parentwindow.clipboardData.GetData("text") OutStr = "" If InStr(clpData,"-") Then For i = 1 To Len(clpData) If IsNumeric(Mid(clpData,i,1)) Then OutStr = OutStr & Mid(clpData,i,1) End if Next If IsNumeric(outstr) Then objIE.document.parentwindow.clipboardData.SetData "text", OutStr End If End If WScript.Sleep 1 * 1000 Loop