User tbreffni - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:45:13Z http://stackoverflow.com/feeds/user/637 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/4689/recommended-fonts-for-programming 177 Recommended Fonts for Programming? tbreffni 2008-08-07T13:08:44Z 2009-11-25T11:01:50Z <p>What fonts do you use for programming, and for what language/IDE? I use <a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3&amp;displaylang=en" rel="nofollow" title="Consolas">Consolas</a> for all my Visual Studio work, any other recommendations?</p> http://stackoverflow.com/questions/33664/best-practices-for-managing-linq-to-sql-dbml-files 13 Best Practices for Managing Linq to SQL Dbml Files? tbreffni 2008-08-28T23:42:14Z 2009-11-24T15:05:54Z <p>I've just started using Linq to SQL, and I'm wondering if anyone has any best practices they can share for managing dbml files.</p> <ul> <li>How do you keep them up to date with the database?</li> <li>Do you have a single dbml file for the entire database, or is it split into multiple logical units? </li> <li>How does managing this file work in a team environment?</li> </ul> <p>Any other tips and tricks welcome.</p> http://stackoverflow.com/questions/155739/detecting-unsaved-changes-using-javascript 15 Detecting Unsaved Changes using JavaScript tbreffni 2008-10-01T00:41:28Z 2009-11-16T19:35:06Z <p>I have a requirement to implement an "Unsaved Changes" prompt in an ASP .Net application. If a user modifies controls on a web form, and attempts to navigate away before saving, a prompt should appear warning them that they have unsaved changes, and give them the option to cancel and stay on the current page. The prompt should not display if the user hasn't touched any of the controls.</p> <p>Ideally I'd like to implement this in JavaScript, but before I go down the path of rolling my own code, are there any existing frameworks or recommended design patterns for achieving this? Ideally I'd like something that can easily be reused across multiple pages with minimal changes.</p> http://stackoverflow.com/questions/1630140/net-wcf-iis-application-deployment/1675836#1675836 0 Answer by tbreffni for .net WCF IIS Application, deployment tbreffni 2009-11-04T18:48:40Z 2009-11-04T18:48:40Z <p>I haven't used it yet, but Microsoft have recently released an application called <a href="http://www.iis.net/extensions/WebDeploymentTool" rel="nofollow">Web Deployment Tool</a>, which allows you to package sites and associated IIS settings into a deployment package. A developer level overview can also be found at <a href="http://msdn.microsoft.com/en-us/library/dd394698%28VS.100%29.aspx" rel="nofollow">MSDN</a>.</p> http://stackoverflow.com/questions/1599744/how-to-use-the-performancecounter-to-find-the-bandwidth-used-by-my-appication/1626736#1626736 0 Answer by tbreffni for How to use the PerformanceCounter to find the bandwidth used by my appication? tbreffni 2009-10-26T19:09:13Z 2009-10-26T19:09:13Z <p>I don't know of a way of using Windows performance counters to track per application bandwidth usage. However, there are plenty of third-party bandwidth monitoring tools that support per-application network usage statistics, <a href="http://www.netlimiter.com/" rel="nofollow">NetLimiter</a> being one of them. From their site: "It includes real-time traffic measurement and long-term per-application internet traffic statistics". Hope this helps.</p> http://stackoverflow.com/questions/1569010/sql-server-2008-autocomplete-for-top-keyword/1569042#1569042 1 Answer by tbreffni for SQL Server 2008 autocomplete for "TOP" keyword tbreffni 2009-10-14T21:15:02Z 2009-10-14T21:15:02Z <p>I think all you can do is hit ESC when the intellisense pop-up appears which will cancel any change it makes, or just turn Intellisense off completely by going to Text Editor -> Transact-SQL -> Intellisense. </p> http://stackoverflow.com/questions/1566069/how-to-provide-custom-code-for-initializecomponent/1569003#1569003 1 Answer by tbreffni for How to provide custom code for InitializeComponent? tbreffni 2009-10-14T21:06:36Z 2009-10-14T21:06:36Z <p>You can use special attributes to tell the Visual Studio designer how to serialize properties in code. See the MSDN reference for <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.designerserializationvisibilityattribute.aspx" rel="nofollow">DesignerSerializationVisibilityAttribute</a> for an example. <a href="http://amrelsehemy.net/post/2008/01/06/Custom-Controls-Design-Time-Support-Part-1-Design-Time-Attributes.aspx" rel="nofollow">This series of articles</a> also gives a good overview of the various attributes available to extend design time support for custom controls. Hope this helps.</p> http://stackoverflow.com/questions/1554634/linq-to-sql-cannot-create-database-schema-permissions/1568895#1568895 3 Answer by tbreffni for LINQ to SQL Cannot create database [Schema Permissions] tbreffni 2009-10-14T20:46:36Z 2009-10-14T20:46:36Z <p>From what I've read, the CreateDatabase() method is limited in what it can reproduce of the original database. It won't recreate things like triggers and check constraints, and I'm guessing it doesn't create custom schemas either. You may want to look into creating the database using a <a href="http://msdn.microsoft.com/en-us/library/bb399420.aspx" rel="nofollow">SQL Server .mdf</a> file instead to work around this issue. See <a href="http://csainty.blogspot.com/2008/02/linq-to-sql-be-careful-of.html" rel="nofollow">this blog entry</a> for more details on some of the limitations of CreateDatabase().</p> http://stackoverflow.com/questions/1566046/how-to-know-speed-of-processor-fan/1566100#1566100 2 Answer by tbreffni for how to know speed of processor fan ? tbreffni 2009-10-14T13:04:21Z 2009-10-14T13:04:21Z <p>Not sure what platform you're interested in, but on Windows you can use <a href="http://msdn.microsoft.com/en-us/library/aa394572%28VS.85%29.aspx" rel="nofollow">WMI</a>, which provides a <a href="http://msdn.microsoft.com/en-us/library/aa394146%28VS.85%29.aspx" rel="nofollow">class for fan information</a>. The exact location of the fan information in the WMI repository will depend on your motherboard manufacturer (if they provide it at all), so there is no easy way to get the information without coding specifically for different motherboards. You can use <a href="http://www.microsoft.com/downloads/details.aspx?familyid=6430F853-1120-48DB-8CC5-F2ABDC3ED314&amp;displaylang=en" rel="nofollow">this tool</a> to browse the repository and see what's available.</p> http://stackoverflow.com/questions/742719/deployment-of-ado-net-data-service/1560310#1560310 2 Answer by tbreffni for Deployment of ADO.NET Data Service tbreffni 2009-10-13T13:36:20Z 2009-10-13T13:36:20Z <p>Here is a <a href="http://mtaulty.com/CommunityServer/blogs/mike%5Ftaultys%5Fblog/archive/2008/05/27/10447.aspx" rel="nofollow">blog entry</a> that explains in depth how to secure an ADO .NET Data Service.</p> http://stackoverflow.com/questions/1545419/bind-structured-arraylist-to-database/1557774#1557774 0 Answer by tbreffni for bind structured arraylist to database. tbreffni 2009-10-13T01:11:17Z 2009-10-13T01:11:17Z <p>Assuming you want to insert or update your database with the contents of your struct, then ADO.NET is a good place to start. Here is a <a href="http://www.csharp-station.com/Tutorials/AdoDotNet/lesson01.aspx" rel="nofollow">good tutorial</a> that walks you through the basics of reading, updating and inserting against a SQL Server database. There is also the official <a href="http://msdn.microsoft.com/en-us/library/h43ks021.aspx" rel="nofollow">MSDN site</a> for more in depth info.</p> http://stackoverflow.com/questions/1555471/what-tools-are-available-to-test-sql-statement-performance/1556153#1556153 1 Answer by tbreffni for What tools are available to test SQL statement performance? tbreffni 2009-10-12T18:33:23Z 2009-10-12T18:33:23Z <p><a href="http://www.mssqltips.com/tip.asp?tip=1856" rel="nofollow">Execution Plans</a> are one of the first things to look at when debugging query performance problems. An execution plan will tell you how much time is roughly spent in each portion of your query, and can be used to quickly identify if you are missing indexes or have expensive joins or loops.</p> http://stackoverflow.com/questions/185363/implementing-functionality-code-directly-in-database-system 2 Implementing functionality/code directly in database system tbreffni 2008-10-08T23:35:06Z 2009-10-12T14:34:51Z <p>RDBMS packages today offer a tremendous amount of functionality beyond standard data storage and retrieval. SQL Server for example can send emails, expose web service methods, and execute CLR code amongst other capabilities. However, I have always tried to limit the amount of processing my database server does to just data storage and retrieval as much as possible, for the following reasons:</p> <ul> <li>A database server is harder to scale than web servers</li> <li>In a lot of projects I've worked on, the DB server is a lot busier than the web servers, and thus has less spare capacity</li> <li>It potentially exposes your database server to a security attack (web services for example)</li> </ul> <p>My question is, how do you decide how much functionality or code should be implemented directly on your database server versus other servers in your architecture? What recommendations do you have for people starting new projects?</p> http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images/1554853#1554853 0 Answer by tbreffni for Where can one find free software icons / images? tbreffni 2009-10-12T14:16:03Z 2009-10-12T14:16:03Z <p>I have used <a href="http://www.webiconsets.com/" rel="nofollow">http://www.webiconsets.com/</a> before and they have a small but good set of free icon packs that target websites. They have specialized packs for social media, payments, etc.</p> http://stackoverflow.com/questions/1554689/evaluate-expressions-in-switch-statements-in-c/1554713#1554713 9 Answer by tbreffni for Evaluate Expressions in Switch Statements in C# tbreffni 2009-10-12T13:53:26Z 2009-10-12T13:53:26Z <p>You could do something like this at the end of your switch statement:</p> <pre><code>default: if(num &lt; 0) { ... // Code } break; </code></pre> http://stackoverflow.com/questions/1554499/best-tools-for-web-development/1554519#1554519 1 Answer by tbreffni for Best Tools for Web Development!? tbreffni 2009-10-12T13:15:57Z 2009-10-12T13:15:57Z <p>I would recommend <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Studio Web Developer</a>, it's free and has a ton of features for developing both static html/css sites and more dynamic stuff using Javascript and ASP .Net.</p> http://stackoverflow.com/questions/1552696/visual-studio-2008-sql-2008-best-practices/1554491#1554491 0 Answer by tbreffni for Visual Studio 2008 + Sql 2008 best practices tbreffni 2009-10-12T13:11:07Z 2009-10-12T13:11:07Z <p>I do most of my local development in SQL Server 2008 Express Edition and it does the job pretty well, and it's the most lightweight edition you can get. I would stick to 2008 if I were you, due to the extra features which you may find yourself using eventually, plus the actual service itself doesn't seem to take up much extra memory over 2005 from what I can see. </p> <p>The new intellisense features in Management Studio 2008 may be the cause of your extra memory usage, which can be turned off if you want.</p> http://stackoverflow.com/questions/1544180/difference-between-is-notnull-and-null 0 Difference between Is.NotNull and != null tbreffni 2009-10-09T14:36:40Z 2009-10-09T14:45:53Z <p>I have come across some code in a few projects which use if(Is.NotNull(SomeObject)) instead of if(SomeObject != null). Is there any difference between the two methods? When would one use a particular method over the other, or is it just a style choice?</p> http://stackoverflow.com/questions/442413/cant-get-updatable-view-in-linq-and-sql-2005-to-work/1160848#1160848 0 Answer by tbreffni for Can't get updatable View in Linq and Sql 2005 to work. tbreffni 2009-07-21T18:23:21Z 2009-07-21T18:23:21Z <p>I was able to create a Linq to SQL dbml file successfully using your examples using Visual Studio 2008:</p> <p><img src="http://i29.tinypic.com/2qv5xkp.png" alt="alt text" /></p> <p>I would check to make sure you have a correctly set the primary key in your Entity table database. It could also simply be a bug in the 2005 version of the designer that has now been resolved in 2008.</p> http://stackoverflow.com/questions/1071436/net-sqlclient-error-number-enum-type/1155998#1155998 0 Answer by tbreffni for .NET SqlClient Error Number Enum Type tbreffni 2009-07-20T21:16:32Z 2009-07-20T21:16:32Z <p>Unfortunately I don't think this is feasible. If you run the following query,</p> <pre><code>select * from sys.messages where language_id=1033 and severity between 11 and 16 </code></pre> <p>it produces over six thousand rows. You could write a small app to parse the table and produce a C# class with const properties representing each message, but it's probably not worth the effort.</p> http://stackoverflow.com/questions/1155120/sql-server-roles-schemas-users/1155474#1155474 2 Answer by tbreffni for SQL Server roles, schemas, users tbreffni 2009-07-20T19:31:27Z 2009-07-20T19:31:27Z <p>A SQL Server schema is simply container of objects, such as tables, stored procedures, etc. A Database Role is a group of principals, such as windows logins, sql server users, etc.</p> <p>The idea is you can have a role of say "IT", and have all IT users under that role. Then you have can a schema called "IT", and have all tables that belong to IT under that. Out of the box SQL Server creates matching schemas for each default user and role in the database, but I think the intention is you customize this to match the needs of your organization.</p> <p><a href="http://www.sqlteam.com/article/understanding-the-difference-between-owners-and-schemas-in-sql-server" rel="nofollow">This article</a> has more information on the differences between owners and schemas. <a href="http://stackoverflow.com/questions/254451/schema-owner-for-objects-in-ms-sql">This question</a> on Stack Overflow may also be useful.</p> http://stackoverflow.com/questions/1154729/sql-user-defined-functions-vs-stored-procedure-branching/1154798#1154798 2 Answer by tbreffni for SQL user-defined functions vs. stored procedure branching tbreffni 2009-07-20T17:22:02Z 2009-07-20T17:22:02Z <p>You could also try using the <a href="http://msdn.microsoft.com/en-us/library/ms174998.aspx" rel="nofollow">RETURN statement</a> in your child stored procedures, which can be used to return a result code back to the parent procedure. You can call the child procedure by something along the lines of "<code>exec @myresultcode = BUDGET_ALLOCATE_SCENARIO_REGIONBYREGION()</code>". I think this should force the parent procedure to wait for the child procedure to finish.</p> http://stackoverflow.com/questions/1045882/how-can-i-invoke-a-wcf-operation-without-http-container/1153440#1153440 1 Answer by tbreffni for How can I invoke a WCF operation without HTTP container? tbreffni 2009-07-20T13:02:06Z 2009-07-20T13:02:06Z <p>Assuming everything is happening on the same machine, then using a <a href="http://blogs.charteris.com/blogs/chrisdi/archive/2008/05/19/exploring-the-wcf-named-pipe-binding-part-1.aspx" rel="nofollow">Named Pipe</a> binding is probably your best bet.</p> http://stackoverflow.com/questions/1145024/sql-2008-deadlocks-on-simple-delete/1145062#1145062 0 Answer by tbreffni for SQL 2008 deadlocks on simple delete tbreffni 2009-07-17T18:55:40Z 2009-07-17T18:55:40Z <p>How many different types of statements are hitting the tblEvents table? Is it possible you have an insert/update/select statement running at the same time as your delete? You could try recreating the issue by running a large amount of inserts/updates/selects at the same time as attempting some deletes.</p> http://stackoverflow.com/questions/1144480/what-is-the-most-under-valued-part-of-net/1144590#1144590 4 Answer by tbreffni for What is the most under-valued part of .NET? tbreffni 2009-07-17T17:10:54Z 2009-07-17T17:10:54Z <p>I found reading about the <a href="http://en.wikipedia.org/wiki/Common%5FIntermediate%5FLanguage" rel="nofollow">Common Intermediate Language</a> to be very interesting, if you want to see how things work under the hood in .Net. Here is a <a href="http://weblogs.asp.net/kennykerr/archive/2004/09/07/introduction-to-msil-part-1-hello-world.aspx" rel="nofollow">useful tutorial</a> if you want to learn how to write it.</p> http://stackoverflow.com/questions/1139583/is-there-value-in-producing-code-so-flexible-that-it-will-never-need-to-be-update/1144540#1144540 0 Answer by tbreffni for Is there value in producing code so flexible that it will never need to be updated? tbreffni 2009-07-17T17:04:52Z 2009-07-17T17:04:52Z <p>I think it depends on why the API is being created, and what problems you're aiming to solve. If the aim of the API is to be a service that lives on a server somewhere and manages requests from different applications, then I think your approach is probably the way to go, with the addition of a database or config files to perhaps customize the LDAP paths of certain properties.</p> <p>However, if the goal of the API is to simple be a set of classes that abstract away the details of accessing Active Directory, but not what properties are being accessed, then what your coworkers have specified is the way to go.</p> <p>Either approach isn't necessarily right or wrong, so it ultimately depends on your overall reasons for creating the API in the first place.</p> http://stackoverflow.com/questions/1137302/problem-with-selecting-date-from-dropdownlist/1137352#1137352 2 Answer by tbreffni for problem with selecting date from dropdownlist tbreffni 2009-07-16T12:49:44Z 2009-07-16T12:49:44Z <p>Try using SelectedValue or SelectedText rather than SelectedIndex. SelectedIndex is just the position of the item in the list, not the value being displayed to the user.</p> http://stackoverflow.com/questions/1134808/how-to-query-a-dataset-and-iterate-through-the-result/1134846#1134846 2 Answer by tbreffni for How to query a DataSet and iterate through the result? tbreffni 2009-07-16T00:30:01Z 2009-07-16T00:30:01Z <p>You could look into <a href="http://msdn.microsoft.com/en-us/library/bb386969.aspx" rel="nofollow">LINQ to Dataset</a>, which allows you to perform queries against DataSets with multiple tables. You can perform joins between the tables on the appropriate columns amongst other things.</p> http://stackoverflow.com/questions/1134350/vs-2008-opens-default-browser-instead-of-ie-for-silverlight-application/1134405#1134405 0 Answer by tbreffni for VS 2008 Opens Default Browser instead of IE for SilverLight Application tbreffni 2009-07-15T22:10:07Z 2009-07-15T22:10:07Z <p>You could create a post-build event that runs FireFox.exe, pointing to the url of your website. You can edit post-build events by right-clicking on your Web Application, going to Compile, and clicking the Build Events button. Your post-build command could be something like "C:\Program Files\Mozilla Firefox\firefox.exe" <a href="http://localhost/mysite" rel="nofollow">http://localhost/mysite</a> for example.</p> http://stackoverflow.com/questions/1132859/how-to-build-iphone-apps-using-net-on-windows/1132862#1132862 7 Answer by tbreffni for How to build iphone apps using .Net on windows? tbreffni 2009-07-15T16:56:51Z 2009-07-15T17:43:41Z <p><a href="http://www.mono-project.com/Mono:Iphone" rel="nofollow">Mono</a> are working on porting their .Net runtime to the iPhone, which will be available for testing next month.</p> <p><a href="http://unity3d.com/unity/features/iphone-publishing" rel="nofollow">Unity</a> is a game development platform for the iPhone that uses C# and .Net.</p> http://stackoverflow.com/questions/1554634/linq-to-sql-cannot-create-database-schema-permissions Comment by tbreffni on LINQ to SQL Cannot create database [Schema Permissions] tbreffni 2009-10-27T14:49:28Z 2009-10-27T14:49:28Z SQL Server Management Studio can script out an entire database. Right-click on a database, choose Tasks, and then choose &quot;Generate Scripts&quot;. For more features you probably want to consider a commercial solution, such as SQL Compare <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">red-gate.com/products/SQL_Compare/&hellip;</a> . http://stackoverflow.com/questions/1544180/difference-between-is-notnull-and-null/1544235#1544235 Comment by tbreffni on Difference between Is.NotNull and != null tbreffni 2009-10-09T14:49:01Z 2009-10-09T14:49:01Z Interesting...I suspect this is the reason it was created, although perhaps it shouldn't have been placed in the System namespace. Thanks for the insight. http://stackoverflow.com/questions/1544180/difference-between-is-notnull-and-null/1544207#1544207 Comment by tbreffni on Difference between Is.NotNull and != null tbreffni 2009-10-09T14:45:00Z 2009-10-09T14:45:00Z Ah, you're right, it isn't part of the base class library, it's part of a custom external assembly we have here. The method was implemented in a class called &quot;Is&quot; in the System namespace, which led to believe it was part of the BCL. Thanks for your help! http://stackoverflow.com/questions/1154729/sql-user-defined-functions-vs-stored-procedure-branching/1154798#1154798 Comment by tbreffni on SQL user-defined functions vs. stored procedure branching tbreffni 2009-07-20T20:25:26Z 2009-07-20T20:25:26Z It's up to you whether you make them functions or stored procedures. Just be aware that functions have a lot more restrictions on what they can do compared to stored procedures, for example you can't have update statements in them. See this article: <a href="http://msdn.microsoft.com/en-us/library/ms187650.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> for more details. It might be easier for you to just keep them as stored procedures. http://stackoverflow.com/questions/1155120/sql-server-roles-schemas-users/1155474#1155474 Comment by tbreffni on SQL Server roles, schemas, users tbreffni 2009-07-20T20:20:58Z 2009-07-20T20:20:58Z See this article <a href="http://msdn.microsoft.com/en-us/library/ms189462.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> for more details. Specifically, &quot;Objects created within a schema are owned by the owner of the schema, and have a NULL principal_id in sys.objects. Ownership of schema-contained objects can be transferred to any database-level principal, but the schema owner always retains CONTROL permission on objects within the schema.&quot; So it looks like an owner always has full control over the objects in a schema. http://stackoverflow.com/questions/1139583/is-there-value-in-producing-code-so-flexible-that-it-will-never-need-to-be-update Comment by tbreffni on Is there value in producing code so flexible that it will never need to be updated? tbreffni 2009-07-17T15:28:45Z 2009-07-17T15:28:45Z You mentioned that &quot;...they would prefer to ask around, &quot;What is the correct field in Active Directory to use for the user's phone number?&quot;, and plug that into their respective apps&quot;. Does this mean that it for example the phone number field changed, multiple apps using your API would have to be updated to send the correct field name in, instead of just your API? http://stackoverflow.com/questions/1137302/problem-with-selecting-date-from-dropdownlist/1137352#1137352 Comment by tbreffni on problem with selecting date from dropdownlist tbreffni 2009-07-16T13:00:26Z 2009-07-16T13:00:26Z Try modifying the above code to read: DateTime dateofjoining = new DateTime(DropDownListDay.SelectedValue, DropDownListMonth.SelectedValue, DropDownListYear.SelectedValue); . You could also try: DateTime dateofjoining = new DateTime(DropDownListDay.SelectedText, DropDownListMonth.SelectedText, DropDownListYear.SelectedText); http://stackoverflow.com/questions/1070507/converting-a-microsoft-document-imaging-mdi-file-to-pdf-or-jpg-in-asp-net/1120975#1120975 Comment by tbreffni on Converting a Microsoft Document Imaging (.mdi) file to PDF (or JPG) in ASP.net tbreffni 2009-07-14T12:52:18Z 2009-07-14T12:52:18Z You might be stuck using some sort of Office automation to perform the actual conversion, although that would require a version of Office installed on the server which it seems like you want to avoid. http://stackoverflow.com/questions/1119347/how-to-perform-a-fast-web-request-in-c Comment by tbreffni on How to perform a fast web request in C# tbreffni 2009-07-13T13:22:51Z 2009-07-13T13:22:51Z Does it happen with all urls, such as google.com? What about using a non-ssl url? http://stackoverflow.com/questions/1106240/asp-net-user-control-databinding-datatable Comment by tbreffni on ASP.NET User control, databinding DataTable tbreffni 2009-07-09T20:28:58Z 2009-07-09T20:28:58Z Does the page postback to the server when the button is clicked? http://stackoverflow.com/questions/1103637/usercontrol-to-connect-to-a-sqlserver-database/1103657#1103657 Comment by tbreffni on usercontrol to connect to a SqlServer database tbreffni 2009-07-09T12:55:56Z 2009-07-09T12:55:56Z Agreed, this seems fairly straightforward to write. http://stackoverflow.com/questions/1083213/problem-with-html-scrollbars-not-appearing-via-window-open Comment by tbreffni on Problem with HTML? Scrollbars Not Appearing via window.open tbreffni 2009-07-08T01:25:46Z 2009-07-08T01:25:46Z For what it's worth, I saved your html sample to a local html file and opened it in both IE/FireFox and got vertical scrollbars. Perhaps it's something with your CSS that's causing the problem?