User Chris Brandsma - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:04:05Zhttp://stackoverflow.com/feeds/user/9443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373589/geometry-column-stgeomfromtext-and-srid-what-is-an-srid1Geometry column: STGeomFromText and SRID (what is an SRID?)Chris Brandsma2008-12-17T03:37:52Z2009-10-28T04:44:47Z
<p>I'm playing with the new geography column in SQL Server 2008 and the STGeomFromText function. Here is my code (works with AdventureWorks2008)</p>
<p>DECLARE @region geography;
set @region = geography::STGeomFromText('POLYGON((
-80.0 50.0, -90.0 50.0,
-90.0 25.0, -80.0 25.0,
-80.0 50.0))', 4326);</p>
<p>SELECT @region;</p>
<p>My question is about the 4326 in the code. It is supposed to be a spacial Reference ID. When I go to MSDN there isn't a lot on it. If I change the value to 56 I get an error telling me the value must be in the sys.spatial_reference_systems table.</p>
<p>You can look at that table by executing:
select * from sys.spatial_reference_systems </p>
<p>There is a well_known_text column in that table, but it doesn't tell me much. The value for 4326 is:
GEOGCS["WGS 84", DATUM["World Geodetic System 1984", ELLIPSOID["WGS 84", 6378137, 298.257223563]], PRIMEM["Greenwich", 0], UNIT["Degree", 0.0174532925199433]]</p>
<p>Can anyone explain this mystery to me? What is the SRID?</p>
http://stackoverflow.com/questions/795504/list-of-study-topics/795718#7957180Answer by Chris Brandsma for List of study topicsChris Brandsma2009-04-27T23:48:32Z2009-10-07T18:22:38Z<p>I would learn about web development if I were you. That is where a lot of jobs are going these days, it requires multiple skills, and will stretch your understanding of how software should be written (do to the stateless nature of the web).</p>
http://stackoverflow.com/questions/1480205/what-is-the-best-way-of-subscribing-to-events-in-asp-net/1480249#14802490Answer by Chris Brandsma for What is the best way of subscribing to events in ASP.NET?Chris Brandsma2009-09-26T02:16:58Z2009-09-26T02:16:58Z<p>My favorite:</p>
<pre><code>myButton.Click += myButton_Click;
</code></pre>
<p>The EventHandler is not actually needed. Also, if you are C# 3.0, you can go lambda on it:</p>
<pre><code>myButton.Click += (x,a)=>DoStuff(); // something like that.
</code></pre>
<p>But really, it isn't worth worrying about too much.</p>
http://stackoverflow.com/questions/1480186/what-is-in-your-javascript-toolchain/1480243#14802432Answer by Chris Brandsma for What is in your JavaScript toolchain?Chris Brandsma2009-09-26T02:13:07Z2009-09-26T02:13:07Z<p>I'm on a slightly different technology stack (asp.net mvc), but here it goes:</p>
<ul>
<li>IDE: Visual Studio 2008 + ReSharper, Asp.Net MVC</li>
<li>Editor: Notepad++ (most of my time is in VS, but Notepad++ has better syntax highlighting for JavaScript)</li>
<li>Dev Browser: FireFox+Firebug+YSlow+PageSpeed+FireCookie
Also add Developer Toolbar</li>
<li>Other Browsers: IE8, Chrome 3, Safari, Opera (rarely used), and IE6 and IE7 via virtual machines (freely downloadable Virtual PC images from Microsoft).</li>
<li>Post-Processing: JLint and YUI Compressor. I have a build task do the YUI compressor part.</li>
<li>JavaScript Framework: JQuery + JQuery UI</li>
<li>Other stuff: JQuery Validation, JSON2</li>
</ul>
http://stackoverflow.com/questions/753851/how-to-auto-update-windows-mobile-application2How to Auto-Update Windows Mobile applicationChris Brandsma2009-04-15T21:41:47Z2009-09-23T00:30:49Z
<p>I have a .net cf 3.5 Windows Mobile application that my client wants to have autoupdate features.</p>
<p>Here is what I have so far:</p>
<ol>
<li>create a CAB using the Smart Device CAB Project (is this good enough, or should I be doing something else here)</li>
</ol>
<p>2.Get the application version number</p>
<pre><code>Assembly.GetExecutingAssembly().GetName().Version.ToString();
</code></pre>
<ol>
<li>Call a WCF web service for to do a version number look up.</li>
<li>Download a new version of the cab file.</li>
<li>???</li>
<li>Execute WCELoad.exe on the CAB file</li>
<li>Profit</li>
</ol>
http://stackoverflow.com/questions/1395258/speeding-up-a-web-service/1397456#13974561Answer by Chris Brandsma for Speeding up a Web ServiceChris Brandsma2009-09-09T03:58:30Z2009-09-09T03:58:30Z<p>Another good profiler is the <a href="http://www.eqatec.com/tools/profiler" rel="nofollow">EQATEC Profiler</a>. I did a write up on it here: <a href="http://elegantcode.com/2009/07/02/eqatec-profiler-and-net-cf-profiling-and-regular-net/" rel="nofollow">http://elegantcode.com/2009/07/02/eqatec-profiler-and-net-cf-profiling-and-regular-net/</a></p>
<p>And it works find for .net CF projects. But this will allow you to see if there performance issues in unexpected places.</p>
http://stackoverflow.com/questions/1397413/object-oriented-approach-for-c/1397441#13974412Answer by Chris Brandsma for Object Oriented Approach for C#Chris Brandsma2009-09-09T03:53:00Z2009-09-09T03:53:00Z<p>1) Don't use ArrayList, it was depreciated as of .net 2.0. You should use List, IList, or Dictionary.</p>
<p>Also, Customer sure seems like concrete type. Are you going to have multiple Customer classes that all inherit from it? If not, drop the Abstract. Same goes for your other classes.</p>
<p>2) Look up Repository objects and LazyLoading. Davy Bryon has a good series on building your own DAL. <a href="http://davybrion.com/blog/2009/08/build-your-own-data-access-layer-lazy-loading/" rel="nofollow">http://davybrion.com/blog/2009/08/build-your-own-data-access-layer-lazy-loading/</a></p>
<p>But either the customer should have all of the Tenders right away, or you should have a service that gets them for you. I'm not in favor of having Entities know about their persistence. </p>
<p>Anyway, the general approach is to have a separate Repository class that has the methods needed to get the data you need.</p>
<pre><code>public class CustomerRepository
{
public List<Customer> GetAllCustomers() { .... }
public List<Tenders> GetTendersForCustomer(Customer customer) { .... }
}
</code></pre>
http://stackoverflow.com/questions/1374755/refactoring-an-if-else-tree/1374851#13748511Answer by Chris Brandsma for Refactoring an If else treeChris Brandsma2009-09-03T17:33:31Z2009-09-03T17:33:31Z<pre><code> singleLoadControl.Visible = false;
singleTruckControl.Visible = false;
multiTruckControl.Visible = false;
multiLoadControl.Visible = false;
singleLoadControl.Visible = (PostingType == PostingTypes.Loads && !IsMultiPost);
singleTruckControl.Visible = (PostingType == PostingTypes.Trucks && !IsMultiPost);
multiLoadControl.Visible = (PostingType == PostingTypes.Loads && IsMultiPost);
multiTruckControl.Visible = (PostingType == PostingTypes.Trucks && IsMultiPost);
</code></pre>
http://stackoverflow.com/questions/1370543/fill-an-array-or-arraylist-from-sqldatareader/1370566#13705660Answer by Chris Brandsma for Fill an array (or arraylist) from SqlDataReaderChris Brandsma2009-09-02T22:53:20Z2009-09-02T22:53:20Z<p>You have to loop, but there are projects that can make it simpler. Also, try not to use ArrayList, use List instead.</p>
<p>You can checkout FluentAdo for one: <a href="http://fluentado.codeplex.com" rel="nofollow">http://fluentado.codeplex.com</a></p>
<pre><code> public IList<UserAccount> List()
{
var list = new FluentCommand<UserAccount>("SELECT ID, UserName, Password FROM UserAccount")
.SetMap(reader => new UserAccount
{
ID = reader.GetInt("ID"),
Password = reader.GetString("Password"),
UserName = reader.GetString("UserName"),
})
.AsList();
return list;
}
</code></pre>
http://stackoverflow.com/questions/1338175/nhibernate-and-mysql-is-inserting-and-selecting-not-updating1NHibernate and MySql is inserting and Selecting, not updatingChris Brandsma2009-08-26T23:49:22Z2009-08-26T23:49:22Z
<p>Something strange is going on with NHibernate for me. I can select, and I can insert. But I can't do and update against MySql.</p>
<p>Here is my domain class</p>
<pre><code>public class UserAccount
{
public virtual int Id { get; set; }
public virtual string UserName { get; set; }
public virtual string Password { get; set; }
public virtual bool Enabled { get; set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; set; }
public virtual string Phone { get; set; }
public virtual DateTime? DeletedDate { get; set; }
public virtual UserAccount DeletedBy { get; set; }
}
</code></pre>
<p>Fluent Mapping </p>
<pre><code>public class UserAccountMap : ClassMap<UserAccount>
{
public UserAccountMap()
{
Table("UserAccount");
Id(x => x.Id);
Map(x => x.UserName);
Map(x => x.Password);
Map(x => x.FirstName);
Map(x => x.LastName);
Map(x => x.Phone);
Map(x => x.DeletedDate);
Map(x => x.Enabled);
}
}
</code></pre>
<p>Here is how I'm creating my Session Factory</p>
<pre><code> var dbconfig = MySQLConfiguration
.Standard
.ShowSql()
.ConnectionString(a => a.FromAppSetting("MySqlConnStr"));
FluentConfiguration config = Fluently.Configure()
.Database(dbconfig)
.Mappings(m =>
{
var mapping = m.FluentMappings.AddFromAssemblyOf<TransactionDetail>();
mapping.ExportTo(mappingdir);
});
</code></pre>
<p>and this is my NHibernate code:</p>
<pre><code> using (var trans = Session.BeginTransaction())
{
var user = GetById(userId);
user.Enabled = false;
user.DeletedDate = DateTime.Now;
user.UserName = "deleted_" + user.UserName;
user.Password = "--removed--";
Session.Update(user);
trans.Commit();
}
</code></pre>
<p>No exceptions are being thrown. No queries are being logged. Nothing.</p>
http://stackoverflow.com/questions/1324458/winforms-numericupdown-net-cf-3-5-and-real-numbers/1328930#13289300Answer by Chris Brandsma for WinForms: NumericUpDown (.NET CF 3.5) and real numbersChris Brandsma2009-08-25T15:14:11Z2009-08-25T15:14:11Z<p>I just use a textbox, then override the OnKeyPress event. This code has worked for me in the past, but is only good for groups that write 1234.56, not 1234,56.</p>
<pre><code>public partial class NumberTextBox : TextBox
{
public NumberTextBox()
{
InitializeComponent();
}
public decimal Value
{
get
{
try
{
return decimal.Parse(Text);
}
catch (Exception)
{
return -1;
}
}
}
public int ValueInt
{
get { return int.Parse(Text); }
}
protected override void OnKeyPress(KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar)
&& !char.IsDigit(e.KeyChar)
&& e.KeyChar != '.')
{
e.Handled = true;
}
// only allow one decimal point
if (e.KeyChar == '.' && (this).Text.IndexOf('.') > -1)
{
e.Handled = true;
}
base.OnKeyPress(e);
}
public void AppendString(string value)
{
if (string.IsNullOrEmpty(value))
{
Text = string.Empty;
}
else
{
if (value == "." && Text.IndexOf('.') > -1)
return;
Text += value;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1323501/net-compact-fw-3-5-where-is-the-numeric-updown-control/1323703#13237030Answer by Chris Brandsma for .NET Compact Fw 3.5: Where is the numeric updown control?Chris Brandsma2009-08-24T17:31:03Z2009-08-24T17:31:03Z<p>It is there, in the toolbox. But you might have to look under "All Device Control"</p>
<p>The class in in System.Windows.Forms.NumericUpDown</p>
http://stackoverflow.com/questions/1303234/windows-mobile-net-compact-framework-how-to-bind-generic-lists-to-datagrid/1323218#13232181Answer by Chris Brandsma for Windows Mobile / .Net Compact Framework - How to bind generic lists to datagridChris Brandsma2009-08-24T15:57:19Z2009-08-24T15:57:19Z<p>You can just add the list to the datasource, but then you need to do some more work to get the columns to look the way you want.</p>
<p>I do this all the time actually, but it is a little involved. Note that my example is using .net 3.5 and some of the C# 3.0 features to make it easier.</p>
<p>First, here are the extension methods I'm using:</p>
<pre><code> public static T SelectedItem<T>(this DataGrid ctrl)
{
var cell = ctrl.CurrentCell;
var list = (IList<T>)ctrl.DataSource;
if (list == null)
return default(T);
if (list.Count == 0)
return default(T);
return list[cell.RowNumber];
}
private static void AddColumn(this GridColumnStylesCollection list, string header, string columnName, int width)
{
list.Add(
new DataGridTextBoxColumn
{
HeaderText = header,
MappingName = columnName,
Width = width
});
return;
}
public static void SetColumnStyles<T>(this DataGrid ctrl, T data, params ColumnStyle[] column) where T : class
{
var ts = new DataGridTableStyle();
ts.MappingName = data.GetType().Name;
for (int i = 0; i < column.Length; i++)
{
var style = column[i];
ts.GridColumnStyles.AddColumn(style.Header, style.Column, style.Width);
}
ctrl.TableStyles.Clear();
ctrl.TableStyles.Add(ts);
}
</code></pre>
<p>And this little class:</p>
<pre><code>public class ColumnStyle
{
public string Header { get; private set; }
public string Column { get; private set; }
public int Width { get; private set; }
public ColumnStyle(string header, string column, int width)
{
Header = header;
Column = column;
Width = width;
}
public ColumnStyle(string column, int width)
{
Column = column;
Header = column;
Width = width;
}
}
</code></pre>
<p>That is the setup, here is the payoff: Taking a generic list, spesifying the column names, and their widths:</p>
<pre><code> public void LoadInventoryList(IList<InventoryItemSmall> list)
{
inventoryGrid.SuspendLayout();
inventoryGrid.DataSource = list;
inventoryGrid.SetColumnStyles(list, new[]
{
new ColumnStyle("Name", 170),
new ColumnStyle("Size", 30),
new ColumnStyle("Quantity", 30)
});
inventoryGrid.ResumeLayout();
}
</code></pre>
http://stackoverflow.com/questions/1061128/mysql-hibernate-how-fix-the-error-column-reservedword-does-not-belong-to-ta/1302749#13027490Answer by Chris Brandsma for MySQL & Hibernate. How fix the error: Column 'ReservedWord' does not belong to table ReservedWords?Chris Brandsma2009-08-19T21:34:21Z2009-08-19T21:34:21Z<p>I just hit this issue as well. I ended up doing this: </p>
<p><a href="http://orbitalcoder.wordpress.com/2009/08/18/proposed-solution-for-the-nhibernate-exception-column-reserved-word-does-not-belong-to-table-reservedwords/" rel="nofollow">http://orbitalcoder.wordpress.com/2009/08/18/proposed-solution-for-the-nhibernate-exception-column-reserved-word-does-not-belong-to-table-reservedwords/</a></p>
<p>which is a code change to NHibernate, but worked for me.</p>
http://stackoverflow.com/questions/1280475/c-and-access-2000/1280483#12804830Answer by Chris Brandsma for C# and Access 2000Chris Brandsma2009-08-14T22:21:53Z2009-08-14T23:46:25Z<p>You can't use SQL Server Express?
Otherwise, MySQL is a good database.</p>
<p>But if you can't install ANYTHING (you should get into those politics sooner rather than later -- or it WILL be later), just use you existing database system.</p>
<p>Basically with Access, it cannot handle more than 5 people connected at the same time, or it will corrupt on you.</p>
http://stackoverflow.com/questions/1280252/net-assembly-diff-compare-tool-whats-available/1280529#12805291Answer by Chris Brandsma for .NET Assembly Diff / Compare Tool - What's available?Chris Brandsma2009-08-14T22:37:00Z2009-08-14T22:37:00Z<p>I believe there is a Reflector addon for that at <a href="http://www.codeplex.com/reflectoraddins" rel="nofollow">http://www.codeplex.com/reflectoraddins</a> called diff. You can try that.</p>
http://stackoverflow.com/questions/1280499/jquery-set-select-index/1280512#12805121Answer by Chris Brandsma for jQuery Set Select IndexChris Brandsma2009-08-14T22:31:11Z2009-08-14T22:31:11Z<p>Try this instead:</p>
<pre><code>$("#selectBox).val(3);
</code></pre>
<p>also, see if this helps you: </p>
<p><a href="http://elegantcode.com/2009/07/01/jquery-playing-with-select-dropdownlistcombobox/" rel="nofollow">http://elegantcode.com/2009/07/01/jquery-playing-with-select-dropdownlistcombobox/</a></p>
http://stackoverflow.com/questions/1280481/nhibernate-and-sessions-please-clarify/1280505#12805050Answer by Chris Brandsma for nhibernate and sessions, please clarifyChris Brandsma2009-08-14T22:28:36Z2009-08-14T22:28:36Z<p>In the case of NHibernate the key class is the SessionFactory, which SessionProvider is taking care of for you (if you implement it like that). Keep the SessionFactory alive, and it handles the sessions for you.</p>
<p>I've also seem people save the SessionFactory in their IoC.</p>
http://stackoverflow.com/questions/1279591/flowlayoutpanel-in-cf-net/1280494#12804941Answer by Chris Brandsma for FlowLayoutPanel in CF.NETChris Brandsma2009-08-14T22:25:52Z2009-08-14T22:25:52Z<p>You can either set Dock=DockStyle.Top on all of your controls, or you can use an OwnerDraw listbox (I use the one from OpenNetCF.com). It depends on how many items you have to display. I have found that using the OwnerDraw ListBox is faster when you have a lot of items, but the Panel approach is easier to develop.</p>
<p>One note: Call SuspendLayout before you add your controls, and ResumeLayout when you are done.</p>
http://stackoverflow.com/questions/1278800/asp-net-web-config-question/1278826#12788260Answer by Chris Brandsma for ASP.NET Web.config questionChris Brandsma2009-08-14T16:25:39Z2009-08-14T16:25:39Z<p>I don't believe there is a way to tell IIS not to use a web.config (but I could be wrong). Personally, I would add a check to my save code and rename the file.</p>
http://stackoverflow.com/questions/1275788/can-you-learn-from-following-mailing-lists/1275859#12758591Answer by Chris Brandsma for Can you learn from following mailing lists?Chris Brandsma2009-08-14T03:08:23Z2009-08-14T03:08:23Z<p>I've learned a lot from the Alt.Net mailing list, and my own local user group mailing list. One note on the local mailing list: not only is it an excellent way to learn new ideas, and keep up with what is going on, it is a great way to find local experts. People you can have over for a beer (or lesser beverage of choice) to discuss problems. For more involved issues, that is often the best way to solve them. I find that you are much more likely to find actual mentorship in these mailing lists as well -- and less RTFM (you don't get that as much when people can find out where you live).</p>
http://stackoverflow.com/questions/1241779/what-is-the-most-efficient-way-to-store-large-amounts-of-data-in-a-table-in-c/1242011#12420112Answer by Chris Brandsma for What is the most efficient way to store large amounts of data in a table in c#Chris Brandsma2009-08-06T23:08:37Z2009-08-06T23:08:37Z<p>First off, do what Dan Diplo describes. The DataTable is the underlying data structure for the DataSet class. DataSets are notorious for being inefficient with memory usage. </p>
<p>Second, for keeping things fast: don't return all 10,000 records onto one page. Show a subset at a time (like 20), in a paged grid. The less data you have to pass and parse the better.</p>
<p>Next, if possible, turn viewstate off on the grid. ViewState can balloon out your page size (2x or worse in some cases). That is an issue for both the browser (viewing the page), and the server (having to reload all of that ViewState data). Avoid it as best you can.</p>
<p>If you have to have ViewState, and performance is still and issue, move ViewState to the server, so it is not passed to the browser.</p>
http://stackoverflow.com/questions/1241204/ioc-di-container-in-a-windows-mobile-appication/1241766#12417661Answer by Chris Brandsma for IoC/DI Container in a Windows Mobile AppicationChris Brandsma2009-08-06T22:00:30Z2009-08-06T22:00:30Z<p>The OpenNetCf.net group has an IoC for Mobile here <a href="http://ioc.codeplex.com/" rel="nofollow">http://ioc.codeplex.com/</a></p>
<p>The main concern is about how much reflection you force the IoC to perform on your app. Reflection is expensive. If you use a little: no problem, if you use a lot, you could have startup issues.</p>
<p>Personally, I use a variation of Ayende's 15 line IoC in my code.</p>
<p><a href="http://ayende.com/Blog/archive/2007/10/20/Building-an-IoC-container-in-15-lines-of-code.aspx" rel="nofollow">http://ayende.com/Blog/archive/2007/10/20/Building-an-IoC-container-in-15-lines-of-code.aspx</a></p>
http://stackoverflow.com/questions/1202449/which-collections-to-store-groups-of-users/1202537#12025370Answer by Chris Brandsma for Which collection(s) to store groups of users? Chris Brandsma2009-07-29T19:35:46Z2009-07-29T19:35:46Z<p>It looks like you need a good old relational database. Throw in SQLite and go if you can.</p>
<p>Otherwise...I've sometimes done this via multiple Dictionaries and lists. You have a Dictionary of Groups, each group is a list. Then another Dictionary to store the users by a key of some sorts. Each user can exists in multiple groups that way.</p>
http://stackoverflow.com/questions/1200944/c-datagridview-have-one-column-read-from-another-database-table/1201050#12010501Answer by Chris Brandsma for C# - DataGridView - have one column read from another database table?Chris Brandsma2009-07-29T15:19:46Z2009-07-29T15:19:46Z<p>That is a pretty standard requirement. The issue isn't so much how to display data from two tables in the DataGridView, but how to setup the ComboBox in the DataGridView when you have a foreign key.</p>
<p>You might look at this article for some more info on the topic:
<a href="http://www.informit.com/articles/article.aspx?p=446453&seqNum=9" rel="nofollow">http://www.informit.com/articles/article.aspx?p=446453&seqNum=9</a></p>
http://stackoverflow.com/questions/1197307/issues-installing-windows-mobile-6-0-and-6-5/1197323#11973230Answer by Chris Brandsma for Issues Installing Windows Mobile 6.0 and 6.5Chris Brandsma2009-07-28T23:38:39Z2009-07-28T23:38:39Z<p>From what I've seen, from the .net cf side of things, there is nothing new in the api. By the look of things, the big change with 6.5 is prettier UI.</p>
<p><a href="http://blogs.msdn.com/windowsmobile/archive/2009/03/18/windows-mobile-6-5-what-s-in-for-developers.aspx" rel="nofollow">http://blogs.msdn.com/windowsmobile/archive/2009/03/18/windows-mobile-6-5-what-s-in-for-developers.aspx</a></p>
http://stackoverflow.com/questions/1197258/winform-custom-controls-now-or-later/1197309#11973091Answer by Chris Brandsma for WinForm custom controls: now or later?Chris Brandsma2009-07-28T23:34:33Z2009-07-28T23:34:33Z<p>Just use the standard controls. Keep it simple, Keep it simple, keep it simple. Also know that if you are still programming next year (hopefully on other projects), you will look back at this code in shame -- but that is a good thing.</p>
http://stackoverflow.com/questions/1190276/storing-settings-xml-vs-sqlite/1190432#11904321Answer by Chris Brandsma for Storing settings: XML vs. SQLite?Chris Brandsma2009-07-27T20:28:26Z2009-07-27T20:28:26Z<p>Looks like you have two separate applications here: a web server and a desktop client (because that is traditionally where these things run), each with its own storage needs.</p>
<p>On the server side: go with a relational data store, not Xml. Basically at some point you need to keep user data separate from other user data on the server. XML is not a good store for that. </p>
<p>On the client: it doesn't really matter. Xml will probably be easier for you to manipulate. And don't think that because you are using one technology in one setting, you have to use it in the other. </p>
http://stackoverflow.com/questions/1166811/create-monochrome-bitmap-in-compact-framework/1184781#11847810Answer by Chris Brandsma for Create monochrome bitmap in Compact FrameworkChris Brandsma2009-07-26T14:56:24Z2009-07-26T14:56:24Z<p>In the <a href="http://www.opennetcf.com/" rel="nofollow">OpenNetCf</a> Smart Device Framework library (there is a free version), they have their own Bitmap class (BitmapEx). While I haven't tried what you are trying to do, you might check out their implementation. (note: I do have to do this in the next week, so I will probably update this later)</p>
http://stackoverflow.com/questions/1176379/windows-mobile-controlling-scroll-bar-with-finger/1184751#11847510Answer by Chris Brandsma for Windows mobile controlling scroll bar with fingerChris Brandsma2009-07-26T14:43:21Z2009-07-26T14:43:21Z<p>My answer could be classified as subjective. I try to now show the scroll bar when possible for just that reason. On most devices that have touch screen, you can scroll using you finger (and I'm a somewhat large guy -- 6'3" with farmer kid hands).</p>
<p>But if you are displaying a grid, that isn't always possible. The results can go off the screen very easily. Oh well, grab a pen and hit the scrollbar.</p>
<p>Other screen elements that can help: tab control. separate your controls into groups and put each group on a separate tab. I also do a lot of wizards with LARGE next and previous buttons.</p>
<p>But in all of this, if it is designed to be stylus free, just pray the user doesn't have to type anything using the screen soft keyboard. That just doesn't work with a finger.</p>
http://stackoverflow.com/questions/1397413/object-oriented-approach-for-c/1397441#1397441Comment by Chris Brandsma on Object Oriented Approach for C#Chris Brandsma2009-09-09T04:54:29Z2009-09-09T04:54:29ZYou are looking for an ActiveRecord style pattern here. Traditionally that is bad design because you are mixing responsibilities in your objects. Single Responsibility is the key. An object either holds its data, or it know how to persist itself. Try not to mix the two. The end result is that you get code that is very hard to test, but also hard to modify -- there is too much stuff going on in the code.http://stackoverflow.com/questions/1374755/refactoring-an-if-else-tree/1374851#1374851Comment by Chris Brandsma on Refactoring an If else treeChris Brandsma2009-09-04T00:13:05Z2009-09-04T00:13:05ZAbsolutely yes. But something in the post'ers answers made me think this was part of a lot more code. So I left them in.http://stackoverflow.com/questions/1338175/nhibernate-and-mysql-is-inserting-and-selecting-not-updatingComment by Chris Brandsma on NHibernate and MySql is inserting and Selecting, not updatingChris Brandsma2009-08-27T02:47:27Z2009-08-27T02:47:27ZNope, but that is probably my next step. I do have ShowSql turned on, so I can see the sql being executed, and no update statement is being sent. Personally I think I have a SessionFactory issue.http://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers/423168#423168Comment by Chris Brandsma on Enterprise Library Unity vs Other IoC ContainersChris Brandsma2009-08-18T15:17:33Z2009-08-18T15:17:33ZHi Nicholas: as for C# 3 support, everything that Autofac does already. :)
For initialization, I want easy support for singletons/non singletons, and per-session initialization. Finally, I want easy ways to reference by custom name. (something that is a PITA in StructureMap).
The final feature that I like more now than when I wrote this originally: AutoMocking. I don't use it all the time, but it is very nice to have arount.http://stackoverflow.com/questions/1280475/c-and-access-2000/1280483#1280483Comment by Chris Brandsma on C# and Access 2000Chris Brandsma2009-08-16T14:51:08Z2009-08-16T14:51:08Z@Tony, typically the issue is when two people make changes to the same table at the same time. Network errors and excessive latency can also cause errors. If your users are using the database at different times, or modifying different tables in the database, you could be ok.
In one case I worked on the same access database was used across branches that were 1000 miles apart. The Access corrupted weekly there.
In case others are reading, here is a Microsoft article on how to avoid corruption issues: <a href="http://support.microsoft.com/kb/300216/" rel="nofollow">support.microsoft.com/kb/300216</a>http://stackoverflow.com/questions/1280475/c-and-access-2000/1280483#1280483Comment by Chris Brandsma on C# and Access 2000Chris Brandsma2009-08-15T21:12:08Z2009-08-15T21:12:08ZCongratulations. You are beating the odds.http://stackoverflow.com/questions/1241779/what-is-the-most-efficient-way-to-store-large-amounts-of-data-in-a-table-in-c/1242011#1242011Comment by Chris Brandsma on What is the most efficient way to store large amounts of data in a table in c#Chris Brandsma2009-08-06T23:43:50Z2009-08-06T23:43:50Z<a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx" rel="nofollow">weblogs.asp.net/infinitiesloop/archive/…</a> and <a href="http://msdn.microsoft.com/en-us/library/ms998549.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> are a good spot to start with.http://stackoverflow.com/questions/1190276/storing-settings-xml-vs-sqlite/1190432#1190432Comment by Chris Brandsma on Storing settings: XML vs. SQLite?Chris Brandsma2009-07-27T22:37:14Z2009-07-27T22:37:14ZPersistence is an issue with the web and files. It is often easier to store the data in a database, then -- if you need to -- transform the results to xml. Databases make persistence easy (ok, easier).
http://stackoverflow.com/questions/1183330/how-can-i-execute-an-external-function-when-an-element-is-clicked/1183359#1183359Comment by Chris Brandsma on How can I execute an external function when an element is clicked?Chris Brandsma2009-07-27T15:33:21Z2009-07-27T15:33:21Z@Shog9, thank you for expanding the example.http://stackoverflow.com/questions/1168451/is-shifting-bits-faster-than-multiplying-and-dividing-in-java-net/1168495#1168495Comment by Chris Brandsma on Is shifting bits faster than multiplying and dividing in Java? .NET?Chris Brandsma2009-07-22T21:51:04Z2009-07-22T21:51:04ZJavaScript does not have an int data type, just double. That might be the reason for the performance issue with bit shifting.http://stackoverflow.com/questions/1167409/where-should-asp-net-apps-store-data-files/1167420#1167420Comment by Chris Brandsma on Where should ASP.NET apps store data files?Chris Brandsma2009-07-22T21:44:39Z2009-07-22T21:44:39ZBecause, in general, people only worry about sharing files when they are dealing with web farms. Since you are not, you have an easy answer: stick everything in App_Data and not worry about it.http://stackoverflow.com/questions/1167258/how-to-develop-good-debugging-skills/1167324#1167324Comment by Chris Brandsma on How to develop good debugging skills?Chris Brandsma2009-07-22T20:40:50Z2009-07-22T20:40:50ZJohn also has a book: Debugging .Net 2.0 Applications from Microsoft Press.http://stackoverflow.com/questions/1167409/where-should-asp-net-apps-store-data-files/1167420#1167420Comment by Chris Brandsma on Where should ASP.NET apps store data files?Chris Brandsma2009-07-22T19:52:39Z2009-07-22T19:52:39ZIf you are dealing with a single web server...App_Data
http://stackoverflow.com/questions/1167409/where-should-asp-net-apps-store-data-files/1167420#1167420Comment by Chris Brandsma on Where should ASP.NET apps store data files?Chris Brandsma2009-07-22T19:51:50Z2009-07-22T19:51:50ZBy the question you asked, you have multiple web servers, delegate one of them as a file server and web server.(see if you can add a separate disk as well, put the files on the new disk). Share the folder, and have all the web servers access the shared folder.http://stackoverflow.com/questions/1167417/ajax-toolkit-modal-popup-wont-appearComment by Chris Brandsma on AJAX Toolkit Modal Popup won't appearChris Brandsma2009-07-22T19:03:33Z2009-07-22T19:03:33ZI'm not sure you need the style: display=none.
But, can you also show the code for the popup extender?
Also, with the extender, you can point it at a button to display the popup without having to use the code behind.