User theprise - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T15:45:13Zhttp://stackoverflow.com/feeds/user/940http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850993/can-i-get-a-byte-from-a-bitmapimage-in-silverlight0Can I get a byte[] from a BitmapImage in Silverlight?theprise2009-12-05T02:58:39Z2009-12-05T03:13:10Z
<p>I'm trying to pass some representation of an image back and forth between Silverlight and a WCF service. If possible I'd like to pass a System.Windows.Media.Imaging.BitmapImage, since that would mean the client doesn't have to do any conversion.</p>
<p>However, at some point I need to store this image in a database, meaning the image representation must be able to convert to and from byte[]. I can create a BitmapImage from a byte[] by reading the array into a MemoryStream and using BitmapImage.SetSource. But I can't seem to find a way to convert the other way - from BitmapImage to byte[]. Am I missing something obvious here?</p>
<p>If it helps at all, the conversion code could run on the server, i.e. it doesn't need to be Silverlight-safe.</p>
http://stackoverflow.com/questions/1481652/autosys-scheduler-update-jil1AutoSys scheduler update JILtheprise2009-09-26T17:06:40Z2009-12-03T01:59:52Z
<p>We use AutoSys for job scheduling, and I find myself writing a lot of JIL (job instruction language) scripts to delete boxes and re-insert them due to small job changes (e.g. start time, etc.). Is there an update command that can be used? CA's AutoSys <a href="http://supportconnectw.ca.com/public/autosys/infodocs/autosys%5Fcheatsheet.asp" rel="nofollow">cheat sheet</a> has no information on one.</p>
http://stackoverflow.com/questions/22708/how-do-i-find-the-excel-column-name-that-corresponds-to-a-given-integer3How do I find the Excel column name that corresponds to a given integer?theprise2008-08-22T15:49:53Z2009-12-01T20:39:29Z
<p>How would you determine the column name (e.g. "AQ" or "BH") of the nth column in Excel?</p>
<p>Edit: A language-agnostic algorithm to determine this is the main goal here.</p>
http://stackoverflow.com/questions/1493977/filter-every-call-made-by-a-datacontext-when-using-linq-entities/1495500#14955000Answer by theprise for Filter every call made by a DataContext when using LinQ Entitiestheprise2009-09-29T23:49:15Z2009-10-01T21:40:43Z<p>It looks to me like you're using a relationship between your Product and Region classes. If so, then somewhere, (the .dbml file for auto-generated LINQ-to-SQL), there exists a mapping that defines the relationship:</p>
<pre><code>[Table(Name = "Product")]
public partial class Product
{
...
private EntitySet<Region> _Regions;
[Association(Storage = "_Regions")]
public EntitySet<Region> Regions
{
get { return this._Regions; }
set { this._Regions.Assign(value); }
}
...
}
</code></pre>
<p>You could put some logic in the accessor here, for example:</p>
<pre><code>public IEnumerable<Region> Regions
{
get { return this._Regions.Where(r => !r.isDeleted); }
set { this._Regions.Assign(value); }
}
</code></pre>
<p>This way every access through product.Regions will return your filtered Enumerable.</p>
http://stackoverflow.com/questions/1476699/union-on-two-big-linq-queries-not-supported-how-do-i-get-around-it-if-at-all-po/1481441#14814410Answer by theprise for Union on two big LINQ queries not supported. How do I get around it (if at all possible)theprise2009-09-26T15:21:28Z2009-09-26T15:21:28Z<p>I would try combining the FullTextSearch and FullTextTagSearch functions into something like this:</p>
<pre><code>public IQueryable<Image> ImageSearch(string fullText)
{
return from image in ImageTable
where image.title.Contains(fullText)
|| image.tagName.Contains(fullText)
select image;
}
</code></pre>
http://stackoverflow.com/questions/1481381/what-is-the-easiest-and-most-compact-way-to-create-a-ienumerablet-or-icollectio/1481390#14813901Answer by theprise for What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>?theprise2009-09-26T15:01:56Z2009-09-26T15:01:56Z<p>Assuming Foo expects an IEnumerable<T>, you can take advantage of type inference and do:</p>
<pre><code>T o1, o2, o3;
Foo(new []{o1, o2, o3});
</code></pre>
http://stackoverflow.com/questions/12702/net-returning-datatables-in-wcf3.Net - Returning DataTables in WCFtheprise2008-08-15T20:26:01Z2009-06-02T12:52:02Z
<p>I have a WCF service from which I want to return a DataTable. I know that this is often a highly debated topic, as far as whether or not returning DataTables is a good practice. Let's put that aside for a moment.</p>
<p>When I create a DataTable from scratch, as below, there are no problems whatsoever. The table is created, populated, and returned to the client, and all is well:</p>
<pre><code>[DataContract]
public DataTable GetTbl()
{
DataTable tbl = new DataTable("testTbl");
for(int i=0;i<100;i++)
{
tbl.Columns.Add(i);
tbl.Rows.Add(new string[]{"testValue"});
}
return tbl;
}
</code></pre>
<p>However, as soon as I go out and hit the database to create the table, as below, I get a CommunicationException "The underlying connection was closed: The connection was closed unexpectedly."</p>
<pre><code>[DataContract]
public DataTable GetTbl()
{
DataTable tbl = new DataTable("testTbl");
//populate table with sql query
return tbl;
}
</code></pre>
<p>The table is being populated correctly on the server side. It is significantly smaller than the test table that I looped through and returned, and the query is small and fast - there is no issue here with timeouts or large data transfer. The same exact functions and DataContracts/ServiceContracts/BehaviorContracts are being used. </p>
<p>Why would the way that the table is being populated have any bearing on the table returning successfully??</p>
http://stackoverflow.com/questions/814757/headless-internet-browser/814920#8149200Answer by theprise for headless internet browser?theprise2009-05-02T14:09:51Z2009-05-02T14:09:51Z<p>.NET contains <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx" rel="nofollow">System.Windows.Forms.WebBrowser</a>. You can create an instance of this, send it to a URL, and then easily parse the html on that page. You could then follow any links you found, etc. </p>
<p>I have worked with this object only minimally, so I'm no expert, but if you're already familiar with .NET then it would probably be worth looking into.</p>
http://stackoverflow.com/questions/20465/net-excel-listobject-autosizing-on-databind3.NET - Excel ListObject autosizing on databindtheprise2008-08-21T16:36:12Z2009-03-18T16:33:36Z
<p>I'm developing an Excel 2007 add-in using Visual Studio Tools for Office (2008). I have one sheet with several ListObjects on it, which are being bound to datatables on startup. When they are bound, they autosize correctly.</p>
<p>The problem comes when they are re-bound. I have a custom button on the ribbon bar which goes back out to the database and retrieves different information based on some criteria that the user inputs. This new data comes back and is re-bound to the ListObjects - however, this time they are not resized and I get an exception:</p>
<blockquote>
<p>ListObject cannot be bound because it
cannot be resized to fit the data. The
ListObject failed to add new rows.
This can be caused because of
inability to move objects below of the
list object.</p>
<blockquote>
<p>Inner exception: "Insert method of Range class failed"<br />
Reason: Microsoft.Office.Tools.Excel.FailureReason.CouldNotResizeListObject</p>
</blockquote>
</blockquote>
<p>I was not able to find anything very meaningful on this error on Google or MSDN. I have been trying to figure this out for a while, but to no avail.</p>
<p>Basic code structure:</p>
<pre><code>//at startup
DataTable tbl = //get from database
listObj1.SetDataBinding(tbl);
DataTable tbl2 = //get from database
listObj2.SetDataBinding(tbl2);
//in buttonClick event handler
DataTable tbl = //get different info from database
//have tried with and without unbinding old source
listObj1.SetDataBinding(tbl); <-- exception here
DataTable tbl2 = //get different info from database
listObj2.SetDataBinding(tbl2);
</code></pre>
<p>Note that this exception occurs even when the ListObject is shrinking, and not only when it grows.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179165#1791652Answer by theprise for What is the worst class/variable/function name you have ever encounteredtheprise2008-10-07T15:54:59Z2008-10-07T15:54:59Z<p>Function name:</p>
<pre><code>GiveItAWhirl();
</code></pre>
<p>followed closely in the code by</p>
<pre><code>GiveItAWhirl2();
</code></pre>
<p>These functions just pieced together unrelated data manipulation and UI code.</p>
http://stackoverflow.com/questions/169975/what-to-include-in-a-beginners-programming-book/170505#1705050Answer by theprise for What to include in a beginner's programming book?theprise2008-10-04T15:22:28Z2008-10-04T15:22:28Z<p>Basic examples, and a lot of them.</p>
<p>Present a small problem, outline a short (but good) logical solution in text, and then give a code sample for implementing the solution. After the code sample, break the code down line by line and explain in detail what's happening. This gives the reader a good idea of what the code is trying to do, a convenient code sample to copy and try on their own, and an in-depth explanation for any lines they are unsure of.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111860#1118602Answer by theprise for What kind of prefix do you use for member variables?theprise2008-09-21T19:41:44Z2008-09-21T19:41:44Z<p>I prefix member variables with 'm' and parameters (in the function) with 'p'. So code will look like:</p>
<pre><code>class SomeClass
{
private int mCount;
...
private void SomeFunction(string pVarName){...}
}
</code></pre>
<p>I find that this quickly tells you the basic scope of any variable - if no prefix, then it's a local. Also, when reading a function you don't need to think about what's being passed in and what's just a local variable.</p>
http://stackoverflow.com/questions/12702/net-returning-datatables-in-wcf/42332#423321Answer by theprise for .Net - Returning DataTables in WCFtheprise2008-09-03T19:14:32Z2008-09-03T19:14:32Z<p>For anyone having similar problems, I have solved my issue. It was several-fold.</p>
<ul>
<li>As Darren suggested and Paul backed up, the Max..Size properties in the configuration needed to be enlarged. The SvcTraceViewer utility helped in determining this, but it still does not always give the most helpful error messages. </li>
<li>It also appears that when the Service Reference is updated on the client side, the configuration will sometimes not update properly (e.g. Changing config values on the server will not always properly update on the client. I had to go in and change the Max..Size properties multiple times on both the client and server sides in the course of my debugging)</li>
<li><p>My final problem seemed to be that
the DataTable was not initialized
with a name. I'm still trying to
figure out why this matters, but
this:</p>
<pre><code>return new DataTable();
</code></pre>
<p>will fail, where this:</p>
<pre><code>return new DataTable("someName");
</code></pre>
<p>will not. Any input on this would be great.</p></li>
</ul>
<p>Hopefully that will help someone.</p>
http://stackoverflow.com/questions/20465/net-excel-listobject-autosizing-on-databind/26691#266911Answer by theprise for .NET - Excel ListObject autosizing on databindtheprise2008-08-25T19:30:44Z2008-08-25T19:30:44Z<p>If anyone else is having this problem, I have found the cause of this exception. ListObjects will automatically re-size on binding, as long as they do not affect any other objects on the sheet. Keep in mind that ListObjects can only affect the Ranges which they wrap around.</p>
<p>In my case, the list object which was above the other one had fewer columns than the one below it. Let's say the top ListObject had 2 columns, and the bottom ListObject had 3 columns. When the top ListObject changed its number of rows, it had no ability to make any changes to the third column since it wasn't in it's underlying Range. This means that it couldn't shift any cells in the third column, and so the second ListObject couldn't be properly moved, resulting in my exception above.</p>
<p>Changing the positions of the ListObjects to place the wider one above the smaller one works fine. Following the logic above, this now means that the wider ListObject can shift all of the columns of the second ListObject, and since there is nothing below the smaller one it can also shift any cells necessary. The reason I wasn't having any trouble on the initial binding is that both ListObjects were a single cell.</p>
<p>Since this is not optimal in my case, I will probably use empty columns or try to play around with invisible columns if that's possible, but at least the cause is now clear.</p>
http://stackoverflow.com/questions/8348/using-unhandled-exceptions-instead-of-contains2Using unhandled exceptions instead of Contains()?theprise2008-08-11T23:49:32Z2008-08-23T18:02:18Z
<p>Imagine an object you are working with has a collection of other objects associated with it, for example the Controls collection on a WinForm. You want to check for a certain object in the collection, but the collection doesn't have a Contains() method. There are several ways of dealing with this.</p>
<ul>
<li>Implement your own Contains() method by looping through all items in the collection to see if one of them is what you are looking for. This seems to be the "best practice" approach.</li>
<li>I recently came across some code where instead of a loop, there was an attempt to access the object inside a try statement, as follows:</li>
</ul>
<blockquote>
<pre><code>try
{
Object aObject = myCollection[myObject];
}
catch(Exception e)
{
//if this is thrown, then the object doesn't exist in the collection
}
</code></pre>
</blockquote>
<p>My question is how poor of a programming practice do you consider the second option be and why? How is the performance of it compared to a loop through the collection?</p>
http://stackoverflow.com/questions/22708/how-do-i-find-the-excel-column-name-that-corresponds-to-a-given-integer/22719#227190Answer by theprise for How do I find the Excel column name that corresponds to a given integer?theprise2008-08-22T15:58:03Z2008-08-22T15:58:03Z<p>I currently use this, but I have a feeling that it can be optimized.</p>
<pre><code>private String GetNthExcelColName(int n)
{
String firstLetter = "";
//if number is under 26, it has a single letter name
// otherwise, it is 'A' for 27-52, 'B' for 53-78, etc
if(n > 26)
{
//the Converts to double and back to int are just so Floor() can be used
Double value = Convert.ToDouble((n-1) / 26);
int firstLetterVal = Convert.ToInt32(Math.Floor(value))-1;
firstLetter = Convert.ToChar(firstLetterValue + 65).ToString();
}
//second letter repeats
int secondLetterValue = (n-1) % 26;
String secondLetter = Convert.ToChar(secondLetterValue+65).ToString();
return firstLetter + secondLetter;
}
</code></pre>
http://stackoverflow.com/questions/21669/complexity-of-regex-substitution/21702#217029Answer by theprise for Complexity of Regex substitutiontheprise2008-08-22T03:15:13Z2008-08-22T03:15:13Z<p>From a purely theoretical stance:</p>
<p>The implementation I am familiar with would be to build a Deterministic Finite Automaton to recognize the regex. This is done in O(2^m), m being the size of the regex, using a standard algorithm. Once this is built, running a string through it is linear in the length of the string - O(n), n being string length. A replacement on a match found in the string should be constant time.</p>
<p>So overall, I suppose O(2^m + n).</p>
http://stackoverflow.com/questions/8987/calling-table-valued-sql-functions-from-net4Calling Table-Valued SQL Functions From .NETtheprise2008-08-12T15:50:49Z2008-08-12T15:53:26Z
<p>Scalar-valued functions can be called from .NET as follows:</p>
<pre><code>SqlCommand cmd = new SqlCommand("testFunction", sqlConn); //testFunction is scalar
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("retVal", SqlDbType.Int);
cmd.Parameters["retVal"].Direction = ParameterDirection.ReturnValue;
cmd.ExecuteScalar();
int aFunctionResult = (int)cmd.Parameters["retVal"].Value;
</code></pre>
<p>I also know that table-valued functions can be called in a similar fashion, for example: </p>
<pre><code>String query = "select * from testFunction(param1,...)"; //testFunction is table-valued
SqlCommand cmd = new SqlCommand(query, sqlConn);
SqlDataAdapter adapter = new SqlDataAdapter(cmd);
adapter.Fill(tbl);
</code></pre>
<p>My question is, can table-valued functions be called as stored procedures, like scalar-valued functions can? (e.g., replicate my first code snippet with a table-valued function being called and getting the returned table through a ReturnValue parameter).</p>
http://stackoverflow.com/questions/8383/reading-recommendations-for-sql-server-2005-reporting-services/8390#83902Answer by theprise for Reading recommendations for: SQL Server 2005 Reporting Servicestheprise2008-08-12T01:15:08Z2008-08-12T01:15:08Z<p>I would recommend <a href="http://rads.stackoverflow.com/amzn/click/0072262397" rel="nofollow">Brian Larson's</a> Reporting Services 2005 book (or pre-order the <a href="http://rads.stackoverflow.com/amzn/click/0071548084" rel="nofollow">2008 version</a>), provided that you like learning from step-by-step walkthroughs. This text also contains a lot of basic SQL refreshers, which may or may not be helpful depending on your background. If you are looking for more of a reference text, this is probably not for you.</p>
http://stackoverflow.com/questions/7272/of-ways-to-count-the-limitless-primes/7476#74762Answer by theprise for Of Ways to Count the Limitless Primestheprise2008-08-11T01:42:41Z2008-08-11T01:42:41Z<p>@akdom's question to me:</p>
<p>Looping would work fine on my previous suggestion, and you don't need to do any calculations to determine if a number is even; in your loop, simply skip every even number, as shown below:</p>
<pre><code>//Assuming theInteger is the number to be tested for primality.
// Check if theInteger is divisible by 2. If not, run this loop.
// This loop skips all even numbers.
for( int i = 3; i < sqrt(theInteger); i + 2)
{
if( theInteger % i == 0)
{
//getting here denotes that theInteger is not prime
// somehow indicate that some number, i, divides it and break
break;
}
}
</code></pre>
http://stackoverflow.com/questions/3553/one-piece-of-advice/7328#732849Answer by theprise for One piece of advicetheprise2008-08-10T20:28:39Z2008-08-10T20:28:39Z<p>Practice, practice, practice.</p>
<p>I used to think that reading books and attending lectures would somehow magically transform me into a great coder. While these things are still important, there is nothing at all that can replace writing your own code, and a lot of it.</p>
<p>Also, read other people's code, whether they are more advanced than you or not. There is rarely one single correct way to implement something, and a lot can be learned from seeing how others think.</p>
http://stackoverflow.com/questions/7272/of-ways-to-count-the-limitless-primes/7314#73140Answer by theprise for Of Ways to Count the Limitless Primestheprise2008-08-10T19:58:38Z2008-08-10T19:58:38Z<p>In your algorithm using the list from 2 to the root of the integer, you can improve performance by only testing odd numbers after 2. That is, your list only needs to contain 2 and all odd numbers from 3 to the square root of the integer. This cuts the number of times you loop in half without introducing any more complexity.</p>
http://stackoverflow.com/questions/1850993/can-i-get-a-byte-from-a-bitmapimage-in-silverlight/1851022#1851022Comment by theprise on Can I get a byte[] from a BitmapImage in Silverlight?theprise2009-12-05T03:52:54Z2009-12-05T03:52:54ZAgain, this is in the PresentationCore.dll version of System.Windows.Media.Imaging, not the System.Windows.dll version that Silverlight must use... So the PngBitmapEncoder will not work against a BitmapImage coming from Silverlight.http://stackoverflow.com/questions/1850993/can-i-get-a-byte-from-a-bitmapimage-in-silverlight/1851006#1851006Comment by theprise on Can I get a byte[] from a BitmapImage in Silverlight?theprise2009-12-05T03:11:13Z2009-12-05T03:11:13ZThe page you linked to is for .NET in general, the Silverlight version of BitmapSource (in System.Windows.dll) doesn't support this method: <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.bitmapsource%28VS.95%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> http://stackoverflow.com/questions/160711/net-time-sinkholes/160735#160735Comment by theprise on .NET time sinkholes?theprise2008-10-02T18:56:10Z2008-10-02T18:56:10ZI actually posted a question on this topic: <a href="http://stackoverflow.com/questions/12702/net-returning-datatables-in-wcf" rel="nofollow" title="net returning datatables in wcf">stackoverflow.com/questions/12702/…</a>
Took me forever to realize what was going on, too.