User Brian Behm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:33:12Zhttp://stackoverflow.com/feeds/user/30552http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/311504/long-pages-in-firefox-offset-when-scrollbar-appears4Long pages in FireFox offset when scrollbar appearsBrian Behm2008-11-22T16:45:17Z2009-11-14T07:55:29Z
<p>In Firefox and Safari, pages that are centered move a few pixels when the page is long enough for the scrollbar to appear. If you navigate through a site that has long and short pages, the page seems to "jump" around.</p>
<p>IE7 tends to leave the scroll bar visible all of the time but disables it when the page is not long enough. Since the width of the HTML window never changes the centering of the page doesn't change.</p>
<p>Is there a workaround or a way to style the page so it doesn't jump around in Firefox and Safari?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1544845/greenleaf-database-library-in-c0Greenleaf Database Library in C#Brian Behm2009-10-09T16:37:01Z2009-10-09T17:30:54Z
<p>I am creating a WPF application that will integrate with an existing system using a Clipper database. I have been working through some issues trying to access char fields with lengths greater than 255. The Jet and FoxPro OLEDB providers seem to cut off the data in these larger fields. I have modified and used the DotNetDBF library but it does not contain searching capabilities.</p>
<p>The existing applications in this system use the Greenleaf Database Library which is a 32-bit Windows DLL written in C++. It does contain searching capablilities and also allows me to take advantage of the index files used in the system.</p>
<p>Does anyone know of a .Net/C# wrapper that exists for this library? Any other alternative library suggestions would also be welcome.</p>
<p>Thanks,
Brian</p>
http://stackoverflow.com/questions/1501666/assessment-of-project-mangerss-volume-of-work-what-is-a-good-methodology/1501686#1501686-1Answer by Brian Behm for Assessment of project mangers's volume of work - what is a good methodology?Brian Behm2009-10-01T02:56:32Z2009-10-01T02:56:32Z<p>Come on, calling meetings and forwarding emails is alot of hard work. :-)</p>
http://stackoverflow.com/questions/1501649/entity-framework-4-blog-or-information-page/1501658#15016581Answer by Brian Behm for Entity framework 4 blog or information pageBrian Behm2009-10-01T02:47:17Z2009-10-01T02:47:17Z<p>I think this is what you are looking for...
<a href="http://blogs.msdn.com/efdesign/" rel="nofollow">http://blogs.msdn.com/efdesign/</a></p>
<p>Enjoy!</p>
http://stackoverflow.com/questions/1495708/clear-form-button-in-html-do-we-really-need-this/1495722#149572214Answer by Brian Behm for Clear form button in HTML...do we really need this?Brian Behm2009-09-30T01:26:31Z2009-09-30T01:26:31Z<p>I stopped adding those about 1997. It really bothers me when I fill out a large form and accidentially hit the Clear button. I am not really sure why they were ever used in the first place. You're right, I don't think I've ever filled out a form and said to myself, "Oh wait a minute, I think I want to start over?"</p>
http://stackoverflow.com/questions/1495705/common-database-field-size-type-quick-reference/1495714#14957141Answer by Brian Behm for Common database field size/type quick reference?Brian Behm2009-09-30T01:24:11Z2009-09-30T01:24:11Z<p>Here is a related post that might help to answer your question...</p>
<p><a href="http://stackoverflow.com/questions/472434/database-column-sizes-for-character-based-data">http://stackoverflow.com/questions/472434/database-column-sizes-for-character-based-data</a></p>
http://stackoverflow.com/questions/1429533/asp-net-mvc-free-book/1429541#14295413Answer by Brian Behm for ASP.NET MVC free bookBrian Behm2009-09-15T20:49:37Z2009-09-15T20:49:37Z<p><a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx</a></p>
http://stackoverflow.com/questions/414160/able-commerce-pos-data-merge2Able Commerce POS Data MergeBrian Behm2009-01-05T19:11:53Z2009-07-14T13:00:01Z
<p>We are building an AbleCommerce 7 web store and trying to integrate it with an existing point-of-sale system. The product inventory will be shared between a phyical store and a web store so we will need to periodically update quantity on hand for each product to keep the POS and the web store as close to in synch as possible to avoid over selling product in either location. The POS system does have an scheduled export that will run every hour.</p>
<p>My question is, has anyone had any experience with synchronizing data with an Able Commerce 7 web store and would you have any advice on an approach?</p>
<p>Here are the approaches that we are currently considering:</p>
<ol>
<li>Grab exported product data from the POS system and determine which products need to be updated. Make calls to a custom-built web service residing on the server with AbleCommerce to call AbleCommerce APIs and update the web store appropriately.</li>
<li>Able Commerce does have a Data Port utility that can import/export web store data via the Able Commerce XML format. This would provide all of the merging logic but there doesn't appear to be a way to programmatically kick off the merge process. Their utility is a compiled Windows application. There is no command-line interface that we are aware of. The Data Port utility calls an ASHX handler on the server.</li>
<li>Take an approach similar to #1 above but attempt to use the Data Port ASHX handler to update the products instead of using our own custom web service. Currently there is no documentation for interfacing with the ASHX handler that we are aware of.</li>
</ol>
<p>Thanks,
Brian</p>
http://stackoverflow.com/questions/754948/dbf-large-char-field1DBF Large Char Field...Brian Behm2009-04-16T06:23:06Z2009-06-13T23:00:19Z
<p>I have a database file that I beleive was created with Clipper but can't say for sure (I have .ntx files for indexes which I understand is what Clipper uses). I am trying to create a C# application that will read this database using the System.Data.OleDB namespace.</p>
<p>For the most part I can sucessfully read the contents of the tables there is one field that I cannot. This field called CTRLNUMS that is defined as a CHAR(750). I have read various articles found through Google searches that suggest field larger than 255 chars have to be read through a different process than the normal assignment to a string variable. So far I have not been successful in an approach that I have found.</p>
<p>The following is a sample code snippet I am using to read the table and includes two options I used to read the CTRLNUMS field. Both options resulted in 238 characters being returned even though there is 750 characters stored in the field.</p>
<p>Here is my connection string:</p>
<p>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\datadir;Extended Properties=DBASE IV;</p>
<p>Can anyone tell me the secret to reading larger fields from a DBF file?</p>
<pre><code>using (OleDbConnection conn = new OleDbConnection(connectionString))
{
conn.Open();
using (OleDbCommand cmd = new OleDbCommand())
{
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = string.Format("SELECT ITEM,CTRLNUMS FROM STUFF WHERE ITEM = '{0}'", stuffId);
using (OleDbDataReader dr = cmd.ExecuteReader())
{
if (dr.Read())
{
stuff.StuffId = dr["ITEM"].ToString();
// OPTION 1
string ctrlNums = dr["CTRLNUMS"].ToString();
// OPTION 2
char[] buffer = new char[750];
int index = 0;
int readSize = 5;
while (index < 750)
{
long charsRead = dr.GetChars(dr.GetOrdinal("CTRLNUMS"), index, buffer, index, readSize);
index += (int)charsRead;
if (charsRead < readSize)
{
break;
}
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/754663/working-with-the-visual-fox-pro-oledb/754960#7549602Answer by Brian Behm for Working with the Visual Fox Pro OleDbBrian Behm2009-04-16T06:28:15Z2009-04-16T06:28:15Z<p>I ran into a similar problem when I as developing on my 64-bit Vista machine. I found out that in order to use the Microsoft Jet OleDB or FoxPro OleDB provider I had to set the properties of my .Net project to specifically target 32-bit processors since there is no 64-bit version of these providers.</p>
<p>Anyway, not sure if this is part of the problem with the target machines using your libary but thought I would offer it up.</p>
<p>Brian</p>
http://stackoverflow.com/questions/738364/what-files-do-i-need-to-deploy-for-asp-net-mvc/739070#7390702Answer by Brian Behm for What files do I need to deploy for ASP.NET mvc?Brian Behm2009-04-10T22:29:59Z2009-04-10T22:29:59Z<p>Using the Build / Publish approach is the best to ensure you have the files you need. Before building though, if you don't have ASP.NET 3.5 SP1 installed on your server, make sure you go into the references in your project for the following assemblies and set the to "Copy Local" in each of their respective property pages.</p>
<p>System.Web.MVC
System.Web.Routing
System.Web.Abstractions</p>
<p>This will make sure that each of these assemblies is copied to your "bin" folder on the published site.</p>
<p>Brian</p>
http://stackoverflow.com/questions/738999/asp-net-mvc-rtm-project-type-is-not-supported/739058#7390581Answer by Brian Behm for ASP.net MVC RTM - "project type is not supported"Brian Behm2009-04-10T22:25:41Z2009-04-10T22:25:41Z<p>Not sure if this is the same issue but going through the uninstall and re-install of beta and RC versions and finally the RTW I ended up with two ASP.NET MVC Web Application icons in my "File/New/Project" dialog.</p>
<p>If I click the first link, my project does not load correctly. But if I click the second one everythign works great.</p>
<p>I haven't dug into the templates folder to see if there is a remnant from a previous version or what.</p>
<p>Brian</p>
http://stackoverflow.com/questions/509009/foxpro-fxp-files2FoxPro fxp filesBrian Behm2009-02-03T21:39:19Z2009-02-07T18:59:48Z
<p>I know very little about FoxPro but have a project that requires working with a third-party application, based on FoxPro, and a .fxp file. The thrid-party app is a point of sale system and the makers of the software have provided a .fxp file that allows us to export product information into an XML format.</p>
<p>The problem that I am running into is that the software has no way to schedule the .fxp file to run at a regular interval which we need to keep that XML file updated.</p>
<p>My question is, can a .fxp file be executed outside of FoxPro?</p>
<p>Alternatively, can I create my own FoxPro application to execute their .fxp file and have it connect to the POS database to perform the export.</p>
<p>Any ideas or alternatives are welcome.</p>
<p>Thanks,
Brian</p>
http://stackoverflow.com/questions/496470/paging-sorting-grids-with-asp-net-mvc/496670#4966703Answer by Brian Behm for Paging & Sorting grids with ASP.Net MVCBrian Behm2009-01-30T18:43:22Z2009-01-30T18:43:22Z<p>There are extensions and HTML Helpers available for this but yes alot of it is "roll-your-own".</p>
<p>Here a an example...</p>
<p><a href="http://blogs.taiga.nl/martijn/archive/2008/08/27/paging-with-asp.net-mvc.aspx" rel="nofollow">http://blogs.taiga.nl/martijn/archive/2008/08/27/paging-with-asp.net-mvc.aspx</a></p>
http://stackoverflow.com/questions/319223/good-url-strategy-for-sitemap-and-seo/319246#3192462Answer by Brian Behm for Good URL strategy for sitemap and SEOBrian Behm2008-11-25T23:25:14Z2008-11-25T23:25:14Z<p>I think the first example (example.com/product/1234.product-category.product-name) is the best format but I would consider changing then "." to "-". I am just thinking that if somehow a product name ends in something that triggers an different handler on your server like ".php" or ".jsp" you might have some undesired effects.</p>
<blockquote>
<p>Where should the product ID go in the URL? Both in terms of readability by the user but also in SEO terms </p>
</blockquote>
<p>I don't really think it matters too much where the product ID goes but as far as the user reading it, I think they pay attention to the end of the line so I would put the ID first leaving the most descriptive part (the product name) at the end.</p>
<blockquote>
<p>Should I include the user's name (as he/she made that product) ?</p>
</blockquote>
<p>Not sure if you allow your users to change user names, but if you did I would leave the user name out. An example would be someone getting married and changing their last name. This would hurt your SEO since the URL would change but search engines would have already indexed it the old way. You'd have to put some permantent redirects in place to handle this which could be avoided by just leaving the username out.</p>
<blockquote>
<p>Should I attempt to remove the ID altogether? </p>
</blockquote>
<p>You should leave the ID in the URL in the event that two products have the same name and your algorithm to generate the URL creates a duplicate link.</p>
http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them/319227#3192273Answer by Brian Behm for Where do you declare variables? The top of a method or when you need them?Brian Behm2008-11-25T23:12:06Z2008-11-25T23:12:06Z<p>Right where you need them. That way they may never need to be instantiated if the code branches a different direction and never needs the variable.</p>
http://stackoverflow.com/questions/47234/best-asp-net-e-commerce-framework-aspdotnetstorefront-ablecommerce-bvcommerce/319222#3192222Answer by Brian Behm for Best ASP.NET E-Commerce Framework (aspDotNetStoreFront, AbleCommerce, BVCommerce, MediaChase,...)Brian Behm2008-11-25T23:10:37Z2008-11-25T23:10:37Z<p>We are evaluating AbleCommerce and the biggest drawback that we have found so far is the lack of a Content Mangement System (CMS) for page management. You can customize just about anything but if you just want to add a page to the menu with some content it seems to be very painful.</p>
<p><a href="http://www.DotShoppingCart.com" rel="nofollow">DotShoppingCart.com</a> has a seemingly nice solution for CMS but we are not far enough into our eveluation to determine if they rest of the site is customizable.</p>
http://stackoverflow.com/questions/310458/best-approach-for-styling-navigation-using-unordered-lists-in-asp-net2Best approach for styling navigation using unordered lists in ASP.NETBrian Behm2008-11-21T22:44:30Z2008-11-22T04:34:12Z
<p>In ASP.NET (not MVC), what is the best approach to programmatically setting styles on an unordered list used for navigation so the appropriate menu item is styled as the active item if that page is being viewed? </p>
<p>This would most likely be used in conjunction with a MasterPage.</p>
http://stackoverflow.com/questions/304448/keeping-track-of-web-site-configuration-details-action-items-documentation2Keeping track of web site configuration details, action items, documentation?Brian Behm2008-11-20T05:53:24Z2008-11-20T21:45:00Z
<p>Does anyone know of an application (hosted or otherwise) that I could use to keep track of details for a number of web sites? I manage 50+ web sites that range from custom solutions to open source platforms (WordPress, Joomla). I started to write my own but wanted to see if there is anything out there already.</p>
<p>Here are some of the features that I would like:</p>
<ul>
<li><p>Be able to keep track of the latest version of software so I know which sites need to be updated when patches are available. </p></li>
<li><p>I would like to add tasks to remind me of period maintenance items that need to be performed.</p></li>
<li><p>Add notes about the site. (documentation, feature requests, etc)</p></li>
</ul>
<p>Thanks,
Brian</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306835#3068355Answer by Brian Behm for Must haves for developers officeBrian Behm2008-11-20T20:55:09Z2008-11-20T20:55:09Z<ul>
<li>Multiple monitors - at least two</li>
<li>Dart board</li>
<li>Stress ball from a recent conference</li>
<li>Quiet environment</li>
<li>Conference room or a "war room" that is available when you need to have a quick discussion. Not tied up with sales types.</li>
</ul>
http://stackoverflow.com/questions/306339/svn-vss-why-is-one-better-than-the-other/306523#3065231Answer by Brian Behm for SVN? VSS? Why is one better than the other?Brian Behm2008-11-20T19:18:39Z2008-11-20T19:18:39Z<p>You should run from VSS as soon as you can. If you haven't had problems with it in the past then you are due from some. It's like a Russian Roulette time-bomb - you never know when it's going to blow.</p>
<p>SVN is a great tool and very easy to setup, manage. Administration tools for backing up or replicating are very nice.</p>
<p>I would recommend SVN over VSS anyday.</p>
<p>Brian</p>
http://stackoverflow.com/questions/304341/anyone-uses-asp-net-membership/304539#3045394Answer by Brian Behm for Anyone uses ASP .NET Membership?Brian Behm2008-11-20T07:16:21Z2008-11-20T07:16:21Z<p>I use it in most of my projects. There have been times where it doesn't do what I want it to but there is almost always a way around that. We have used it with Active Directory, Novell EDirectory, and Forms Authentication.</p>
<p>The provider model is great for creating those work arounds. Much better then rolling your own membership code.</p>
<p>The <a href="http://www.asp.net/downloads/sandbox/table-profile-provider-samples/" rel="nofollow">Table Profile Provider</a> is a great tool for getting around the ineffient out-of-the-box implementation of SqlProfileProvider.</p>
<p>There is another product that I have heard of but never tried, called <a href="http://www.visual-guard.com/" rel="nofollow">Visual Guard</a>. I would be intersted in any comments anyone has on that.</p>
http://stackoverflow.com/questions/301291/a-career-in-programming-and-now-for-something-completely-different/304527#3045271Answer by Brian Behm for A career in programming - and now for something completely different?Brian Behm2008-11-20T07:06:29Z2008-11-20T07:06:29Z<p>At work the running joke is that programmers will eventually be irrelevent with declaritve "programming" tools and code generators. I called dibs on the Wal-Mart greeter job. Another guy responded you can have that, I want the Best Buy greeter job because of the discounts on consumer electronics, computers, etc.</p>
<p>There has also always been something intriguing about saying, "Would you like fries with that"?</p>
<p>Brian</p>
http://stackoverflow.com/questions/304430/sql-datareader-missing-a-row-in-loop/304482#3044821Answer by Brian Behm for SQL DataReader missing a row in loopBrian Behm2008-11-20T06:26:18Z2008-11-20T06:26:18Z<p>The code looks correct to me. I think you'd definitely want to step through a debugger to see how many rows are returned from ExecuteReader. One comment I have is that the "if (dr.HasRows)" is kinda redundant since the "while (dr.Read())" will give you the same effect.</p>
<p>Another question I would have is do you know if you are missing the first or last record?</p>
<p>Brian</p>
http://stackoverflow.com/questions/304453/virtual-pc-2007-or-hyper-v-for-personal-desktop-use/304464#3044641Answer by Brian Behm for Virtual PC 2007 or Hyper-V for personal desktop use?Brian Behm2008-11-20T06:08:05Z2008-11-20T06:08:05Z<p>Virtual PC 2007 should be adequate for personal desktop use? Hyper-V has processor requirements that you would have to consider before using on your desktop.</p>
http://stackoverflow.com/questions/304455/i-need-help-with-message-boxes-in-asp-net/304459#3044593Answer by Brian Behm for I need help with message boxes in ASP.NETBrian Behm2008-11-20T06:03:52Z2008-11-20T06:03:52Z<p>You could use the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ConfirmButton/ConfirmButton.aspx" rel="nofollow">Microsoft AJAX Confirmation Button</a></p>
<p>Brian</p>
http://stackoverflow.com/questions/304351/juggle-between-programming-jobs-and-hobby-project-how-to-do-it/304457#3044573Answer by Brian Behm for Juggle between programming jobs and hobby project ? How to do it ?Brian Behm2008-11-20T06:01:33Z2008-11-20T06:01:33Z<p>One thing you might do is find someone you can work with on the project. I think team development tends push you so that you don't hold up the rest of the team. You also can get more progress if you divide and conquer. Seeing progress towards the end goal is a great motivator.</p>
<p>Like Chad Braun-Duin said above. Make sure you have the plan laid out and that there is a goal.</p>
http://stackoverflow.com/questions/496470/paging-sorting-grids-with-asp-net-mvc/496670#496670Comment by Brian Behm on Paging & Sorting grids with ASP.Net MVCBrian Behm2009-10-09T16:27:48Z2009-10-09T16:27:48ZLooks like his blog changed to WordPress. Here's the link...
<a href="http://blogs.taiga.nl/martijn/2008/08/27/paging-with-aspnet-mvc/" rel="nofollow">blogs.taiga.nl/martijn/2008/…</a>
http://stackoverflow.com/questions/1495708/clear-form-button-in-html-do-we-really-need-this/1495722#1495722Comment by Brian Behm on Clear form button in HTML...do we really need this?Brian Behm2009-10-01T02:53:33Z2009-10-01T02:53:33ZGood point @Evernoob, @Anthony had about the same comment. That is about the only case that I could really see using it but even then it's all or nothing. If you've made alot of changes and want to undo them all it will work for that but if you've made alot of changes and then accidentally hit the reset instead of submit then you have that "Oh crap!" moment.http://stackoverflow.com/questions/754948/dbf-large-char-field/756787#756787Comment by Brian Behm on DBF Large Char Field...Brian Behm2009-04-17T02:56:39Z2009-04-17T02:56:39ZI found this library that does a pretty good job of parsing a DBF file. It doesn't do the calculation as noted above that was an easy code change to the FieldLength property. <a href="http://code.google.com/p/dotnetdbf/" rel="nofollow">code.google.com/p/dotnetdbf</a>
http://stackoverflow.com/questions/754948/dbf-large-char-field/756787#756787Comment by Brian Behm on DBF Large Char Field...Brian Behm2009-04-17T00:25:54Z2009-04-17T00:25:54ZI pulled out a hex editor and looked at the contents of the file. The byte containing the field length is 0xEE or decimal 238. So Marc, your formula does work out: 256*2+238 = 750
Now to make the Jet OLEDB provider play along and use those calculations is another story.http://stackoverflow.com/questions/754948/dbf-large-char-field/756787#756787Comment by Brian Behm on DBF Large Char Field...Brian Behm2009-04-16T18:40:20Z2009-04-16T18:40:20ZActually, that explains why this field is set with 2 decimal places. I would be interested in seeing the class you mentioned. Is it online somewhere?
http://stackoverflow.com/questions/310458/best-approach-for-styling-navigation-using-unordered-lists-in-asp-net/310535#310535Comment by Brian Behm on Best approach for styling navigation using unordered lists in ASP.NETBrian Behm2008-11-22T15:00:25Z2008-11-22T15:00:25ZIf you set the visibility property in CSS, the menu will still be visible in the markup but does not show in the browser. This will allow people looking at your markup to know that there are more menus available. I think the server side visibility is a better approach.http://stackoverflow.com/questions/310458/best-approach-for-styling-navigation-using-unordered-lists-in-asp-net/310477#310477Comment by Brian Behm on Best approach for styling navigation using unordered lists in ASP.NETBrian Behm2008-11-21T22:58:41Z2008-11-21T22:58:41ZHow would use use themes? This would be an ASP.NET 2.0 application (VS 2008 .Net 3.5)