User Tom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T08:07:56Zhttp://stackoverflow.com/feeds/user/20979http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1420420/is-there-an-excel-macro-that-checks-that-every-row-has-a-unique-or-blank-number0Is there an Excel macro that checks that every row has a unique or blank numberTom2009-09-14T08:56:04Z2009-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-it1How to check if Cell has Integer on it?Tom2009-12-10T13:50:03Z2009-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-numbers0Convert numbers stored as text to numbersTom2009-12-10T14:12:00Z2009-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" & c.Row).Value
ws.Range("C" & r).Value = myprice
ws.Range("C" & 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-45What Java versions are commonly installed on browsers, is it safe to assume 1.4?Tom2009-03-16T14:09:16Z2009-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-open0ActiveDocument.MailMerge with DDE leaves excel openTom2009-09-22T06:40:30Z2009-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-comments0FB Feed dialog not asking for user comments ?Tom2009-06-25T10:37:23Z2009-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-data2my GetHttp works with HTTP but HTTPS returns invalid dataTom2009-11-24T11:56:19Z2009-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 <> 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-file0How about using FLEX 3 component inside Flash file?Tom2008-12-05T12:38:48Z2009-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-20 import mx.controls.TextArea; not working with Flex 3.2 ?Tom2009-02-10T14:23:58Z2009-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-dialog0how to make BindingNavigatorAddNewItem to ask primary key in a dialog?Tom2009-06-02T07:20:51Z2009-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-desktop0installing gadget to user desktopTom2009-10-27T08:42:17Z2009-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-gadget0one way communication from background exe to activex (sidebar gadget)Tom2009-10-27T08:40:43Z2009-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-delphi0converting TForm win32 app to Win7 gadget (delphi)Tom2009-10-27T08:24:21Z2009-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-sessions0Continuos weird exceptions in ASP.NET application using cookieless sessionsTom2009-10-01T11:29:52Z2009-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-files0Why Setupper created by Publish feature does not copy files to c:/PROGRAM FILESTom2009-06-10T08:19:11Z2009-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-check1how to set up tomcat ldap authentication without member of checkTom2009-09-18T08:17:55Z2009-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-mac0office dde/macros with MacTom2009-10-22T13:19:22Z2009-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-issue2tweak old delphi exe to work with Win7 (windows size issue)Tom2009-10-13T12:55:18Z2009-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-asp0setting text to flash dynamic text fields from aspTom2009-10-13T11:50:45Z2009-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-timezone0how to display current time with chosen timezone?Tom2009-10-06T13:31:36Z2009-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#15369740Answer by Tom for how to display current time with chosen timezone?Tom2009-10-08T10:33:49Z2009-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-trace0debugging aspx page that gives a little stack trace?Tom2009-07-31T11:03:05Z2009-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-getfiles0how to enumerate files + folders recursively with System.IO.Directory.GetFilesTom2009-08-13T06:45:50Z2009-10-06T17:26:46Z
<p>How to change this code to also enumerate sub directories </p>
<pre><code> var fqFilenames= new List<String>(System.IO.Directory.GetFiles(sMappedPath));
var filenames= fqFilenames.ConvertAll((s) => { return s.Replace(sMappedPath+"\\", ""); });
FileListView.DataSource = filenames;
</code></pre>
http://stackoverflow.com/questions/1525584/asp-display-day-of-week0ASP display day of weekTom2009-10-06T13:26:38Z2009-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-21imsmanifest.xml should be utf-8 or not (Scorm 1.2)Tom2009-09-29T13:28:44Z2009-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-macro0executing word mail merge from excel macroTom2009-08-31T11:59:04Z2009-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-win70swing (installanywhere) buttons look broken after updating to Win7Tom2009-09-29T08:18:08Z2009-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-merge1HOW TO close Excel instance started by mail mergeTom2009-09-17T14:28:38Z2009-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 <> ActiveWorkbook.Name) Then
'Workbooks(i).Close
'End If
'Next i
</code></pre>
http://stackoverflow.com/questions/1464132/executing-xls-with-macro-fails-to-error-10041 executing xls with macro fails to error 1004Tom2009-09-23T05:40:08Z2009-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 & "!StartMerge")
</code></pre>
http://stackoverflow.com/questions/1439097/mailmerge-seem-to-open-excel-file-twice0mailmerge seem to open excel file twice?Tom2009-09-17T14:03:55Z2009-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#1881168Comment by Tom on How to check if Cell has Integer on it?Tom2009-12-10T14:27:36Z2009-12-10T14:27:36Ztnx, to insert a new blank cell to front of non numeric onehttp://stackoverflow.com/questions/1629462/installing-gadget-to-user-desktopComment by Tom on installing gadget to user desktopTom2009-10-27T15:09:45Z2009-10-27T15:09:45Zjust 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#1629548Comment by Tom on one way communication from background exe to activex (sidebar gadget)Tom2009-10-27T09:13:21Z2009-10-27T09:13:21ZI 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#1560761Comment by Tom on tweak old delphi exe to work with Win7 (windows size issue)Tom2009-10-14T10:36:45Z2009-10-14T10:36:45ZI was able to save rcdata.bin file, but opening it with delphi fails when renaming it to .DFMhttp://stackoverflow.com/questions/1560054/tweak-old-delphi-exe-to-work-with-win7-windows-size-issue/1560761#1560761Comment by Tom on tweak old delphi exe to work with Win7 (windows size issue)Tom2009-10-14T10:35:02Z2009-10-14T10:35:02Zgood 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#1211987Comment by Tom on debugging aspx page that gives a little stack trace?Tom2009-10-08T10:37:45Z2009-10-08T10:37:45Zyes, 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#1525643Comment by Tom on how to display current time with chosen timezone?Tom2009-10-08T10:34:48Z2009-10-08T10:34:48ZSorry 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#1525643Comment by Tom on how to display current time with chosen timezone?Tom2009-10-06T13:41:17Z2009-10-06T13:41:17Znot working with ASP page?http://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2/1492655#1492655Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2)Tom2009-09-30T08:16:24Z2009-09-30T08:16:24Zstill 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-formedhttp://stackoverflow.com/questions/1492558/imsmanifest-xml-should-be-utf-8-or-not-scorm-1-2/1493983#1493983Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2)Tom2009-09-30T08:15:51Z2009-09-30T08:15:51ZThanks, 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#1492655Comment by Tom on imsmanifest.xml should be utf-8 or not (Scorm 1.2)Tom2009-09-29T14:30:39Z2009-09-29T14:30:39Zwhat is correct header entry?http://stackoverflow.com/questions/1439097/mailmerge-seem-to-open-excel-file-twice/1439352#1439352Comment by Tom on mailmerge seem to open excel file twice?Tom2009-09-22T06:42:03Z2009-09-22T06:42:03ZI 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#1439762Comment by Tom on mailmerge seem to open excel file twice?Tom2009-09-22T06:41:29Z2009-09-22T06:41:29Zthanks, but how to run workbooks.close or excel quit from Word macro?? Word opens the excel via DDE and leaves it openhttp://stackoverflow.com/questions/1438451/ldap-authentication-to-ad-works-for-groups-except-domain-users/1438509#1438509Comment by Tom on ldap authentication to AD works for groups except "domain users"Tom2009-09-17T14:34:35Z2009-09-17T14:34:35ZHow can I meka a lookup on the user itself??http://stackoverflow.com/questions/1421518/creating-my-own-word-wrapper-for-string/1421691#1421691Comment by Tom on creating my own Word wrapper for stringTom2009-09-14T14:10:34Z2009-09-14T14:10:34Zthanks, nice code, but sometimes leaves words from the middle ! also has double spaces time to time.