User Jon Tackabury - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:08:20Zhttp://stackoverflow.com/feeds/user/343http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1663914/todo-comments-are-not-showing-up-in-the-task-list/1663930#16639300Answer by Jon Tackabury for TODO: comments are not showing up in the Task ListJon Tackabury2009-11-02T21:45:25Z2009-11-02T21:45:25Z<p>I had the same problem with #warning comments. You can find more in my question here:
<a href="http://stackoverflow.com/questions/1087561/warning-not-always-being-shown-in-the-error-list">http://stackoverflow.com/questions/1087561/warning-not-always-being-shown-in-the-error-list</a></p>
<p>I'm not sure if it's the same problem, but it's a good place to start.</p>
http://stackoverflow.com/questions/1171474/drag-drop-between-medium-high-integrity-level-processes-in-windows-vista1Drag/Drop between medium/high integrity level processes in Windows VistaJon Tackabury2009-07-23T12:41:32Z2009-10-23T09:00:06Z
<p>In Windows Vista, I am unable to drag/drop files onto my application's window because it is running as a high integrity level process. I need to run it as high, but I also need to be able to accept dropped files from low/medium integrity level processes like Windows Explorer. I believe it is UIPI that is blocking the drag/drop operation. I know that I can use the ChangeWindowMessageFilter function to allow certain Windows messages to bypass UIPI, but I'm not sure which messages to add to allow the drag/drop operation. Is ChangeWindowMessageFilter the right approach to permit this, or is there a better way? Thanks!</p>
http://stackoverflow.com/questions/849531/textrenderer-drawtext-in-bitmap-vs-onpaintbackground3TextRenderer.DrawText in Bitmap vs OnPaintBackgroundJon Tackabury2009-05-11T18:58:59Z2009-10-16T13:31:51Z
<p>If I use TextRenderer.DrawText() using the Graphics object provided in the OnPaintBackground my text looks perfect. If I create my own Bitmap and use the Graphics object obtained from my Bitmap my text looks terrible. It looks like it is anti-aliasing the text using black, not the bitmap's background color. I can avoid this problem if I use Graphics.DrawString(), but this method has horrible kerning problems. What should I do? How can I get TextRenderer.DrawText() to anti-alias properly using the Bitmap's contents?</p>
<p><strong>Looks terrible:</strong></p>
<pre><code>Bitmap bmp = new Bitmap(100, 100, PixelFormat.Format32bppArgb);
using (Graphics g = Graphics.FromImage(bmp))
{
g.Clear(Color.Red);
TextFormatFlags tf = TextFormatFlags.Left;
TextRenderer.DrawText(g, @"C:\Development\Testing\blag", font, clip, Color.White, Color.Transparent, tf);
}
</code></pre>
<p><strong>Looks good, but I want to render this onto a bitmap, NOT onto the control's surface:</strong></p>
<pre><code>protected override void OnPaintBackground(PaintEventArgs e)
{
e.Graphics.Clear(Color.Red);
TextFormatFlags tf = TextFormatFlags.Left;
TextRenderer.DrawText(e.Graphics, @"C:\Development\Testing\blag", font, clip, Color.White, Color.Transparent, tf);
}
</code></pre>
<p>What is the difference?</p>
http://stackoverflow.com/questions/299942/regex-matching-html-tags-and-extracting-text1RegEx matching HTML tags and extracting textJon Tackabury2008-11-18T20:01:54Z2009-10-13T17:42:18Z
<p>I have a string of test like this:</p>
<pre><code><customtag>hey</customtag>
</code></pre>
<p>I want to use a RegEx to modify the text between the "customtag" tags so that it might look like this:</p>
<pre><code><customtag>hey, this is changed!</customtag>
</code></pre>
<p>I know that I can use a MatchEvaluator to modify the text, but I'm unsure of the proper RegEx syntax to use. Any help would be much appreciated.</p>
http://stackoverflow.com/questions/559148/how-can-i-add-a-trace-to-every-method-call-in-c4How can I add a Trace() to every method call in C#?Jon Tackabury2009-02-17T23:12:22Z2009-10-08T21:00:05Z
<p>I am having a hard time tracking down a lock issue, so I would like to log every method call's entry and exit. I've done this before with C++ without having to add code to every method. Is this possible with C#?</p>
http://stackoverflow.com/questions/1261923/is-utf-8-acceptable-for-reading-writing-asian-languages5Is UTF-8 acceptable for reading/writing Asian languages?Jon Tackabury2009-08-11T17:45:00Z2009-10-03T03:07:18Z
<p>I am accepting user input via a web form (as UTF-8), saving it to a MySQL DB (using UTF-8 character set) and generating a text file later (encoded as UTF-8). I am wondering if there is any chance of text corruption using UTF-8 instead of something like UCS-2? Is UTF-8 good enough in this situation?</p>
http://stackoverflow.com/questions/1474551/wmi-error-with-a-simple-query-in-c0WMI error with a simple query in C#Jon Tackabury2009-09-24T22:39:20Z2009-09-24T22:42:24Z
<p>I am trying to use this code on Windows 2000:</p>
<pre><code>foreach (Process p in Process.GetProcesses())
{
if (p.MainModule.FileName.EndsWith("calc.exe"))
{
using (ManagementObjectSearcher mos =
new ManagementObjectSearcher(
"SELECT CommandLine,ExecutablePath
FROM Win32_Process WHERE ProcessId=" + p.Id.ToString()))
{
using (ManagementObjectCollection moc = mos.Get())
{
foreach (ManagementObject mo in moc)
{
MessageBox.Show((string)mo["CommandLine"]);
return;
}
}
}
}
}
</code></pre>
<p>This works on Windows XP and higher, but fails on Windows 2000 with an "Invalid query" error. <a href="http://msdn.microsoft.com/en-us/library/aa394372%28VS.85%29.aspx" rel="nofollow">According to MSDN</a>, the Win32_Process object is supported on Windows 2000 and higher, so I'm not sure what I'm doing wrong. Any help would be much appreciated.</p>
http://stackoverflow.com/questions/1474551/wmi-error-with-a-simple-query-in-c/1474562#14745620Answer by Jon Tackabury for WMI error with a simple query in C#Jon Tackabury2009-09-24T22:42:15Z2009-09-24T22:42:15Z<p>Sorry everyone. I just realized that the "CommandLine" field is only in Windows XP and higher. Problem solved.</p>
http://stackoverflow.com/questions/1457542/starting-a-new-process-with-arguments0Starting a new process with argumentsJon Tackabury2009-09-22T00:16:04Z2009-09-22T00:31:52Z
<p>I have a program that receives something like this from a settings file:</p>
<pre><code>"C:\Files\App 1\App.exe" "-param1:true -blah"
</code></pre>
<p>It receives this all as 1 string, but the Process object in C# needs the program and the arguments passed separately. Is there an easy way in C# to parse this, or a way to just pass the statement as it is without parsing it first?</p>
http://stackoverflow.com/questions/1408898/retrieving-delphi-window-handles2 Retrieving Delphi Window HandlesJon Tackabury2009-09-11T03:56:53Z2009-09-11T06:31:04Z
<p>I am trying to get the window handles to a Delphi application from an external application. I can see that there are a few windows created (TApplication, TFrmMain and a few others), and I know that TApplication is the "controller", but never visible. However, can I read what the value for the real window is? I know that it is TFrmMain (for this specific application), but is it possible to actually figure this out somehow? Is the information stored in the window properties,or somewhere else? Thanks!</p>
http://stackoverflow.com/questions/1336300/visual-studio-2008-error-while-debugging-an-app-with-uiaccesstrue-in-the-manif1Visual Studio 2008 error while debugging an app with "uiAccess=true" in the manifestJon Tackabury2009-08-26T17:21:28Z2009-09-06T04:25:07Z
<p>I have a C# WinForms application that has "uiAccess" set to "True" in it's manifest file. When I try to start/debug it in Visual Studio 2008 SP1 under Windows 7 x64 (RTM) I get this error:</p>
<blockquote>
<p>Running an Accessibility application requires following the steps described in Help.</p>
</blockquote>
<p>The help button is a broken link, and clicking ok just closes the application. It is digitally signed, and I can start it just fine in Windows Explorer. Here is the same bug in MS Connect, but unfortunately it's closed:</p>
<p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=384183" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=384183</a></p>
<p><strong>Question:</strong> Can anyone else using Vista/Win7 x64 (with UAC enabled) confirm that they experience the same problem? Has anyone seen this problem before and have any idea how to work around it?</p>
http://stackoverflow.com/questions/1379965/streamwriter-not-writing-to-an-existing-file/1380005#13800052Answer by Jon Tackabury for StreamWriter not writing to an existing fileJon Tackabury2009-09-04T15:39:00Z2009-09-04T15:39:00Z<p>It may have to do with the way you are combining your path and filename. Give this a try:</p>
<pre><code>using(StreamWriter sw = new StreamWriter(
Path.Combine(FolderDialog.SelectedPath, "my_file.txt"))
{
sw.writeLine("blablabla");
}
</code></pre>
<p>Also, check to make sure the FolderDialog.SelectedPath value isn't blank. :)</p>
http://stackoverflow.com/questions/1374917/what-are-the-biggest-software-project-in-net/1374940#13749402Answer by Jon Tackabury for what are the biggest software project in .NET?Jon Tackabury2009-09-03T17:53:14Z2009-09-03T17:53:14Z<p><a href="http://stackoverflow.com">Stack Overflow</a>. 1 million page views per day, runs on .NET. That is big traffic volume, but not necessarily a complex or "big" codebase. Your question is too vague in it's current form.</p>
http://stackoverflow.com/questions/1373572/convert-tlb-file-to-assembly-with-custom-assembly-information1Convert TLB file to assembly with custom assembly informationJon Tackabury2009-09-03T14:01:52Z2009-09-03T14:44:35Z
<p>I am using tlbimp.exe to generate an assembly from a TLB file. I know that I can use the "asmversion" command line switch to set a custom version number, but how do I set the other information? I would like to set the fields like "Product Name" and "Company", but I don't see a way to do this. Can it be done with tlbimp, or any other tools?</p>
http://stackoverflow.com/questions/1370941/how-to-modify-an-assemblys-version-number-after-build0How to modify an assembly's version number after build?Jon Tackabury2009-09-03T00:58:01Z2009-09-03T01:03:00Z
<p>I have an assembly that is already built, but I need to modify it's version number. Is there a way to do this without recompiling?</p>
http://stackoverflow.com/questions/1087561/warning-not-always-being-shown-in-the-error-list1"#warning" not always being shown in the Error ListJon Tackabury2009-07-06T15:16:42Z2009-09-02T20:08:27Z
<p>I use this to mark code I need to come back to:</p>
<pre><code>#warning Do more stuff here
</code></pre>
<p>However, sometimes these warning don't show up in the Error List window after a build. I can see the warnings in the compiler output window, but only some of them make it into the Error List. If I have the code file open that has these warnings they are always shown. If I have the code file closed, they don't appear most of the time. Is there a setting I can change to adjust this behaviour and always show the warnings in the Error List?</p>
http://stackoverflow.com/questions/781830/transparent-winform-with-image0Transparent Winform with imageJon Tackabury2009-04-23T13:57:03Z2009-09-02T18:20:15Z
<p>I have an image (PNG file) that has an alpha channel that is set to 50% opaque. When I try to draw the image on a form that has the TransparencyKey set to white, and the backcolor set to white I expect the image to be drawn 50% see-through. However, it is being blended with the forms backcolor first and as a result it is completely opaque. Is there any way around this? I don't want to set the form's Opaque property as some images on the form need to be translucent and some need to be opaque.</p>
http://stackoverflow.com/questions/781830/transparent-winform-with-image/1369282#13692821Answer by Jon Tackabury for Transparent Winform with imageJon Tackabury2009-09-02T18:09:50Z2009-09-02T18:09:50Z<p>I ended up using a layered window, using the WS_EX_LAYERED extended window style.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms997507.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms997507.aspx</a></p>
http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-table2Show only most recent date from joined MySQL tableJon Tackabury2009-09-02T15:15:12Z2009-09-02T16:08:43Z
<p>I have 2 tables, a "document" table and a "content" table. They look like this (simplified):</p>
<pre><code>document table:
docID
docTitle
content table:
contentID
docID
dateAdded
content
</code></pre>
<p>For every content change, a new record is inserted into the "content" table. This way there is a complete history of all changes. I would like to get a list of all the documents, with the latest content joined. It should return the docID, docTitle, and the associated content record with the newest "dateAdded" value. My brain is failing me right now, how would I create this join?</p>
http://stackoverflow.com/questions/1323162/troubleshooting-an-infinite-redirect-in-a-web-application0Troubleshooting an infinite redirect in a web applicationJon Tackabury2009-08-24T15:47:15Z2009-08-24T15:54:11Z
<p>I have a web application that is trying to redirect in a loop, and Firefox is telling me that it is stopping because the request will never complete. Is there a good way (in Firefox) to see what URL is being requested in this never-ending loop? The address doesn't seem to appear in the address bar. Are there any addons that can help with this?</p>
http://stackoverflow.com/questions/1321052/can-i-use-paint-net-api-to-embedd-it-in-winforms-application/1322656#13226562Answer by Jon Tackabury for Can i use Paint.NET API to embedd it in Winforms application?Jon Tackabury2009-08-24T14:09:49Z2009-08-24T14:09:49Z<p>It sounds like your requirements are fairly simple, you might be able to roll your own image cropper using a PictureBox and a few mouse events. :)</p>
http://stackoverflow.com/questions/1174218/c-code-generation-removing-redundant-code0C# code generation / removing redundant codeJon Tackabury2009-07-23T20:16:40Z2009-08-23T04:22:43Z
<p>I have some simple code in a class:</p>
<pre><code>private ITemplate _content1 = null;
[TemplateContainer(typeof(ContentContainer))]
public ITemplate Content1
{
get
{ return _content1; }
set
{ _content1 = value; }
}
</code></pre>
<p>I need about 15 of these content containers. I could just copy and paste this block 15 times and change the number, but there must be a better way. Can anyone suggest a cleaner way to do this?</p>
http://stackoverflow.com/questions/542395/how-to-access-a-documents-html-in-firefox-using-iaccessible2How to access a document's HTML in Firefox using IAccessibleJon Tackabury2009-02-12T17:19:31Z2009-08-21T14:58:56Z
<p>I can get an IAccessible object from a Firefox window using this code:</p>
<pre><code>Guid guid = new Guid("{618736E0-3C3D-11CF-810C-00AA00389B71}");
object obj = null;
int ret = AccessibleObjectFromWindow(hWnd,
(uint) OBJID.WINDOW, ref guid, ref obj);
Accessibility.IAccessible acc = (Accessibility.IAccessible)obj;
</code></pre>
<p>However, I'm not sure where to go from here. I need to get the full HTML from the document. I know about the IAccessible.get_accValue() method, but I'm not really sure how to use it in relation to Firefox. Any help would be much appreciated.</p>
http://stackoverflow.com/questions/542395/how-to-access-a-documents-html-in-firefox-using-iaccessible/1312473#13124730Answer by Jon Tackabury for How to access a document's HTML in Firefox using IAccessibleJon Tackabury2009-08-21T14:58:56Z2009-08-21T14:58:56Z<p>Apparently you can't get the full HTML source using IAccessible. I found this but it doesn't work in FF3.5:</p>
<pre><code>IServiceProvider *pServProv = NULL;
pAccessible->QueryInterface(IID_IServiceProvider, (void**)&pServProv);
ISimpleDOMNode *pSimpleDOMNode;
if (pServProv) {
const GUID refguid = {0x0c539790, 0x12e4, 0x11cf, 0xb6, 0x61,
0x00, 0xaa, 0x00, 0x4c, 0xd6, 0xd8};
HRESULT result = pServProv->QueryService(refguid, IID_ISimpleDOMNode,
(void**)&pSimpleDOMNode);
if (SUCCEEDED(hresult) && pSimpleDOMNode != NULL) {
/* This is a Mozilla node! Use special ISimpleDOMNode methods described in
ISimpleDOMNode.idl. */
}
}
</code></pre>
<p>I also found this, which doesn't work in FF3.5 either:</p>
<pre><code>HRESULT hr = AccessibleObjectFromWindow(hwnd, OBJID_CLIENT,
IID_IAccessible, (void**)&pAccessible);
if (SUCCEEDED(hr) && pAccessible != NULL) {
HRESULT hr = pAccessible->QueryInterface(
IID_ISimpleDOMNode, (void**)&pSimpleDOMNode);
}
</code></pre>
<p>I'm stuck. :(</p>
http://stackoverflow.com/questions/1307675/convert-interface-idl-file-to-c0Convert Interface IDL file to C#Jon Tackabury2009-08-20T17:26:00Z2009-08-20T17:46:08Z
<p>I have an interface defined in an IDL file that I would like to use in C#. Is there a way to convert the IDL to something usable in C#?</p>
http://stackoverflow.com/questions/451287/how-do-you-show-the-windows-explorer-context-menu-from-a-c-application4How do you show the Windows Explorer context menu from a C# application?Jon Tackabury2009-01-16T17:28:14Z2009-08-20T04:07:11Z
<p>I have a file listing in my application and I would like to allow people to right-click on an item and show the Windows Explorer context menu. I'm assuming I would need to use the IContextMenu interface, but I'm not really sure where to start.</p>
http://stackoverflow.com/questions/1296134/c-manual-threading/1296186#12961864Answer by Jon Tackabury for C# Manual ThreadingJon Tackabury2009-08-18T20:06:46Z2009-08-18T20:06:46Z<p>You should also be aware that Windows XP (and possibly Vista/Win7) have a limit on the number of half-open TCP connection you can have (10). If you are waiting for sites to respond that don't exist, adding more threads won't get around this problem.</p>
http://stackoverflow.com/questions/188240/whats-the-best-version-control-system-for-handling-projects-with-graphics/188251#1882519Answer by Jon Tackabury for What's the best version control system for handling projects with graphics?Jon Tackabury2008-10-09T17:12:52Z2009-08-18T19:40:50Z<p>I would recommend Subversion with TortoiseSVN. It integrates into Windows Explorer and allows you to do everything you need from the context menu (update, commit, branch, merge... anything). It can handle all kinds of files, and best of all, both Subversion and TortoiseSVN are free (along with the other SVN tools).</p>
http://stackoverflow.com/questions/1295539/using-wix-to-package-an-installer-with-many-files1Using WiX to package an installer with many filesJon Tackabury2009-08-18T18:03:31Z2009-08-18T19:09:28Z
<p>I have a WiX 3 project that has hundreds of files, and I can't seem to figure out how to include them all using a wildcard. I have tried this:</p>
<pre><code>heat.exe" dir ".\!Build" -gg -ke -template:fragment -out "Files.wxs"
</code></pre>
<p>This produces a fragment .wxs file, but I'm not sure what to do with it. Any help would be much appreciated.</p>
http://stackoverflow.com/questions/842843/window-hooking-questions0Window Hooking QuestionsJon Tackabury2009-05-09T07:01:05Z2009-08-17T17:35:46Z
<p>Is am using this:</p>
<pre><code>SetWindowsHookEx(WH_CALLWNDPROC, ...);
</code></pre>
<p>I can see the messages I want to process, but I want to prevent those message from reaching the target window. So I tried this:</p>
<pre><code>SetWindowsHookEx(WH_GETMESSAGE, ...);
</code></pre>
<p>When I do this I can modify the message, and prevent the target window from processing it, but this hook doesn't see the messages I need to process. I presume this is because it is being posted to the target window's queue, not sent? Is there a way around this issue? I have heard that window sub-classing might be able to accomplish this, but can I subclass a window in a different process? Is there a way to do this using hooks?</p>
http://stackoverflow.com/questions/1511422/when-is-mono-a-good-choice-over-net/1511443#1511443Comment by Jon Tackabury on When is mono a good choice over .net?Jon Tackabury2009-10-02T19:49:08Z2009-10-02T19:49:08Z+1 for the ".NET-esque" comment. It isn't 100% the same as the Microsoft .NET Framework, but it's pretty close.http://stackoverflow.com/questions/1457542/starting-a-new-process-with-arguments/1457569#1457569Comment by Jon Tackabury on Starting a new process with argumentsJon Tackabury2009-09-22T02:28:16Z2009-09-22T02:28:16ZThis won't work with paths that have a space in them.http://stackoverflow.com/questions/1408898/retrieving-delphi-window-handles/1408976#1408976Comment by Jon Tackabury on Retrieving Delphi Window HandlesJon Tackabury2009-09-11T14:51:58Z2009-09-11T14:51:58ZThanks, I was afraid of that. :(http://stackoverflow.com/questions/1336300/visual-studio-2008-error-while-debugging-an-app-with-uiaccesstrue-in-the-manif/1384857#1384857Comment by Jon Tackabury on Visual Studio 2008 error while debugging an app with "uiAccess=true" in the manifestJon Tackabury2009-09-08T04:07:30Z2009-09-08T04:07:30ZI am running VS as an administrator using the technique you described. This isn't a prompt asking me if I want to run the application, VS is telling me it can't run it and not providing any more information.http://stackoverflow.com/questions/1374917/what-are-the-biggest-software-project-in-netComment by Jon Tackabury on what are the biggest software project in .NET?Jon Tackabury2009-09-03T18:02:55Z2009-09-03T18:02:55Z@Jeff: Is there really 1 "right" answer to this question? I doubt that.http://stackoverflow.com/questions/1374917/what-are-the-biggest-software-project-in-net/1374940#1374940Comment by Jon Tackabury on what are the biggest software project in .NET?Jon Tackabury2009-09-03T17:58:24Z2009-09-03T17:58:24ZBig can mean just about anything. His question is very vague, so I took "big" to mean popular/high traffic.http://stackoverflow.com/questions/1374917/what-are-the-biggest-software-project-in-netComment by Jon Tackabury on what are the biggest software project in .NET?Jon Tackabury2009-09-03T17:52:29Z2009-09-03T17:52:29ZYou need to be more specific in your question, and this should definitely be a wiki question.http://stackoverflow.com/questions/1373572/convert-tlb-file-to-assembly-with-custom-assembly-information/1373849#1373849Comment by Jon Tackabury on Convert TLB file to assembly with custom assembly informationJon Tackabury2009-09-03T14:46:54Z2009-09-03T14:46:54ZThose options are definitely not in the VS2008 version. Do you know if an assembly generated with the 2010 version of tlbimp will work with a VS2008 app?http://stackoverflow.com/questions/781830/transparent-winform-with-image/1369337#1369337Comment by Jon Tackabury on Transparent Winform with imageJon Tackabury2009-09-02T18:50:34Z2009-09-02T18:50:34ZThat's true, but I needed something that was backwards compatible with Windows XP.http://stackoverflow.com/questions/230668/stored-procedures-vs-parameterized-queriesComment by Jon Tackabury on Stored Procedures vs Parameterized QueriesJon Tackabury2009-09-02T18:11:56Z2009-09-02T18:11:56ZAs a follow-up, I tend to prefer parameterized queries only because I find them easier to maintain. This is just personal preference though, and YMMV.http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-tableComment by Jon Tackabury on Show only most recent date from joined MySQL tableJon Tackabury2009-09-02T15:43:08Z2009-09-02T15:43:08Z@Gorgapor: Good call, I've updated the title.http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-table/1368410#1368410Comment by Jon Tackabury on Show only most recent date from joined MySQL tableJon Tackabury2009-09-02T15:39:01Z2009-09-02T15:39:01ZWould this query work when there are no content records for a document? I would still like it to list the document, and just return null for the dateAdded and content fields.http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-table/1368410#1368410Comment by Jon Tackabury on Show only most recent date from joined MySQL tableJon Tackabury2009-09-02T15:35:15Z2009-09-02T15:35:15ZThanks for the name. Whenever I have a SQL question, I never know what to Google for, which makes it more difficult to find a solution. :)http://stackoverflow.com/questions/1368331/show-only-most-recent-date-from-joined-mysql-table/1368394#1368394Comment by Jon Tackabury on Show only most recent date from joined MySQL tableJon Tackabury2009-09-02T15:31:28Z2009-09-02T15:31:28ZIs it possible to return documents that have no associated content records yet by changing this to an outer join, or will that change the behaviour? Also, can this return the contentID and content fields as well by including them in the select, or will that mess it up?http://stackoverflow.com/questions/1364213/are-large-html-tables-slow/1364224#1364224Comment by Jon Tackabury on Are large html tables slow?Jon Tackabury2009-09-01T19:34:39Z2009-09-01T19:34:39Z-1: The question even says: "The rows contain tabular data...", so I'm pretty sure table is valid here.