gseller Posted August 9, 2007 Share Posted August 9, 2007 (edited) Hey All..I have been working on a couple of scripts found here in the forum by ptrex and Toady. I have combined their code to make an OCR program that will take a screenshot and then OCR it.This is pretty accurate, not for alot of text but will help save some retyping. It does not work well with images in the screencapture.If you notice all the credits go to ptrex and toady. I just put them together... Drag_And_Drop_OCR.au3 Updated to 3.2.10.0 by Kilhianedit:08-12-2007 fully functional nowThank You Toady! - http://www.autoitscript.com/forum/index.ph...=region+captureThank You ptrex! - http://www.autoitscript.com/forum/index.ph...=50608&st=0Edit: Added credits in code and download...expandcollapse popup[font="Verdana"];http://www.autoitscript.com/forum/index.php?showtopic=49368&st=0 ;============================================== ; Author: Toady - Region_Capture.au3 ; Author: ptrex - Real OCR in AU3 ; Author: gesller Supposed to be gseller but was transposed in registration. Dog-Gone These fat fingers... ; Author: Updated by Kilhian 02-04-2008 ; Purpose: Takes screenshot of ; a user selected region and saves ; the screenshot in ./images directory. ; ; How to use: ; Press "s" key to select region corners. ; NOTE: Must select top-left of region ; first, then select bottom-right of region. ; ;After taking the image you can ues the built-in OCR to take it to text for copy and paste.[/font][font="Verdana"];Using ptrex's Real OCR in AU3 we take the image created by Toady's Region_Capture.au3 and perform a quick OCR ;For those that will ask the question "What is OCR" OCR - Optical Character Recognition ; ;known problem so far: ;NONE ;=============================================[/font][font="Verdana"]#include <ScreenCapTURE.au3> #include <misc.au3> #include <GuiConstants.au3> #include <WinAPI.au3> #Include <GuiListbox.au3> #Include <GuiStatusBar.au3> #include <GDIPlus.au3> ;------------------------------------------------------------------- #include <Array.au3>[/font][font="Verdana"]Dim $miDoc, $Doc Dim $str Dim $oWord Dim $sArray[500] Dim $ocrbutton[/font][font="Verdana"]Const $miLANG_CZECH = 5 Const $miLANG_DANISH = 6 Const $miLANG_DUTCH = 19 Const $miLANG_ENGLISH = 9 Const $miLANG_FINNISH = 11 Const $miLANG_FRENCH = 12 Const $miLANG_GERMAN = 7 Const $miLANG_GREEK = 8 Const $miLANG_HUNGARIAN = 14 Const $miLANG_ITALIAN = 16 Const $miLANG_JAPANESE = 17 Const $miLANG_KOREAN = 18 Const $miLANG_NORWEGIAN = 20 Const $miLANG_POLISH = 21 Const $miLANG_PORTUGUESE = 22 Const $miLANG_RUSSIAN = 25 Const $miLANG_SPANISH = 10 Const $miLANG_SWEDISH = 29 Const $miLANG_TURKISH = 31 Const $miLANG_SYSDEFAULT = 2048 Const $miLANG_CHINESE_SIMPLIFIED = 2052 Const $miLANG_CHINESE_TRADITIONAL = 1028[/font][font="Verdana"]; Initialize error handler $oMyError = ObjEvent("AutoIt.Error","MyErrFunc")[/font][font="Verdana"]$miDoc = ObjCreate("MODI.Document") $miDocView = ObjCreate("MiDocViewer.MiDocView")[/font][font="Verdana"];-------------------------------------------------------------------[/font][font="Verdana"]_Singleton("cap") Opt("RunErrorsFatal",0)[/font][font="Verdana"]Global $format = ".jpg" Global $filename = "" Global $title = "Screen Region Capture"[/font][font="Verdana"]DirCreate(@ScriptDir & "/images/")[/font][font="Verdana"]$GUI = GUICreate($title,610,210,-1,-1) GUICtrlCreateGroup("Select Format",18,80,210,50) $radio1 = GUICtrlCreateRadio("JPG",30,100,40) GuiCtrlSetState(-1, $GUI_CHECKED) $radio2 = GUICtrlCreateRadio("BMP",80,100,45) $radio3 = GUICtrlCreateRadio("GIF",130,100,45) $radio4 = GUICtrlCreateRadio("PNG",180,100,45) GUICtrlCreateGroup ("",-99,-99,1,1) GUICtrlCreateLabel("Name of image",20,20) $gui_img_input = GUICtrlCreateInput("",20,40,200,20) $go_button = GUICtrlCreateButton("Select region",20,140,200,30) $list = GUICtrlCreateList("",240,20,150,150) $editbutton = GUICtrlCreateButton("Edit", 400,60,40) $ocrbutton = GUICtrlCreateButton("OCR", 400,90,40) $deletebutton = GUICtrlCreateButton("Delete", 400,120,40) Global $a_PartsRightEdge[5] = [240,320,400,480,-1] Global $a_PartsText[5] = [@TAB & "[url="http://www.toady.com"]www.toady.com[/url]","","","",""] Global $hImage $statusbar = _GUICtrlStatusBar_Create($GUI,$a_PartsRightEdge,$a_PartsText) GUISetState(@SW_SHOW,$GUI)[/font][font="Verdana"]$SELECT_H = GUICreate( "AU3SelectionBox", 0 , 0 , 0, 0, $WS_POPUP + $WS_BORDER, $WS_EX_TOPMOST, $WS_EX_TOOLWINDOW) GUISetBkColor(0x00FFFF,$SELECT_H) WinSetTrans("AU3SelectionBox","",60) GUISetState(@SW_SHOW,$SELECT_H)[/font][font="Verdana"]_ListFiles()[/font][font="Verdana"];-------------------------------------------------------------------[/font][font="Verdana"][/font] [font="Verdana"];-------------------------------------------------------------------[/font][font="Verdana"]While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit Case $msg = $GUI_EVENT_RESTORE _ListFiles() Case $msg = $radio1 $format = ".jpg" Case $msg = $radio2 $format = ".bmp" Case $msg = $radio3 $format = ".gif" Case $msg = $radio4 $format = ".png" Case $msg = $editbutton ShellExecute(_GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list)),"",@ScriptDir & "\images\","edit") Case $msg = $ocrbutton _GetTextOCR()[/font][font="Verdana"] Case $msg = $deletebutton Local $msgbox = MsgBox(4,"Delete image","Are you sure?") If $msgbox = 6 Then FileDelete(@ScriptDir & "\images\" & _GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list))) _ListFiles() EndIf Case $msg = $list _ListClick() Case $msg = $ocrbutton[/font][font="Verdana"] Case $msg = $go_button $filename = GUICtrlRead($gui_img_input) If $filename <> "" Then Local $msgbox = 6 If FileExists(@ScriptDir & "\images\" & $filename & $format) Then $msgbox = MsgBox(4,"Already Exists","File name already exists, do you want to overwrite it?") EndIf If $msgbox = 6 Then GUISetState(@SW_HIDE,$GUI) _winAPI_MoveWindow($SELECT_H,1,1,2,2) GUISetState(@SW_RESTORE,$SELECT_H) GUISetState(@SW_SHOW,$SELECT_H) _TakeScreenShot() GUICtrlSetData($gui_img_input,"") GUISetState(@SW_SHOW,$GUI) _ListFiles() EndIf Else MsgBox(0,"Error","Enter a filename") EndIf EndSelect WEnd[/font][font="Verdana"]Func _ConvertSize($size_bytes) If $size_bytes < 1024*1024 Then Return Round($size_bytes/1024,2) & " KB" Else Return Round($size_bytes/1024/1024,2) & " MB" EndIf EndFunc[/font][font="Verdana"]Func _ConvertTime($time) Local $time_converted = $time Local $time_data = StringSplit($time, ":") If $time_data[1] > 12 Then $time_converted = $time_data[1] - 12 & ":" & $time_data[2] & " PM" ElseIf $time_data[1] = 12 Then $time_converted = $time & " PM" Else $time_converted &= " AM" EndIf Return $time_converted EndFunc[/font][font="Verdana"]Func _ListClick() Local $date = FileGetTime(@ScriptDir & "\images\" & _GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list))) ;_ArrayDisplay($date,"") _GUICtrlStatusBar_SetText($statusbar,@tab & "Size: " & _ConvertSize(FileGetSize(@ScriptDir & "\images\" & _GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list)))),1) ;_GUICtrlStatusBar_SetText($statusbar,@tab & "Date: " & $date[1] & "/" & $date[2] & "/" & StringTrimLeft($date[0],2) & " " & _ConvertTime($date[3] & ":" & $date[4]),4) _GDIPlus_StartUp() $hImage = _GDIPlus_ImageLoadFromFile(@ScriptDir & "\images\" & _GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list))) $hGraphic = _GDIPlus_GraphicsCreateFromHWND($gui) $iWidth = _GDIPlus_ImageGetWidth ($hImage) $iHeight = _GDIPlus_ImageGetHeight($hImage) _GUICtrlStatusBar_SetText($statusbar,@tab & "Width: " & $iWidth,2) _GUICtrlStatusBar_SetText($statusbar,@tab & "Height: " & $iHeight,3) Local $destW = 150 Local $destH = 150 _GDIPlus_GraphicsDrawImageRectRect($hGraphic, $hImage, 0, 0,$iWidth,$iHeight,450,20,$destW ,$destH) _GDIPlus_GraphicsSetSmoothingMode($hGraphic, 0) _GDIPlus_GraphicsDrawRect($hGraphic, 450, 20, $destW, $destH) _GDIPlus_GraphicsDispose($hGraphic) _GDIPlus_ImageDispose($hImage) _GDIPlus_ShutDown() EndFunc Func _GetTextOCR()[/font][font="Verdana"] Local $miDoc, $Doc Local $str ="" Local $oWord Local $sArray[500] $miDoc = ObjCreate("MODI.Document") $miDocView = ObjCreate("MiDocViewer.MiDocView")[/font][font="Verdana"] $miDoc.Create(@ScriptDir & "\images\" & _GUICtrlListBox_GetText($list,_GUICtrlListBox_GetCurSel($list))) ;$miDoc.Ocr($miLANG_ENGLISH, True, False) $miDoc.Ocr($miLANG_FRENCH, True, False) $MiDocView.Document = $miDoc $MiDocView.SetScale (0.75, 0.75) Local $i = 0 For $oWord in $miDoc.Images(0).Layout.Words $str &= $oWord.text & @CrLf $sArray [$i] = $oWord.text $i += 1 Next _ArrayDisplay ($sArray, "OCR Result", ' ', ' ' , ' ' , '|') Return $str[/font][font="Verdana"] EndFunc Func _TakeScreenShot() Local $x, $y HotKeySet("s","_DoNothing") While Not _IsPressed(Hex(83,2)) Local $currCoord = MouseGetPos() Sleep(10) ToolTip("Select top-left coord with 's' key" & @CRLF & "First coord: " & $currCoord[0] & "," & $currCoord[1]) If _IsPressed(Hex(83,2)) Then While _IsPressed(Hex(83,2)) Sleep(10) WEnd ExitLoop 1 EndIf WEnd Local $firstCoord = MouseGetPos() _winAPI_MoveWindow($SELECT_H,$firstCoord[0],$firstCoord[1],1,1) While Not _IsPressed(Hex(83,2)) Local $currCoord = MouseGetPos() Sleep(10) ToolTip("Select bottom-right coord with 's' key" & @CRLF & "First coord: " & $firstCoord[0] & "," & $firstCoord[1] _ & @CRLF & "Second coord: " & $currCoord[0] & "," & $currCoord[1] & @CRLF & "Image size: " & _ Abs($currCoord[0]-$firstCoord[0]) & "x" & Abs($currCoord[1]-$firstCoord[1])) $x = _RubberBand_Select_Order($firstCoord[0],$currCoord[0]) $y = _RubberBand_Select_Order($firstCoord[1],$currCoord[1]) _winAPI_MoveWindow($SELECT_H,$x[0],$y[0],$x[1],$y[1]) If _IsPressed(Hex(83,2)) Then While _IsPressed(Hex(83,2)) Sleep(10) WEnd ExitLoop 1 EndIf WEnd ToolTip("") Local $secondCoord = MouseGetPos() _winAPI_MoveWindow($SELECT_H,1,1,2,2) GUISetState(@SW_HIDE,$SELECT_H) Sleep(100) _ScreenCapture_SetJPGQuality(80) _ScreenCapture_Capture(@ScriptDir & "\images\" & $filename & $format,$x[0], $y[0], $x[1]+$x[0], $y[1]+$y[0]) HotKeySet("s") EndFunc[/font][font="Verdana"]Func _ListFiles() _GUICtrlListBox_resetcontent ($list) $search = FileFindFirstFile(".\images\*.*") If $search <> -1 Then While 1 Local $file = FileFindNextFile($search) If @error Then ExitLoop If StringRegExp($file,"(.bmp)|(.jpg)|(.gif)|(.png)") Then _GUICtrlListBox_AddString($list,$file) EndIf WEnd EndIf If _GUICtrlListBox_getCount($list) = 0 Then GUICtrlSetState($deletebutton, $GUI_DISABLE) GUICtrlSetState($editbutton, $GUI_DISABLE) GUICtrlSetState($ocrbutton, $GUI_DISABLE) _GUICtrlStatusBar_SetText($statusbar,"",1) _GUICtrlStatusBar_SetText($statusbar,"",2) _GUICtrlStatusBar_SetText($statusbar,"",3) _GUICtrlStatusBar_SetText($statusbar,"",4) _GDIPlus_Startup() $hGraphicss = _GDIPlus_GraphicsCreateFromHWND($GUI) _GDIPlus_GraphicsFillRect($hGraphicss, 450, 20, 150, 150) _GDIPlus_GraphicsDispose($hGraphicss) _GDIPlus_Shutdown() _DrawText("Preview",495, 80) Else GUICtrlSetState($deletebutton, $GUI_ENABLE) GUICtrlSetState($editbutton, $GUI_ENABLE) GUICtrlSetState($ocrbutton, $GUI_ENABLE) _GUICtrlListBox_GetCurSel($list);,_GUICtrlListBox_getCount($list)-1) WinWaitActive("Screen Region Capture") _ListClick() EndIf EndFunc[/font][font="Verdana"]Func _DrawText($text,$x, $y) _GDIPlus_Startup() $hGraphic = _GDIPlus_GraphicsCreateFromHWND($GUI) $hBrush = _GDIPlus_BrushCreateSolid(0xFFFFFFFF) $hFormat = _GDIPlus_StringFormatCreate() $hFamily = _GDIPlus_FontFamilyCreate("Arial") $hFont = _GDIPlus_FontCreate($hFamily, 12, 2) $tLayout = _GDIPlus_RectFCreate($x, $y, 0, 0) $aInfo = _GDIPlus_GraphicsMeasureString($hGraphic, $text, $hFont, $tLayout, $hFormat) _GDIPlus_GraphicsDrawStringEx($hGraphic, $text, $hFont, $aInfo[0], $hFormat, $hBrush) _GDIPlus_FontDispose ($hFont ) _GDIPlus_FontFamilyDispose ($hFamily ) _GDIPlus_StringFormatDispose($hFormat ) _GDIPlus_BrushDispose ($hBrush ) _GDIPlus_GraphicsDispose ($hGraphic) _GDIPlus_Shutdown() EndFunc[/font][font="Verdana"]Func _RubberBand_Select_Order($a,$B) Dim $res[2] If $a < $b Then $res[0] = $a $res[1] = $b - $a Else $res[0] = $b $res[1] = $a - $b EndIf Return $res EndFunc[/font][font="Verdana"];------------------------------ This is a COM Error handler -------------------------------- Func MyErrFunc() $HexNumber=hex($oMyError.number,8) Msgbox(0,"COM Error Test","We intercepted a COM Error !" & @CRLF & @CRLF & _ "err.description is: " & @TAB & $oMyError.description & @CRLF & _ "err.windescription:" & @TAB & $oMyError.windescription & @CRLF & _ "err.number is: " & @TAB & $HexNumber & @CRLF & _ "err.lastdllerror is: " & @TAB & $oMyError.lastdllerror & @CRLF & _ "err.scriptline is: " & @TAB & $oMyError.scriptline & @CRLF & _ "err.source is: " & @TAB & $oMyError.source & @CRLF & _ "err.helpfile is: " & @TAB & $oMyError.helpfile & @CRLF & _ "err.helpcontext is: " & @TAB & $oMyError.helpcontext _ ) SetError(1) ; to check for after this function returns Endfunc[/font][font="Verdana"]Func _DoNothing() EndFunc[/font] Edited February 4, 2008 by gesller Link to comment Share on other sites More sharing options...
poisonkiller Posted August 9, 2007 Share Posted August 9, 2007 What do I have to install to make these lines work: $miDoc = ObjCreate("MODI.Document") $miDocView = ObjCreate("MiDocViewer.MiDocView") Link to comment Share on other sites More sharing options...
Snarg Posted August 10, 2007 Share Posted August 10, 2007 What do I have to install to make these lines work: $miDoc = ObjCreate("MODI.Document") $miDocView = ObjCreate("MiDocViewer.MiDocView")Read this. A little reading goes a long way. Post count means nothing. Link to comment Share on other sites More sharing options...
gseller Posted August 10, 2007 Author Share Posted August 10, 2007 (edited) Oh Man, Sorry for the delay was at work. You have to have MS Office 2003/2007 and I think I remember it works on Office XP.. Not sure.... Read more on this like snarq said here.. http://www.autoitscript.com/forum/index.php?showtopic=50608Thanks.. Anyone seen a way to make this where ya don't have to close it and reopen it to OCR? Edited August 10, 2007 by gesller Link to comment Share on other sites More sharing options...
martin Posted August 10, 2007 Share Posted August 10, 2007 Oh Man, Sorry for the delay was at work. You have to have MS Office 2003/2007 and I think I remember it works on Office XP.. Not sure.... Read more on this like snarq said here.. http://www.autoitscript.com/forum/index.php?showtopic=50608Thanks.. Anyone seen a way to make this where ya don't have to close it and reopen it to OCR?I get COM errors on lines 109,110,121I have checked HK_Classes_Root and I have an entry fo "MODI.Document"I also checked this exists "\Program Files\Common Files\Microsoft Shared\MODI"I have Office Professional 2003. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
gseller Posted August 10, 2007 Author Share Posted August 10, 2007 This because it is not seeing an image file in the folder yet. The application still runs after these com errors right. If you go aheadand take a screenshot of something the next time it should be ok.. This will be corrected when I get the flaw corrected. it is trying to load the image for ocr. Link to comment Share on other sites More sharing options...
Toady Posted August 10, 2007 Share Posted August 10, 2007 (edited) hey gseller, I can't run the OCR script, I get the same error that everyone else is getting. But I think I know how to solve your problem. You should add a new button to the GUI and name it "OCR" or something. Make this button call this... Func _GetTextOCR() Local $miDoc, $Doc Local $str ="" Local $oWord Local $sArray[500] $miDoc = ObjCreate("MODI.Document") $miDocView = ObjCreate("MiDocViewer.MiDocView") $miDoc.Create(@ScriptDir & "\images\" & _GUICtrlListGetText($list,_GUICtrlListSelectedIndex($list))) $miDoc.Ocr($miLANG_ENGLISH, True, False) $MiDocView.Document = $miDoc $MiDocView.SetScale (0.75, 0.75) Local $i = 0 For $oWord in $miDoc.Images(0).Layout.Words $str &= $oWord.text & @CrLf $sArray [$i] = $oWord.text $i += 1 Next Return $str End Func it will take in the saved image and get OCR from the selected image then store it into a string to return. From there you can either put it in the clipboard or have another textbox display the text. I haven't used the OCR thing yet, but Im sure thats how you would go about it. Make sure you remove the OCR code from the top of script when you make this function. Hopefully this will work Edited August 10, 2007 by Toady www.itoady.com A* (A-star) Searching Algorithm - A.I. Artificial Intelligence bot path finding Link to comment Share on other sites More sharing options...
gseller Posted August 11, 2007 Author Share Posted August 11, 2007 Thank You, I tried it and cannot make it work like that. Any more suggestions? I have been trying all sorts of variations and I am unable to find anything in the helpfile on resetting input or resetting the GUI to reload the image. Link to comment Share on other sites More sharing options...
Toady Posted August 11, 2007 Share Posted August 11, 2007 I must be confused at what you are actually trying to do. To make the image get displayed in the GUI then look at _ListClick(). Does $miDoc.Create() take in a string path of an image file? Or does it take in a .doc file? www.itoady.com A* (A-star) Searching Algorithm - A.I. Artificial Intelligence bot path finding Link to comment Share on other sites More sharing options...
martin Posted August 11, 2007 Share Posted August 11, 2007 This because it is not seeing an image file in the folder yet. The application still runs after these com errors right. If you go aheadand take a screenshot of something the next time it should be ok.. This will be corrected when I get the flaw corrected. it is trying to load the image for ocr.Yes you're right. If I take a screen shot it gives errors, but the next time I run it I can use the OCR button to read the image. I tried taking a copy of the code in Scite using jpg and bmp, but the OCR results are disappointing ie not very accurate. (Maybe I need to clean my screen ) Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
gseller Posted August 12, 2007 Author Share Posted August 12, 2007 (edited) Fully Functional now! I have a version also that just copys the text to clipboard if anyone is interested? Edited August 12, 2007 by gesller Link to comment Share on other sites More sharing options...
eagle51 Posted September 1, 2007 Share Posted September 1, 2007 (edited) I'm getting problems while trying to start or compile your file Fatal Error: AVector: []: Out of bounds. If I click on "ok" I close the message and nothing happens.... Maybe usefull: C:\Programme\AutoIt3\Include\A3LGDIPlus.au3 (2321) : ==> Subscript used with non-Array variable.: Return $aResult[0] <> 0 Return $aResult^ ERROR ->18:44:23 AutoIT3.exe ended.rc:1 +>18:44:24 AutoIt3Wrapper Finished >Exit code: 1 Time: 3.618 Hope u can help me, Kesandal Edit: Using Office 2003 Pro SP2. Installed Word and Outlook Edited September 1, 2007 by eagle51 Link to comment Share on other sites More sharing options...
Sardith Posted September 1, 2007 Share Posted September 1, 2007 gesller, I'm running the latest production version/beta of autoit. I get COM error test. Any ideas of how to correct this? [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font] Link to comment Share on other sites More sharing options...
gseller Posted September 1, 2007 Author Share Posted September 1, 2007 (edited) @ Sardith Not sure what the error is that you are getting, are you using vista or XP? I only know for sure this works on windows XP with Office 2003 or later. I have not tested on Vista. @ eagle51 Try just using the latest production version of Autoit. I don't think this will work with the beta. Edited September 1, 2007 by gesller Link to comment Share on other sites More sharing options...
eagle51 Posted September 1, 2007 Share Posted September 1, 2007 I'm not using the beta Link to comment Share on other sites More sharing options...
Sardith Posted September 2, 2007 Share Posted September 2, 2007 @ Sardith Not sure what the error is that you are getting, are you using vista or XP? I only know for sure this works on windows XP with Office 2003 or later. I have not tested on Vista. @ eagle51 Try just using the latest production version of Autoit. I don't think this will work with the beta.ah, me being a idiot.. I don't have office 2003 installed. Hmm.. that seems to be a issue. XP SP2. Now I guess it's time to get office 2003 or later. [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font] Link to comment Share on other sites More sharing options...
gseller Posted September 2, 2007 Author Share Posted September 2, 2007 Ahhh, in your PM tho you say you are using windows 2000. I think this may be the problem. Try compiling in ANSI? Link to comment Share on other sites More sharing options...
Sardith Posted September 2, 2007 Share Posted September 2, 2007 Ahhh, in your PM tho you say you are using windows 2000. I think this may be the problem. Try compiling in ANSI?Never sent you a PM by the way.... Any who. Off to get office 2003 I guess. [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font] Link to comment Share on other sites More sharing options...
gseller Posted September 2, 2007 Author Share Posted September 2, 2007 My apologies, I thought you had. I was mistaken.. Yes, this script relys on the MODI.Document object that comes with Office 2003 or later... Link to comment Share on other sites More sharing options...
JohnBailey Posted October 2, 2007 Share Posted October 2, 2007 This is FABULOUS!! Lots of cool things in it for me to learn from A decision is a powerful thing Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now