User Tom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:07:56Z http://stackoverflow.com/feeds/user/20979 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1420420/is-there-an-excel-macro-that-checks-that-every-row-has-a-unique-or-blank-number 0 Is there an Excel macro that checks that every row has a unique or blank number Tom 2009-09-14T08:56:04Z 2009-12-11T21:00:02Z <p>What is an Excel macro that will check every cell in column A for whether they have unique numbers or are blank?</p> http://stackoverflow.com/questions/1881103/how-to-check-if-cell-has-integer-on-it 1 How to check if Cell has Integer on it? Tom 2009-12-10T13:50:03Z 2009-12-11T13:43:37Z <p>How to check if a specific Column has Integer on each cell, and if it contains a string, Insert a blank cell to row in question.</p> http://stackoverflow.com/questions/1881240/convert-numbers-stored-as-text-to-numbers 0 Convert numbers stored as text to numbers Tom 2009-12-10T14:12:00Z 2009-12-10T14:37:51Z <p>this code does not seem to work well always when copying currency data from another sheet:</p> <pre><code>Dim myprice As String myprice = othersheet.Range("H" &amp; c.Row).Value ws.Range("C" &amp; r).Value = myprice ws.Range("C" &amp; r).Style = "Currency" </code></pre> <p>sometimes cells have a warning that "this number is formatted as text"</p> http://stackoverflow.com/questions/650582/what-java-versions-are-commonly-installed-on-browsers-is-it-safe-to-assume-1-4 5 What Java versions are commonly installed on browsers, is it safe to assume 1.4? Tom 2009-03-16T14:09:16Z 2009-12-08T01:55:32Z <p>Is there any site/analysis about what Java version most people are using on WWW ? It seems this data is not available on webserver logs (vs. Flash versions)</p> <p>Can we safely set e.g. Java 1.4.2 as minimum requirement for our applet, or are there still many users using Java 1.1 (MS one) or Java 1.2-1.3 ?</p> <p>It's still a bit of a complicated process to update Java if it's too old, e.g. admin rights are needed on Windows machine and it's bit difficult in some Linux distros too.</p> http://stackoverflow.com/questions/1458460/activedocument-mailmerge-with-dde-leaves-excel-open 0 ActiveDocument.MailMerge with DDE leaves excel open Tom 2009-09-22T06:40:30Z 2009-12-07T19:03:39Z <p>How to close excel opened by Word mail merge macro?</p> <pre><code>With ActiveDocument.MailMerge .MainDocumentType = wdCatalog Connection:="Entire spreadsheet", SubType:=8, ReadOnly:=True .Destination = wdSendToNewDocument .Execute End With 'Activedocument DDETerminateAll </code></pre> http://stackoverflow.com/questions/1043193/fb-feed-dialog-not-asking-for-user-comments 0 FB Feed dialog not asking for user comments ? Tom 2009-06-25T10:37:23Z 2009-12-04T05:00:03Z <p>Why FB Feed dialog below (iframe solution) is not asking for user comments on dialog, the dialog appears and post is sent</p> <pre><code> function callback() { alert("Thank you"); } function showFeed() { FB_RequireFeatures(["XFBML"], function(){ FB.Facebook.init('kkkc', '/facebook/xd_receiver.htm', null); FB.ensureInit(function() { var tpl_data ={"images":[{"src":"logo.gif","href":"kkk"}],"city":" "}; var user_message_prompt = "What do you think of this ?"; var user_message = {value: "write your comments here"};tData= {}; FB.Connect.showFeedDialog(439384, tpl_data, null, null, null, FB.RequireConnect.require, callback,user_message_prompt, user_message); </code></pre> <p>(added extra null to code, still not working !) NOTE: with Firefox the dialog seem to remain as blank when clicking Next, until closing from upper corner X.</p> http://stackoverflow.com/questions/1789606/my-gethttp-works-with-http-but-https-returns-invalid-data 2 my GetHttp works with HTTP but HTTPS returns invalid data Tom 2009-11-24T11:56:19Z 2009-11-24T20:03:00Z <p>my GetHttp works with HTTP but HTTPS returns invalid data, this is the test procedure:</p> <p>GetHTTP('<a href="https://localhost/" rel="nofollow">https://localhost/</a>','',temp,true); temp.SaveToFile('c:\temp.txt');</p> <p>How to fix, any ideas?</p> <pre><code>function GetHTTP(AUrl, APostStr:ansistring; AStream:TStream; noncached :boolean =false): integer; var Retry: Boolean; hSession, hConnect, hRequest: hInternet; RequestMethod, Header: ansistring; Buf:array[0..1023] of Char; ReadCount:Cardinal; dwError, dwErrorCode: DWORD; ptNil: Pointer; UrlInfo: TUrlInfo; flags : DWORD ; procedure SetTimeOut; var TimeOut: integer; begin TimeOut := 5 * 1000; InternetSetOption(hSession, INTERNET_OPTION_RECEIVE_TIMEOUT, @TimeOut, SizeOf(TimeOut)); end; procedure GetHttpStatus; //StatusCode var Len, Reserved: DWORD; begin Reserved := 0; Len := SizeOf(Result); HttpQueryInfo(hRequest, HTTP_QUERY_STATUS_CODE or HTTP_QUERY_FLAG_NUMBER, @Result, Len, Reserved) ; end; begin flags := 0; if noncached = true then flags := INTERNET_FLAG_RELOAD; // flags := INTERNET_FLAG_SECURE; THIS DID NOT HELP ??!!! output was blank with it Result := 0; if not GetUrlInfo(AUrl, UrlInfo) then Exit; hSession := InternetOpen(nil, INTERNET_OPEN_TYPE_PRECONFIG, nil, nil, 0); try SetTimeOut; hConnect := InternetConnect(hSession, pchar(UrlInfo.hostname),urlinfo.port,nil,nil,INTERNET_SERVICE_HTTP,INTERNET_FLAG_EXISTING_CONNECT ,0); try if APostStr = '' then RequestMethod := 'GET' else RequestMethod := 'POST'; hRequest := HttpOpenRequest(hConnect, PChar(RequestMethod),Pchar(urlinfo.urlpath), 'HTTP/1.0', nil, nil,flags, 0); try if APostStr = '' then Header := '' else Header := 'Content-type: application/x-www-form-urlencoded'; Retry:=True; while Retry do begin if HttpSendRequest(hRequest, PChar(Header),Length(Header), PChar(APostStr), Length(APostStr)) then dwErrorCode:=ERROR_SUCCESS else dwErrorCode:=GetLastError; dwError:=InternetErrorDlg(application.Handle, hRequest, dwErrorCode, FLAGS_ERROR_UI_FILTER_FOR_ERRORS or FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS or FLAGS_ERROR_UI_FLAGS_GENERATE_DATA, ptNil); Retry:=(dwError=ERROR_INTERNET_FORCE_RETRY); end; //HttpSendRequest(hRequest, PChar(Header),Length(Header), PChar(APostStr), Length(APostStr)); GetHttpStatus; if Result &lt;&gt; HTTP_STATUS_OK then Exit; while True do begin if not InternetReadFile(hRequest, @Buf, SizeOf(Buf), ReadCount) then Break; //res := GetLastError(); if ReadCount = 0 then Break else AStream.Write(Buf, ReadCount); end; finally InternetCloseHandle(hRequest); end; finally InternetCloseHandle(hConnect); end; finally InternetCloseHandle(hSession); end; end; </code></pre> http://stackoverflow.com/questions/343690/how-about-using-flex-3-component-inside-flash-file 0 How about using FLEX 3 component inside Flash file? Tom 2008-12-05T12:38:48Z 2009-11-19T15:16:57Z <p>Is it possible to use Flex 3 component/code inside Flash (cs4) SWF file ?</p> <p>I know its possible in the opposite direction.</p> http://stackoverflow.com/questions/532519/import-mx-controls-textarea-not-working-with-flex-3-2 0 import mx.controls.TextArea; not working with Flex 3.2 ? Tom 2009-02-10T14:23:58Z 2009-11-16T11:24:50Z <p>Why the TextArea class is not available for my Flex Builder 3? </p> <p>Project has flex32 SDK in buildpath. other imports are OK.</p> <pre><code> import flash.display.*; import flash.events.*; import flash.geom.*; import flash.net.*; import flash.text.*; import flash.utils.*; import mx.core.*; import mx.controls.TextArea; </code></pre> <blockquote> <p>Severity and Description 1172:</p> <p>Definition mx.controls:TextArea could not be found.</p> </blockquote> http://stackoverflow.com/questions/938300/how-to-make-bindingnavigatoraddnewitem-to-ask-primary-key-in-a-dialog 0 how to make BindingNavigatorAddNewItem to ask primary key in a dialog? Tom 2009-06-02T07:20:51Z 2009-11-10T20:00:12Z <p>how to make BindingNavigatorAddNewItem to ask primary key in a dialog while new row is created after button is clicked?</p> <p>currently its adding blank row to end of DATAGRIDVIEW that is a big confusing for end user , if user forgets to enter primary key exception occurs.</p> http://stackoverflow.com/questions/1629462/installing-gadget-to-user-desktop 0 installing gadget to user desktop Tom 2009-10-27T08:42:17Z 2009-10-29T13:44:20Z <p>Is is possible to install gadget to user's desktop somehow?</p> <p>I believe its needed to copy files to folder: C:\Users\curusername\AppData\Local\Microsoft\Windows Sidebar\Gadgets\test.gadget</p> <p>but how to register/activate my test.gadget?</p> <p>Is it enough to shell execute test.gadget?</p> http://stackoverflow.com/questions/1629456/one-way-communication-from-background-exe-to-activex-sidebar-gadget 0 one way communication from background exe to activex (sidebar gadget) Tom 2009-10-27T08:40:43Z 2009-10-27T18:12:52Z <p>I need a small communicator between an application/background process and the gadget, I think its easiest to make own activex module that has just getText() and setText(). I need to pass a string once per second or so. I guess the activex object should use shared data so that another new activexobject() (created by javascript gadget page) would have access to data set by EXE.</p> <p>what would be the best way to do this activex ? should I call some myactivex.setText() method from running process, but how to make the data shared between activex modules in this case? which THREADING mode to choose? does INSTANCING affect something? Should I create Automation object from delphi GUI?</p> http://stackoverflow.com/questions/1629401/converting-tform-win32-app-to-win7-gadget-delphi 0 converting TForm win32 app to Win7 gadget (delphi) Tom 2009-10-27T08:24:21Z 2009-10-27T10:38:13Z <p>What is the process of converting win32 application (a small popup window actually) to win7 gadget? Do I need to convert my exe to activex component, can I still use TForm ?</p> <p>it would be nice to have support for both Win7 + Vista.</p> http://stackoverflow.com/questions/1503400/continuos-weird-exceptions-in-asp-net-application-using-cookieless-sessions 0 Continuos weird exceptions in ASP.NET application using cookieless sessions Tom 2009-10-01T11:29:52Z 2009-10-26T09:06:35Z <p>My facebook app causes the following exception time to time (daily, tens of times per day) - there are hundreds of daily users but only a few receive this error.. what could be causing it?</p> <p>How to diagnostic it further? I don't know how to reproduce it..</p> <blockquote> <p>Error Message: Stack Trace: at System.Web.CachedPathData.GetConfigPathData(String configPath) at System.Web.CachedPathData.GetVirtualPathData(VirtualPath virtualPath, Boolean permitPathsOutsideApp) at System.Web.HttpContext.GetFilePathData() at System.Web.HttpContext.GetConfigurationPathData() at System.Web.HttpContext.get_ImpersonationToken() at System.Web.ClientImpersonationContext.Start(HttpContext context, Boolean throwOnError) at System.Web.HttpApplication.ThreadContext.Enter(Boolean setImpersonationContext) at System.Web.HttpApplication.OnThreadEnterPrivate(Boolean setImpersonationContext) at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error)</p> </blockquote> http://stackoverflow.com/questions/974287/why-setupper-created-by-publish-feature-does-not-copy-files-to-c-program-files 0 Why Setupper created by Publish feature does not copy files to c:/PROGRAM FILES Tom 2009-06-10T08:19:11Z 2009-10-23T16:37:24Z <p>I have VB project and I tried to use PUBLISH feature.</p> <p>It seems to create nicely some kind of setup program, but the setup program does not ask where to copy files (it does not seem to copy filesto target machine "PROGRAM FILES".)</p> <p>Is this setup program somehow different from usual installers? NOTE: I want that app files are installed to Hard disk( from USB stick source)</p> <p>Is the signing recommended or necessary? My App is pretty simple, its just using access DB + printer api, should I still sign?</p> http://stackoverflow.com/questions/1443189/how-to-set-up-tomcat-ldap-authentication-without-member-of-check 1 how to set up tomcat ldap authentication without member of check Tom 2009-09-18T08:17:55Z 2009-10-22T21:48:09Z <p>I need to set up LDAP authentication against domain users group in AD; there is problem that ldap authenticatin seem to require that users are member of some other group than default domain users. However when there are 10000+ users its not a solution to assign all them to another group just for this tomcat purpose.</p> <p>There must be another way? is it possible to check for primaryGroupID by editing server.xml or web.xml?</p> <p>or is it possible to ignore GROUP check completely?</p> http://stackoverflow.com/questions/1607132/office-dde-macros-with-mac 0 office dde/macros with Mac Tom 2009-10-22T13:19:22Z 2009-10-22T13:19:22Z <p>I have created some excel/word macros that use DDE and mailmerge, is it going to work at all with Office MACOSX version?</p> http://stackoverflow.com/questions/1560054/tweak-old-delphi-exe-to-work-with-win7-windows-size-issue 2 tweak old delphi exe to work with Win7 (windows size issue) Tom 2009-10-13T12:55:18Z 2009-10-13T14:55:18Z <p>How to tweak old legacy delphi exe to work well in Win7, there are no source codes, but luckily just one small GUI issue: </p> <p>The main window size is fixed to be too narrow and now the text in control does not fit to screen. adjusting compatibility settings do not help at all.</p> http://stackoverflow.com/questions/1559741/setting-text-to-flash-dynamic-text-fields-from-asp 0 setting text to flash dynamic text fields from asp Tom 2009-10-13T11:50:45Z 2009-10-13T12:33:19Z <p>how can I set the text of dynamic text field from the asp page that loads .SWF file ?</p> http://stackoverflow.com/questions/1525615/how-to-display-current-time-with-chosen-timezone 0 how to display current time with chosen timezone? Tom 2009-10-06T13:31:36Z 2009-10-08T10:33:49Z <p>how to display current time with chosen timezone instead of server TZ? (VB)</p> http://stackoverflow.com/questions/1525615/how-to-display-current-time-with-chosen-timezone/1536974#1536974 0 Answer by Tom for how to display current time with chosen timezone? Tom 2009-10-08T10:33:49Z 2009-10-08T10:33:49Z <p>to use any TZ; simply use this row to add hours:</p> <pre><code>anytime = DateAdd("H", HOUR_DIFFERENCE, Now()) </code></pre> http://stackoverflow.com/questions/1211949/debugging-aspx-page-that-gives-a-little-stack-trace 0 debugging aspx page that gives a little stack trace? Tom 2009-07-31T11:03:05Z 2009-10-06T18:59:39Z <p>My aspx page gives randomly this small stack trace:</p> <p>Error Message:</p> <blockquote> <p>Input string was not in a correct format. Stack Trace: at Microsoft.VisualBasic.CompilerServices.Conversions.ParseDouble(String Value, NumberFormatInfo NumberFormat) at Microsoft.VisualBasic.Comp</p> </blockquote> <p>why page is not displaying the full details in which function the error occurs?</p> <p>Now i cannot locate the bug.. usually it gives lines numbers etc.</p> http://stackoverflow.com/questions/1270399/how-to-enumerate-files-folders-recursively-with-system-io-directory-getfiles 0 how to enumerate files + folders recursively with System.IO.Directory.GetFiles Tom 2009-08-13T06:45:50Z 2009-10-06T17:26:46Z <p>How to change this code to also enumerate sub directories </p> <pre><code> var fqFilenames= new List&lt;String&gt;(System.IO.Directory.GetFiles(sMappedPath)); var filenames= fqFilenames.ConvertAll((s) =&gt; { return s.Replace(sMappedPath+"\\", ""); }); FileListView.DataSource = filenames; </code></pre> http://stackoverflow.com/questions/1525584/asp-display-day-of-week 0 ASP display day of week Tom 2009-10-06T13:26:38Z 2009-10-06T13:29:33Z <p>how to display day of week with VB</p> http://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2 1 imsmanifest.xml should be utf-8 or not (Scorm 1.2) Tom 2009-09-29T13:28:44Z 2009-09-29T17:39:09Z <p>Should I save imsmanifest.xml in UTF-8 or ANSI ?</p> <p>ADL test suite 1.2 seem to fail with UTF8 header, but on otherhand some LMSes will fail if its not UTF8.</p> http://stackoverflow.com/questions/1357121/executing-word-mail-merge-from-excel-macro 0 executing word mail merge from excel macro Tom 2009-08-31T11:59:04Z 2009-09-29T12:39:13Z <p>Is it possible to start MAIL MERGE from excel macro (by clicking a button on sheet)</p> <p>I have excel sheet with data and want to export it to new word doc.</p> http://stackoverflow.com/questions/1491221/swing-installanywhere-buttons-look-broken-after-updating-to-win7 0 swing (installanywhere) buttons look broken after updating to Win7 Tom 2009-09-29T08:18:08Z 2009-09-29T08:29:36Z <p>my installanywhere project has swing window with Next, back, etc. buttons and now these look broken (there are no surrounding frames) with my new Win7 machine.</p> <p>Any ideas how to fix these? I believe it happens since JAVA reports itself now "Windows 7"</p> <p>note: AWT buttons work OK</p> http://stackoverflow.com/questions/1439250/how-to-close-excel-instance-started-by-mail-merge 1 HOW TO close Excel instance started by mail merge Tom 2009-09-17T14:28:38Z 2009-09-23T11:33:19Z <p>HOW TO close Excel instance started by mail merge</p> <p>this code running inside launcher does not have access to Excel running via DDE ??</p> <pre><code>'For i = 1 To Workbooks.Count ' MsgBox ("here" + Workbooks(i).Name) 'If (Workbooks(i).Name &lt;&gt; ActiveWorkbook.Name) Then 'Workbooks(i).Close 'End If 'Next i </code></pre> http://stackoverflow.com/questions/1464132/executing-xls-with-macro-fails-to-error-1004 1 executing xls with macro fails to error 1004 Tom 2009-09-23T05:40:08Z 2009-09-23T09:48:01Z <p>The file exists, opening workbook works but Application.run gives 1004</p> <pre><code>Set wbtarget = Workbooks.Open(mypath + "\launcher.xls") Application.Run (wbtarget.Name &amp; "!StartMerge") </code></pre> http://stackoverflow.com/questions/1439097/mailmerge-seem-to-open-excel-file-twice 0 mailmerge seem to open excel file twice? Tom 2009-09-17T14:03:55Z 2009-09-22T12:27:06Z <pre><code>With ActiveDocument.MailMerge .MainDocumentType = wdCatalog .OpenDataSource Name:=excelfile, _ Connection:="Entire spreadsheet", SubType:=8, ReadOnly:=True ' Range = Selection.Range .Destination = wdSendToNewDocument .Execute End With 'Activedocument DDETerminateAll </code></pre> <p>why this code opens "excelfile" twice to excel, one of these is readonly. how can I close these excel files from word?</p> http://stackoverflow.com/questions/1881103/how-to-check-if-cell-has-integer-on-it/1881168#1881168 Comment by Tom on How to check if Cell has Integer on it? Tom 2009-12-10T14:27:36Z 2009-12-10T14:27:36Z tnx, to insert a new blank cell to front of non numeric one http://stackoverflow.com/questions/1629462/installing-gadget-to-user-desktop Comment by Tom on installing gadget to user desktop Tom 2009-10-27T15:09:45Z 2009-10-27T15:09:45Z just starting .gadget file seem to offer DIALOG; can I bypass dialog? http://stackoverflow.com/questions/1629456/one-way-communication-from-background-exe-to-activex-sidebar-gadget/1629548#1629548 Comment by Tom on one way communication from background exe to activex (sidebar gadget) Tom 2009-10-27T09:13:21Z 2009-10-27T09:13:21Z I believe shared memory or PostMessage or similar would be faster..?? http://stackoverflow.com/questions/1560054/tweak-old-delphi-exe-to-work-with-win7-windows-size-issue/1560761#1560761 Comment by Tom on tweak old delphi exe to work with Win7 (windows size issue) Tom 2009-10-14T10:36:45Z 2009-10-14T10:36:45Z I was able to save rcdata.bin file, but opening it with delphi fails when renaming it to .DFM http://stackoverflow.com/questions/1560054/tweak-old-delphi-exe-to-work-with-win7-windows-size-issue/1560761#1560761 Comment by Tom on tweak old delphi exe to work with Win7 (windows size issue) Tom 2009-10-14T10:35:02Z 2009-10-14T10:35:02Z good tip, but reshacker crashes when viewing the app main form... http://stackoverflow.com/questions/1211949/debugging-aspx-page-that-gives-a-little-stack-trace/1211987#1211987 Comment by Tom on debugging aspx page that gives a little stack trace? Tom 2009-10-08T10:37:45Z 2009-10-08T10:37:45Z yes, I believe its components causing it, any ideas how to debug it further, should I disable exception handlers from it ? ( I have sourcecode for it ) http://stackoverflow.com/questions/1525615/how-to-display-current-time-with-chosen-timezone/1525643#1525643 Comment by Tom on how to display current time with chosen timezone? Tom 2009-10-08T10:34:48Z 2009-10-08T10:34:48Z Sorry but ASP does not seem to support calling kernel32... I figured the solution myself and answered already. http://stackoverflow.com/questions/1525615/how-to-display-current-time-with-chosen-timezone/1525643#1525643 Comment by Tom on how to display current time with chosen timezone? Tom 2009-10-06T13:41:17Z 2009-10-06T13:41:17Z not working with ASP page? http://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2/1492655#1492655 Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2) Tom 2009-09-30T08:16:24Z 2009-09-30T08:16:24Z still gives error ERROR: The markup in the document preceding the root element must be well-formed. ERROR: The XML declaration may only appear at the very beginning of the document. ERROR: The manifest instance is NOT well-formed http://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2/1493983#1493983 Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2) Tom 2009-09-30T08:15:51Z 2009-09-30T08:15:51Z Thanks, but I changed encoding like this, but test suite still says error The markup in the document preceding the root element must be well-formed. http://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2/1492655#1492655 Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2) Tom 2009-09-29T14:30:39Z 2009-09-29T14:30:39Z what is correct header entry? http://stackoverflow.com/questions/1439097/mailmerge-seem-to-open-excel-file-twice/1439352#1439352 Comment by Tom on mailmerge seem to open excel file twice? Tom 2009-09-22T06:42:03Z 2009-09-22T06:42:03Z I want to kill a chosen one, just DDE opened one, that has a specific xls file open, how to do that? http://stackoverflow.com/questions/1439097/mailmerge-seem-to-open-excel-file-twice/1439762#1439762 Comment by Tom on mailmerge seem to open excel file twice? Tom 2009-09-22T06:41:29Z 2009-09-22T06:41:29Z thanks, but how to run workbooks.close or excel quit from Word macro?? Word opens the excel via DDE and leaves it open http://stackoverflow.com/questions/1438451/ldap-authentication-to-ad-works-for-groups-except-domain-users/1438509#1438509 Comment by Tom on ldap authentication to AD works for groups except "domain users" Tom 2009-09-17T14:34:35Z 2009-09-17T14:34:35Z How can I meka a lookup on the user itself?? http://stackoverflow.com/questions/1421518/creating-my-own-word-wrapper-for-string/1421691#1421691 Comment by Tom on creating my own Word wrapper for string Tom 2009-09-14T14:10:34Z 2009-09-14T14:10:34Z thanks, nice code, but sometimes leaves words from the middle ! also has double spaces time to time.