User TJB - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T14:58:32Zhttp://stackoverflow.com/feeds/user/37207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1490217/how-can-you-store-state-between-screens-in-sketchflow0How can you store state between screens in SketchFlow?TJB2009-09-29T02:00:07Z2009-11-26T08:53:37Z
<p>I'm building a prototype using Expression Blend 3 and SketchFlow (a Silverlight SketchFlow application to be specific) and it consists of multiple screens that I want to share state between.</p>
<p>Take this example:</p>
<ol>
<li><p>Screen 1 - 'Login' screen: I want the user to type in a fake user name and password.</p></li>
<li><p>Screen 2 - 'Home' screen: I want to display that user name so the user sees that their input is reflected.</p></li>
</ol>
<p>This is just a trivial example and not something that most prototypes need to demonstrate, but the same functionality could be used in an application where <strong><em>the selection on one screen needs to be persisted for the next screen</em></strong>.</p>
<p>How can I do this in SketchFlow? I know that I can write Silverlight code to store some data in isolated storage, but I'm trying to go with the 'zero code' approach since this will be a throw-away prototype and would prefer to use some built-in mechanism in SketchFlow if available.</p>
<p><strong>Does Sketchflow offer a way to state data between screens?</strong></p>
http://stackoverflow.com/questions/1746889/how-to-make-a-string-length-limited-to-a-specific-number/1746951#17469510Answer by TJB for How to make a string length limited to a specific number ?TJB2009-11-17T06:21:39Z2009-11-17T06:21:39Z<p>A <a href="http://www.regular-expressions.info/dotnet.html" rel="nofollow">Regular expression</a> can validate the length and the format all at once.</p>
<pre><code>class Employee
{
// ...
private string code;
public string Code
{
set
{
Regex regex = new Regex("^[A-Z]{1}[1-9]{1}[0,1]{1}[0-9]{3}[1-9]{1}$");
Match match = regex.Match(value);
if (!match.Success)
{
throw new ArgumentException("Employee must be in ... format");
}
code = value;
}
}
// ...
}
</code></pre>
http://stackoverflow.com/questions/1714171/how-does-a-programmer-work-across-multiple-computers/1714376#17143761Answer by TJB for How does a programmer work across multiple computers?TJB2009-11-11T10:39:21Z2009-11-11T10:39:21Z<p>For sync'ing across machines that aren't connected (behind firewall, vpn, air gapped etc.) I've been using <a href="http://www.2brightsparks.com/freeware/" rel="nofollow">SyncBack</a>. Its free, configurable, and I can copy the profile across all the machines I use and setup 1-click syncing.</p>
http://stackoverflow.com/questions/1623150/problem-of-session-state/1623166#16231661Answer by TJB for Problem of session stateTJB2009-10-26T05:05:36Z2009-10-26T05:05:36Z<p>A dictionary might work well for your application<br />
<a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/xfhwa508.aspx</a> </p>
<p>In psuedocode: </p>
<pre><code>// Read the selected seats and store them
OnCheckChanged( ... )
{
Dictionary<Route,Seat> reservedSeats = Session["reservedSeats"] as Dictionary<Route,Seat>;
reservedSeats[Current Route] = Selected Seat;
Session["reservedSeats"] = reservedSeats;
}
// Show the selected seats when they come to a specific route
OnLoad(...)
{
Dictionary<Route,Seat> reservedSeats = Session["reservedSeats"] as Dictionary<Route,Seat>;
SetSeatSelection( reservedSeats[Current Route] );
}
</code></pre>
<p>Basically, you can store a dictionary object in the session with one entry for each route. Each session is particular to a specific user so this should suffice.</p>
<p>Although, you may want to just store it in a database if you want the selection to be remembered between visits etc.</p>
http://stackoverflow.com/questions/1570575/c-onpaint-mousemove-high-cpu-usage/1570644#15706440Answer by TJB for C# OnPaint mousemove high cpu usageTJB2009-10-15T06:44:55Z2009-10-15T06:44:55Z<p>Also check the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.painteventargs%5Fmembers%28VS.71%29.aspx" rel="nofollow">Clip Rectange in the PaintArgs event argument</a> so that you only repaint the area that needs to get updated instead of re-drawing the entire image.</p>
http://stackoverflow.com/questions/1570151/why-wait-for-asynchronous-web-services-calls/1570240#15702401Answer by TJB for Why Wait for Asynchronous Web Services Calls TJB2009-10-15T04:12:47Z2009-10-15T04:12:47Z<p>One very practical use of asynchronous calls is stuff like this</p>
<p><img src="http://i.msdn.microsoft.com/Bb760816.PB_oldStyle%28en-us,VS.85%29.png" height="100"></p>
<p><strong>If you want to update your UI while you're waiting for a 'server' to do something, you need to make an asynchronous call.</strong> If you make a synchronous call, your code will be stuck waiting, but if you make an asynchronous call you can update the UI or even let the user go do other stuff while you're waiting for the callback. This goes beyond UI, you may make an asynchronous call to start some non-critical task and continue on with your code and its possible you don't even register for a callback if the result is unimportant.</p>
<p>If you do NOTHING while waiting for the asyncronous call, then its less useful.</p>
http://stackoverflow.com/questions/1570209/call-public-function-in-another-application/1570224#15702241Answer by TJB for Call public function in another applicationTJB2009-10-15T04:03:44Z2009-10-15T04:03:44Z<p>This isn't trivial, there's lots of ways to do it.</p>
<p><strong>I suggest using <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">WCF</a></strong>, its a great framework that abstracts the communication logic and makes your inter-application communication work just like calling methods on an object.</p>
http://stackoverflow.com/questions/1569986/wcf-primitive-type-vs-complex-type/1570102#15701021Answer by TJB for WCF primitive type vs complex typeTJB2009-10-15T03:11:48Z2009-10-15T03:11:48Z<p><strong>I'd suggest you model it in whatever way seems most natural until you run into a specific issue or encounter a requirement for a change.</strong></p>
<p>WCF is designed to abstract the underlying details, and if bandwidth is a concern then i think a bool, int or enum will all probably be 4 bytes. You could optimize by using a bitmask or using a single byte.</p>
<p>Again, the ease of use of the API and maintainability is probably more important, which do you prefer?</p>
<pre><code>if( user[i].Sex == Sexes.Male )
if( user[i].IsMale == true; ) // Could also expose .IsFemale
if( user[i].Sex == 'M' )
</code></pre>
<p>etc. Of course you could expose multiple.</p>
http://stackoverflow.com/questions/1569591/pass-masterpage-imagebutton-event-to-content-page/1569648#15696481Answer by TJB for Pass MasterPage ImageButton event to content PageTJB2009-10-15T00:06:28Z2009-10-15T00:12:29Z<p>I would recommend specifying a <strong>strongly typed master page</strong> in your content page and exposing the event on the master page side</p>
<p>Here's a good <a href="http://msdn.microsoft.com/en-us/library/c8y19k6h.aspx" rel="nofollow">MSDN reference</a></p>
<p>This is similar to <a href="http://stackoverflow.com/questions/1569591/pass-masterpage-imagebutton-event-to-content-page/1569600#1569600">what Rex M specified</a> but just simplifies accessing the Master Page a little bit.</p>
<pre><code>// Master Page Code
public event EventHandler ClearClick
{
add
{
this.btnClear.Click += value;
}
remove
{
this.btnClear.Click -= value;
}
}
// Content Page markup
<%@ Page masterPageFile="~/MasterPage.master"%>
<%@ MasterType virtualPath="~/MasterPage.master"%>
// Content Page Code
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this.Master.ClearClick += new EventHandler(OnClearClick);
}
private void OnClearClick(object sender, EventArgs e)
{
// Handle click here
}
</code></pre>
http://stackoverflow.com/questions/1568508/how-to-debug-asp-net-mvc-controller-after-it-passes-control-to-the-view/1568556#15685561Answer by TJB for How to debug ASP.NET MVC Controller after it passes control to the View?TJB2009-10-14T19:48:20Z2009-10-14T19:48:20Z<p>You could add extra output on your view page to show you variable value / states for debugging information until you resolve the issue.</p>
http://stackoverflow.com/questions/1568492/using-llbl-as-model-in-mvc/1568541#15685410Answer by TJB for Using LLBL as Model in MVCTJB2009-10-14T19:45:59Z2009-10-14T19:45:59Z<p>I'm not sure about your exact error, but I'd venture a guess that one of two things are happenging:</p>
<ul>
<li><p><strong>You are making some sort of invalid / illegal call on your LLBLGen object</strong>. If this is the case make sure you are setting it up right / calling right method / property etc.</p></li>
<li><p><strong>The model you are passing to the veiw is too hairy for it to deal with</strong>. In this case, and in general, you should <strong>create a light 'View Model' class</strong> with just the data you want displayed and populate it from your LLBLGen object first then pass it to the view, which will be able to easily handle your view model class.</p></li>
</ul>
<p>Here are some references:</p>
<ul>
<li><a href="http://stephenwalther.com/blog/archive/2009/04/13/asp.net-mvc-tip-50-ndash-create-view-models.aspx" rel="nofollow">http://stephenwalther.com/blog/archive/2009/04/13/asp.net-mvc-tip-50-ndash-create-view-models.aspx</a></li>
<li><a href="http://nerddinnerbook.s3.amazonaws.com/Part6.htm" rel="nofollow">http://nerddinnerbook.s3.amazonaws.com/Part6.htm</a></li>
<li><a href="http://www.codinginstinct.com/2008/10/view-model-inheritance.html" rel="nofollow">http://www.codinginstinct.com/2008/10/view-model-inheritance.html</a> </li>
</ul>
http://stackoverflow.com/questions/1568422/need-silverlight-browser-control/1568490#15684900Answer by TJB for Need Silverlight Browser ControlTJB2009-10-14T19:36:01Z2009-10-14T19:36:01Z<p>Here are some good instructions for configuring IIS to serve up Silverlight applications.</p>
<p><a href="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx" rel="nofollow">http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx</a></p>
<p><em>Much Love - TJB</em></p>
http://stackoverflow.com/questions/1564870/recommended-opengl-glut-reference0Recommended OpenGL / GLUT ReferenceTJB2009-10-14T07:54:50Z2009-10-14T08:06:14Z
<p><strong>What OpenGL / GLUT reference is the best around?</strong></p>
<p>Ideally I'm looking for something with C++ sample code to help me learn OpenGL as well as details about the APIs similar to what MSDN provides for .net programming.</p>
<p>If there isn't a one stop shop, then please list the set of references I should use and what the strengths of each one is.</p>
<p>Thanx!</p>
http://stackoverflow.com/questions/1564077/how-would-i-implement-a-community-account-like-data-structure-on-stackoverflow/1564117#15641171Answer by TJB for How would I implement a "Community" account-like data structure on StackOverflow?TJB2009-10-14T03:38:44Z2009-10-14T03:38:44Z<p>If you want to have a 'global' group, you should just create one and automatically add each user to it when they are created. That way you don't need to treat it differently.</p>
<p>For the 'community user' concept, another generic mechanism would be a role.
You could have a set of roles defined for your users, and there could be one role that corresponds to the 'community' user.</p>
<p>Role Based Authorization may be a good place to start looking.</p>
http://stackoverflow.com/questions/1562021/filereader-class-in-c/1562065#15620650Answer by TJB for FileReader class in C#TJB2009-10-13T18:24:44Z2009-10-13T22:56:17Z<p>You can probably use the <a href="http://msdn.microsoft.com/en-us/library/system.io.file.aspx" rel="nofollow">System.IO.File</a> Class to read the file and <a href="http://msdn.microsoft.com/en-us/library/system.convert%28VS.71%29.aspx" rel="nofollow">System.Convert</a> to parse the strings you read from the file.</p>
<pre><code>string line = String.Empty;
while( (line = file.ReadLine()).IsNullOrEmpty() == false )
{
TYPE value = Convert.ToTYPE( line );
}
</code></pre>
<p>Where <code>TYPE</code> is whatever type you're dealing with at that particular line / file.</p>
<p>If there are multiple values on one line you could do a split and read the individual values e.g.</p>
<pre><code>string[] parts = line.Split(' ');
if( parts.Length > 1 )
{
foreach( string item in parts )
{
TYPE value = Convert.ToTYPE( item );
}
}
else
{
// Use the code from before
}
</code></pre>
http://stackoverflow.com/questions/1545507/visual-studio-ide-issue/1545564#15455640Answer by TJB for Visual Studio IDE IssueTJB2009-10-09T19:07:39Z2009-10-09T19:07:39Z<p>Right click on the menu bar and click <strong>Customize...</strong> from there you can add in any options that are missing.</p>
http://stackoverflow.com/questions/1520933/silverlight-interaction-with-the-web-server/1529104#15291041Answer by TJB for Silverlight interaction with the Web ServerTJB2009-10-07T01:48:23Z2009-10-07T01:48:23Z<p><strong>In a nutshell, it uses web services via a Silverlight WCF client implementation, and Silverlight offers a few ways to access web services.</strong></p>
<ol>
<li><p>Here's a quick how-to on Adding a simple <a href="http://blogs.silverlight.net/blogs/msnow/archive/2008/09/17/silverlight-tip-of-the-day-42-how-to-create-a-web-service-for-your-silverlight-app.aspx" rel="nofollow">Silverlight-Enabled WCF service to your website</a></p></li>
<li><p>And a <a href="http://blogs.silverlight.net/blogs/msnow/archive/2008/09/22/silverlight-tip-of-the-day-43-silverlight-enabled-wcf-services-versus-asmx-web-services.aspx" rel="nofollow">comparison to plain ASMX services</a> </p></li>
<li><p>The 'Hot' new thing is <a href="http://code.msdn.microsoft.com/RiaServices" rel="nofollow">.net RIA services</a>, here's a <a href="http://blogs.microsoft.co.il/blogs/bursteg/archive/2009/04/04/build-a-simple-application-with-net-ria-services-silverlight-3.aspx" rel="nofollow">tutorial</a> you should also check out <a href="http://blogs.msdn.com/brada/default.aspx" rel="nofollow">Brad Abram's blog</a>, he has lots of info about it.</p></li>
</ol>
<p>The <a href="http://silverlight.net/learn/videos/silverlight-videos/" rel="nofollow">silverlight.net</a> videos are great as well, there's several examples.</p>
http://stackoverflow.com/questions/1523756/can-i-use-a-c-collection-to-hold-class-instances-with-self-referential-relations/1523785#15237851Answer by TJB for Can I use a C# collection to hold class instances with self-referential relationships? TJB2009-10-06T05:44:08Z2009-10-06T05:44:08Z<p>This seems to imply a hierarchical 'tree' relationsihp where you may have</p>
<pre><code>Class WebFile:
- URL : string
- Parent : WebFile
- Children : WebFile[] (could be a list depending on the need)
</code></pre>
<p>Then somewhere you have a </p>
<pre><code>List<WebFile> webFiles;
</code></pre>
<p>This approach makes it easy to traverse the tree of webfiles and find the related ones, but harder to list all the files themselves.</p>
<p>Alternatively, you could store the list of files and relationships seperately</p>
<pre><code>Class WebFile
- URL : string
Class WebFileRelationship
- Parent : WebFile
- Child : WebFile
</code></pre>
<p>And you have 2 containers</p>
<pre><code>List<WebFile> webFiles;
List<WebFileRelationship> relationships;
</code></pre>
<p>This approach makes it easy to list all the relationships or all the files, but hard to determine the individual relationships.</p>
<p>It all depends on your application, do you need more information about the individual files or the relationships?</p>
http://stackoverflow.com/questions/1523623/how-to-make-website-dropdownlist-work-better-for-iphone/1523690#15236902Answer by TJB for How to make website dropdownlist work better for iPhoneTJB2009-10-06T05:06:53Z2009-10-06T05:06:53Z<p>Maybe you can try an <strong>ajax enabled auto complete text box instead of a drop down</strong>. Check out</p>
<p><a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">http://docs.jquery.com/Plugins/Autocomplete</a></p>
<p>This way the user can still type to search for an entry but the safari UI won't force them to select one since its just a text box.</p>
http://stackoverflow.com/questions/1488970/user-feedback-remains-when-changing-state-in-sketchflow/1490194#14901940Answer by TJB for User feedback remains when changing state in SketchflowTJB2009-09-29T01:49:14Z2009-09-29T01:49:14Z<p><strong>I believe feedback is stored at the 'screen' level not the 'state' level</strong></p>
<p>I suppose you have 3 choices:</p>
<ol>
<li>Instruct your users to list the steps they did before they add their feedback</li>
<li>Change your states to different screens instead (they can still look like the same screen for the end user, but in your application they will be different screens)</li>
<li>Have your user submit screen shots instead of just .feedback files</li>
</ol>
<p>The second option will allow you to organize your feedback better.</p>
<p>In short I think you're expecting more than they offer ;)</p>
http://stackoverflow.com/questions/1422539/ms-expression-blend-sketchflow-populating-a-sub-datagrid-with-data-upon-select/1480444#14804440Answer by TJB for MS Expression Blend: Sketchflow - Populating a sub datagrid with data upon selecting a specific row of a master datagrid!?TJB2009-09-26T04:43:46Z2009-09-26T04:43:46Z<p>I figured out how to do this by reading this article:
<a href="http://etvorun.spaces.live.com/blog/cns!6054141F335D00D3!130.entry?sa=638141088" rel="nofollow">Expression Blend 3 – secrets of working with data.</a></p>
<p>Here's the basic steps (you already did a couple it sounds like)</p>
<ol>
<li>Create your sample data set</li>
<li>Under the Data tab select the <strong>List Mode</strong> and drag your collection onto the screen, a list view of your data will be created (Master datagrid)</li>
<li>Now, select the <strong>Details Mode</strong> and drag and drop your collection onto the screen where you want the details to be displayed. (sub datagrid)</li>
<li>Tweak the fields displayed by dragging properties into the respective containers or modifying the XAML / Bindings list</li>
</ol>
<p>If you have a child collection in your data, you may have to jump through a few more hoops. </p>
http://stackoverflow.com/questions/1473392/is-it-acceptable-to-only-use-the-else-portion-of-an-if-else-statement/1475444#14754440Answer by TJB for Is it acceptable to only use the 'else' portion of an 'if-else' statement?TJB2009-09-25T04:33:56Z2009-09-25T04:33:56Z<p>In these cases you may wish to <strong>abstract the validation logic into the class itself</strong> to help un-clutter your application code.</p>
<p>For example</p>
<pre><code>class MyClass
{
public string Prop{ get; set; }
// ... snip ...
public bool IsValid
{
bool valid = false;
if((value != null) &&
(!string.IsNullOrEmpty(value.Prop)) &&
(possibleValues.Contains(value.prop)))
{
valid = true
}
return valid;
}
// ...snip...
}
</code></pre>
<p>Now your application code</p>
<pre><code>MyClass = value = GetValueFromSomewhere();
if( value.IsValie == false )
{
// Handle bad case here...
}
</code></pre>
http://stackoverflow.com/questions/1475339/cleaning-up-c-code/1475386#14753861Answer by TJB for Cleaning up C# codeTJB2009-09-25T04:09:23Z2009-09-25T04:09:23Z<p>When your code is 'built' the compiler will generate a binary image CLI instructions. No commets will be present, they are ignored.</p>
<p>To remove debug statements, build in release mode.</p>
<p>If you are worried about people <a href="http://en.wikipedia.org/wiki/Reverse%5Fengineering#Reverse%5Fengineering%5Fof%5Fsoftware" rel="nofollow">reversing</a> your code, you should consider <a href="http://en.wikipedia.org/wiki/Obfuscated%5Fcode" rel="nofollow">obfuscation</a> to make it more difficult.</p>
http://stackoverflow.com/questions/476671/do-users-have-problems-adopting-silverlight5Do users have problems adopting Silverlight?TJB2009-01-24T21:21:35Z2009-09-24T17:06:25Z
<p>My group is thinking about switching our platform for web UI from ASP.net to Silverlight for several reasons. To be clear, these are business websites that provide a service to our users, we develop and host them ourselves.</p>
<p>Has anyone switched their business / intranet web site from a traditional server-based web technology such as ASP.net to Silverlight? Or have you added Silverlight to your website? If so...</p>
<ul>
<li>Have your users complained or resisted installing Silverlight?</li>
<li>Have any significant number of users been unable to install Silverlight?</li>
<li>Have they commented on the look or responsiveness of Silverlight UI?</li>
<li>What other comments have they had?</li>
</ul>
<p><strong>In short, are my web site's users gonna freak if I start using Silverlight on my page?</strong>
<br/>
If your answer is "It depends" then please give an idea of what the determining factors are. </p>
<p>As an aside, is there an easy way to detect how many of your users install / have already installed Silverlight?</p>
<p><strong>Edit:</strong><br/>
Thanks for the answers so far! I may be reaching, but has anyone yet had concrete experience with deploying a Silverlight app? I was wondering if anyone had gone through this and if their users had any major issues.</p>
http://stackoverflow.com/questions/1378568/show-a-single-item-of-sample-data-in-sketchflow-running-project/1458322#14583221Answer by TJB for Show a single item of sample data in SketchFlow running projectTJB2009-09-22T05:51:08Z2009-09-22T05:51:08Z<p>I found the example in this tutorial works fine:</p>
<p><a href="http://blogs.msdn.com/canux/archive/2009/06/29/mini-tutorial-blend-3-visual-data-binding.aspx" rel="nofollow">http://blogs.msdn.com/canux/archive/2009/06/29/mini-tutorial-blend-3-visual-data-binding.aspx</a></p>
<ol>
<li>Create your sample data source</li>
<li>Click on the 'list' mode button above the data source (in the 'data' tab)</li>
<li>Drag field(s) onto a list view for the list selection</li>
<li>Click the 'details' mode button above the data source (in the 'data' tab)</li>
<li>Drag the other field(s) onto the area where you want to display the details</li>
</ol>
<p>Voila! it works! Or, at least it works on my box ; )</p>
http://stackoverflow.com/questions/1144985/how-to-draw-a-grid-in-sketchflow/1458304#14583040Answer by TJB for How to draw a grid in SketchFlow?TJB2009-09-22T05:45:34Z2009-09-22T05:45:34Z<p>There isn't a 'sketch' style grid, so you have 2 options:</p>
<ul>
<li><strong>Use a list box</strong> and edit the template to be a grid / horizontal stack panel with borders etc.</li>
<li><strong>Use the standard grid</strong>, you can still make the text 'Buxton Sketch' font so it still looks pretty good, but it does have some chrome effects breaking the 'pure sketch' look</li>
</ul>
<p>Use what suits you best.</p>
http://stackoverflow.com/questions/1442762/challenge-working-with-visual-studio-and-vc/1442795#14427954Answer by TJB for Challenge working with Visual Studio and VC++ ?TJB2009-09-18T05:57:47Z2009-09-18T06:45:47Z<p><a href="http://www.stackoverflow.com" rel="nofollow">www.stackoverflow.com</a> of course will have plenty of resources around if you look @ the right tags</p>
<ul>
<li><a href="http://stackoverflow.com/questions/tagged/mfc">http://stackoverflow.com/questions/tagged/mfc</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/com">http://stackoverflow.com/questions/tagged/com</a></li>
</ul>
<p>etc.</p>
<p><a href="http://www.codeproject.com/" rel="nofollow">The Code Project</a> is also a good resource for windows / C++ programming, here are a couple areas to start looking @:</p>
<ul>
<li><a href="http://www.codeproject.com/KB/MFC/" rel="nofollow">http://www.codeproject.com/KB/MFC/</a></li>
<li><a href="http://www.codeproject.com/KB/atl/" rel="nofollow">http://www.codeproject.com/KB/atl/</a></li>
<li><a href="http://codeproject.com/KB/COM/comintro.aspx" rel="nofollow">http://www.codeproject.com/KB/COM/comintro.aspx</a> (via <a href="http://stackoverflow.com/users/49046/andy">Andy</a> in comments)</li>
</ul>
http://stackoverflow.com/questions/1442583/good-way-to-convert-between-short-and-bytes/1442638#14426383Answer by TJB for Good way to convert between short and bytes?TJB2009-09-18T04:42:15Z2009-09-18T04:42:15Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/system.bitconverter%5Fmembers.aspx" rel="nofollow">BitConverter</a></p>
<pre><code>short number = 42;
byte[] numberBytes = BitConverter.GetBytes(number);
short converted = BitConverter.ToInt16(numberBytes);
</code></pre>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/1441407#14414070Answer by TJB for What fun things do you do to release stress at the office?TJB2009-09-17T21:18:54Z2009-09-17T21:18:54Z<p><strong>Sports</strong></p>
<p>I know, we nerds shouldn't be able to play sports, but its pretty fun and a great way to switch gears from mental workload to a physical workload.</p>
<p>We play</p>
<ul>
<li>Basketball</li>
<li>Flag Football</li>
<li>(and my favorite) Ultimate Frisbee</li>
</ul>
<p>If there's a nice court / field by your work, its a great way to spend your lunch.</p>
<p>Oh yeah, i guess its healthy too ; )</p>
http://stackoverflow.com/questions/564106/net-runtime-silverlight-runtime3.net Runtime - Silverlight Runtime = ?TJB2009-02-19T06:00:07Z2009-09-17T17:16:58Z
<p>I've googled around a bit, and I haven't been able to find a good listing of what classes from the .net CLR are not included in the 'CoreCLR' aka Silverlight.</p>
<p><strong>What is Silverlight missing from the Windows .net Framework?</strong></p>
<p>Also, is there anything that the Silverlight runtime has that the .net Framework doesn't? </p>
http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/755674#755674Comment by TJB on Do you say No to C# Regions?TJB2009-11-02T18:02:52Z2009-11-02T18:02:52ZThanks all for the nice comments, good to see people are being open minded.http://stackoverflow.com/questions/1638937/how-can-i-convert-pdf-to-html/1648002#1648002Comment by TJB on How can I convert PDF to HTML?TJB2009-10-30T05:44:30Z2009-10-30T05:44:30ZThis is probably your best bet. Parse the PDF using the library and generate HTML from the data.http://stackoverflow.com/questions/1568422/need-silverlight-browser-control/1568490#1568490Comment by TJB on Need Silverlight Browser ControlTJB2009-10-20T05:57:58Z2009-10-20T05:57:58ZI guess if you're planning on using silverlight you should find a host that supports it. Once you can host it in one place then other websites can point to it by using some sort of object tag I believe. Or, you could find one place just for hosting your xap then point your main website to that i suppose... but yes someone somewhere has to server up the xap unfortunately.http://stackoverflow.com/questions/1570580/cant-update-the-dataComment by TJB on cant update the dataTJB2009-10-15T06:38:37Z2009-10-15T06:38:37Z@Ed Swangren thanks, i can't 1337 without sleep ; ) i'm glad to see the autocomplete for the tag gave me the proper spelling ;)http://stackoverflow.com/questions/1570580/cant-update-the-dataComment by TJB on cant update the dataTJB2009-10-15T06:30:41Z2009-10-15T06:30:41ZI just downvoted this and favorited it, cause it LOLd so hard. Just the fact that it has the most vague title 'can't update the data' and absolutely no text in the question, just a big code blob... its like an epiffany of a givemethecodez question...
http://stackoverflow.com/questions/1570494/cannot-add-new-workitems-using-tfs-apiComment by TJB on Cannot add new Workitems using TFS APITJB2009-10-15T05:59:48Z2009-10-15T05:59:48ZCan you include error text?http://stackoverflow.com/questions/1570151/why-wait-for-asynchronous-web-services-calls/1570240#1570240Comment by TJB on Why Wait for Asynchronous Web Services Calls TJB2009-10-15T04:21:03Z2009-10-15T04:21:03ZIt all depends on what development you're doing (win forms, web, silverlight?) here's one though just on pg 1 of googlehttp://msdn.microsoft.com/en-us/library/aa480520.aspxhttp://stackoverflow.com/questions/1568492/using-llbl-as-model-in-mvc/1568541#1568541Comment by TJB on Using LLBL as Model in MVCTJB2009-10-14T23:33:03Z2009-10-14T23:33:03ZI don't remember where I read about it, i think its somewhere in the Nerd Dinner tutorial, but the example I saw was really more about how the View template generator couldn't reflect a LINQ2SQl generated class because it had some sort of circular reference... Actually I think it may have been JSON serialization in that case... Also, there have been several instances where an object has a member that's another class and visual studio couldn't generate a template for it. I guess its a somewhat different case than the one here, but I think the same principle may helphttp://stackoverflow.com/questions/1564077/how-would-i-implement-a-community-account-like-data-structure-on-stackoverflow/1564117#1564117Comment by TJB on How would I implement a "Community" account-like data structure on StackOverflow?TJB2009-10-14T07:40:23Z2009-10-14T07:40:23Z@Daniel A. White : Is putting it in your code not automatic enough? Wherever you have the code to add the user to your system (e.g. add user entry to database) just add the code which puts them in that group. Any way you slice it, that code will have to go somewhere might as well simplify it and put it in whatever place seems most logical.http://stackoverflow.com/questions/1562021/filereader-class-in-c/1562065#1562065Comment by TJB on FileReader class in C#TJB2009-10-13T22:56:41Z2009-10-13T22:56:41Z@Pavel Minaev Added support for that, thanx for the suggestionhttp://stackoverflow.com/questions/1523756/can-i-use-a-c-collection-to-hold-class-instances-with-self-referential-relations/1523785#1523785Comment by TJB on Can I use a C# collection to hold class instances with self-referential relationships? TJB2009-10-06T07:16:31Z2009-10-06T07:16:31ZAlso, you could omit the parent list or make it an array as well, depending on what you need. It may be useful to write up some psuedocode of what you want to achieve, and then shape the data structure accordingly.http://stackoverflow.com/questions/1523756/can-i-use-a-c-collection-to-hold-class-instances-with-self-referential-relations/1523785#1523785Comment by TJB on Can I use a C# collection to hold class instances with self-referential relationships? TJB2009-10-06T07:12:52Z2009-10-06T07:12:52ZIts just a reference, like a pointer, so you can add an existing web file to the list of 'children' without duplicating ithttp://stackoverflow.com/questions/1490217/how-can-you-store-state-between-screens-in-sketchflow/1490238#1490238Comment by TJB on How can you store state between screens in SketchFlow?TJB2009-10-01T04:44:05Z2009-10-01T04:44:05Z@Justin Thanks for the guidance. I've decided to avoid saving any state between screens and if necessary provide different links to redirect to different screens if i need to show different data, sketchflow makes it easy to just duplicate screens anyway. Thanx! http://stackoverflow.com/questions/1490217/how-can-you-store-state-between-screens-in-sketchflow/1490238#1490238Comment by TJB on How can you store state between screens in SketchFlow?TJB2009-09-29T02:14:36Z2009-09-29T02:14:36ZThat's a good suggestion, and most likely the path i'll take, but I'm often conflicted between making the prototype 'dynamic' to be closer to the real functionality or to keep it simple. For example, say its a shopping website where a user can select from a list of product to make their order. Do I boost the complexity and handle different product selection or just direct the user to select a specific product to keep the prototype simple? Thanx!http://stackoverflow.com/questions/1489154/how-can-i-create-custom-ui-for-desktop-applicationComment by TJB on How can I create custom UI for desktop application?TJB2009-09-28T20:18:56Z2009-09-28T20:18:56ZCan you be more clear? is your list a list of things you want to do? What language / framework are you using? If you are a bit more specific then you'll get better answers.