User Christothes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T13:38:06Zhttp://stackoverflow.com/feeds/user/1346http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1507139/wpf-dynamic-window/1507669#15076691Answer by Christothes for wpf dynamic windowChristothes2009-10-02T03:51:03Z2009-10-02T03:51:03Z<p>For your dynamic adding of buttons, you could make an <strong>ItemsControl</strong> instead of a StackPanel and bind the <strong>ItemsSource</strong> to your list of things to create buttons for (<strong>ObservableCollection</strong>). You'll also need a <strong>DataTemplate</strong> to define the <strong>ItemsTemplate</strong> for your list so that each item appears as a button with the margin and command attribute you want.</p>
<p>Here is a good example of binding an ItemsControl to a template</p>
<p><a href="http://www.galasoft-lb.ch/mydotnet/articles/article-2007041201.aspx" rel="nofollow">WPF: Example of ItemsControl bound to an ObservableCollection </a></p>
http://stackoverflow.com/questions/1285244/what-happens-under-the-hood-when-one-method-calls-another/1285394#12853940Answer by Christothes for What happens under the hood when one Method Calls Another?Christothes2009-08-16T21:35:18Z2009-08-16T21:35:18Z<p>(assuming x86)
First you have to understand the <strong>stack</strong>.
Functions use an area of memory called the "stack". You can think of it like a stack of plates, where each plate contains a DWORD (32 bits) of data. There is a register in the CPU that keeps track of the current location in the stack (it's just a virtual memory address) that we are dealing with. It's called the stack pointer and is typically stored in a the esp register.</p>
<p>When functions interact with the stack, they are typically doing one of two things: a <strong>push</strong> or a <strong>pop</strong>. A "push" is when something it put on top of the stack, which consists of moving the stack pointer to the next highest position and then copying something to that new location (the new top). A push "grows the stack" because there is more data being stored there now (more plates). </p>
<p>A "pop" is when the top most item on the stack is "removed", which consists of copying whatever is currently on top of the stack (being pointed to by the esp register) to a cpu register (typically eax) and then moving the stack pointer to one position lower in the stack.</p>
<p>So now we can talk about setting up to call a function.</p>
<p><strong>code</strong></p>
<pre><code>t.B(3, 4);
</code></pre>
<p><strong>assembly</strong></p>
<pre><code>// here is a push we described above. The function we are in currently is
// pushing the value "4" onto the stack. This is one of the arguments to the
// B function we are calling. Note that we push the last argument first
push 4
// here is another push. This time we are pushing the next argument to the
// B function
push 3
call B // this call sets up the context for the next function to run
</code></pre>
<p>When a <strong>call</strong> occurs, we are transitioning the context from the current function to the function being called. The extra peices information the function needs to run are the arguments, which we pushed onto the stack.</p>
<p>The new function now will do some house keeping with the stack to make room for the local variables it has as well as saving the stack pointer into a register so that it can be reverted once the function returns. If this didn't happen, then the calling function would be all disoriented when it regains control with no idea how to access the stuff it has previously put onto the stack, such as it's own local variables or the context for the stack pointer for the function that called it.</p>
<p>Now here it is happening in assembly (stealing this from Havenard).</p>
<pre><code>// Here is the B function making sure that the calling function can get back to
// the it's stack context when B returns.
push ebp
mov ebp, esp
// remember when I said that a push was growing the stack. Well you can also grow
// it just by moving the stack pointer higher, as if there were already more plates there
// you may wonder why we are subtracting (sub) from the stack pointer (esp) to grow it
// the reason is that the stack "grows down" in memory. In other words, as the stack grows
// the memory addresses of the stack grow smaller.
// the reason we are subtracting 4 is because we only need to grow the stack by one plate
// so that we can store the local variable 'result' there. If we had 2 local variables
// we would have subtracted 8
sub esp, 4
// the instructions below are simply moving the static value 1 into the local variable
// 'result'. Local variables are always referenced relative to the bottom of the stack
// context for the current function. This value is stored in the ebp register, which we
// saw earlier in the function setup above.
// so now we think of the location where the 'result' variable is stored as "ebp-4"
// we know that because we put it there.
mov dword ptr [ebp-4], 1 // result = 1 (true)
// eax is a special register that contains the return value of the function. That is why
// you see the value of 'result' (which we know as [ebp-4] in the eax register
mov eax, dword ptr [ebp-4]
// We adjust the stack pointer back to it's previous location
// before we subtracted to make room for our local variable
add esp, 4
// Our work is done now.. time to clean stuff up for our calling function and
// leave things as we found them. Our trusty ebp register stores the old stack pointer
// that our calling function needs to resume it's stack context.
mov esp, ebp
pop ebp
ret
</code></pre>
<p>I'm sure there are some details I've left out, especially on returning from the B function, but this is a pretty good overview I think.</p>
http://stackoverflow.com/questions/1231102/is-it-possible-to-be-notified-when-something-is-written-to-generalpasteboard1Is it possible to be notified when something is written to generalPasteboard?Christothes2009-08-05T03:52:38Z2009-08-06T02:13:27Z
<p>I'm interested in responding to when the user performs a standard Copy to the generalPasteboard as part of the default UIWebView control. I'd like to take some action in response to this.</p>
<p>Is this possible, or would I need to re-implement a custom copy control so that I can be sure to capture the event?</p>
http://stackoverflow.com/questions/1140848/iphone-progressbar/1149175#11491750Answer by Christothes for iPhone ProgressBarChristothes2009-07-19T03:30:02Z2009-07-19T03:30:02Z<p>You could probably also hack one together using an image that looks like the progress bar at it's smallest size and then create a stretchable image with it.</p>
<pre><code>UIImage *progressBarImg= [someImage stretchableImageWithLeftCapWidth:5.0 topCapHeight:0.0];
</code></pre>
<p>Then you could set the image as the backgroundImage for a disabled UIButton and animate the button width incrementally to indicate progress. I haven't tried this, but I think it would work.</p>
http://stackoverflow.com/questions/1058972/split-string-at-specific-line-for-nsstring/1149151#11491511Answer by Christothes for Split String at specific line for NSStringChristothes2009-07-19T03:12:30Z2009-07-19T03:12:30Z<p>I think Kendall has the right idea, but the constrained sizes should be reversed to get the exact height based on word wrapping. Take a sample CGSize that is the same width as your cell, but with a height larger than the max height you expect. In the sample code below, <strong>textSize</strong> will contain the height of your string as it would appear in your cell with an unbounded height.</p>
<pre><code>CGSize sz = CGSizeMake (
yourCellWidth,
999999.0f );
CGSize textSize = [yourString sizeWithFont:yourCellfont
constrainedToSize:sz
lineBreakMode:UILineBreakModeWordWrap];
</code></pre>
<p>If the height is greater than 1500, you could start picking off substrings (substringWithRange) from the end and measuring them like above until you get something >= the remainder above 1500 that was returned by textSize.</p>
http://stackoverflow.com/questions/621389/how-can-i-catch-touch-events-to-a-uitableview-section-header1How can I catch touch events to a UITableView section header?Christothes2009-03-07T05:47:43Z2009-03-07T13:45:50Z
<p>I've implemented a custom view for my UITableView section headers (via viewForHeaderInSection). When in plain view mode, the default behavior seems to be that the cells float underneath the section headers and touch events fall through to the cells underneath. </p>
<p>How can I have the custom section header view respond first to any touch events inside its bounds and take some action, rather than passing the event to the cell underneath the section header view?</p>
http://stackoverflow.com/questions/164174/opinions-regarding-case-complete-or-use-case-software-competitors/185922#1859221Answer by Christothes for Opinions regarding 'Case Complete' or Use Case software competitorsChristothes2008-10-09T04:14:54Z2008-10-09T04:14:54Z<p><a href="http://www.sparxsystems.com/products/ea/index.html" rel="nofollow">Enterprise Architect</a> is pretty good. It's got a free fully featured demo as well.</p>
http://stackoverflow.com/questions/185899/what-is-the-difference-between-a-symbolic-link-and-a-hard-link/185905#1859050Answer by Christothes for What is the difference between a symbolic link and a hard link?Christothes2008-10-09T04:08:34Z2008-10-09T04:08:34Z<p>This may help:
<a href="http://en.wikipedia.org/wiki/Hard_link" rel="nofollow">Hard Link</a></p>
http://stackoverflow.com/questions/94171/what-is-the-best-way-to-display-a-loading-indicator-on-a-wpf-control/158113#1581130Answer by Christothes for what is the best way to display a 'loading' indicator on a WPF controlChristothes2008-10-01T15:09:45Z2008-10-01T15:09:45Z<p>If you are running it on Vista, you could also just use the default wait cursor.</p>
<p>this.Cursor = Cursors.Wait;</p>
http://stackoverflow.com/questions/59099/what-is-the-difference-between-the-wpf-textblock-element-and-label-control/60719#607194Answer by Christothes for What is the difference between the WPF TextBlock element and Label control?Christothes2008-09-13T17:42:44Z2008-09-13T18:03:53Z<p>Another great answer: <a href="http://joshsmithonwpf.wordpress.com/2007/07/04/differences-between-label-and-textblock/" rel="nofollow">Josh Smith on WPF</a></p>
http://stackoverflow.com/questions/11288/wpf-sorting-a-composite-collection1WPF - Sorting a composite collectionChristothes2008-08-14T16:30:49Z2008-08-23T03:48:11Z
<p>So WPF doesn't support standard sorting or filtering behavior for views of CompositeCollections, so what would be a best practice for solving tihs problem. </p>
<p>There are two or more object collections of different types. You want to combine them into a single sortable and filterable collection (withing having to manually implement sort or filter).</p>
<p>One of the approaches I've considered is to create a new object collection with only a few core properties, including the ones that I would want the collection sorted on, and an object instance of each type. </p>
<pre><code>class MyCompositeObject
{
enum ObjectType;
DateTime CreatedDate;
string SomeAttribute;
myObjectType1 Obj1;
myObjectType2 Obj2;
{
class MyCompositeObjects : List<MyCompositeObject> { }
</code></pre>
<p>And then loop through my two object collectiosn to build the new composite collection. Obviously this is a bit of a brute force method, but it would work. I'd get all the default view sorting and filtering behavior on my new composite object collection, and I'd be able to put a data template on it to display my list items properly depending on which type is actually stored in that composite item.</p>
<p>What suggestions are there for doing this in a more elegant way?</p>
http://stackoverflow.com/questions/11288/wpf-sorting-a-composite-collection/23933#239331Answer by Christothes for WPF - Sorting a composite collectionChristothes2008-08-23T03:48:11Z2008-08-23T03:48:11Z<p>Update: I found a much more elegant solution:</p>
<pre><code>class MyCompositeObject
{
DateTime CreatedDate;
string SomeAttribute;
Object Obj1;
{
class MyCompositeObjects : List<MyCompositeObject> { }
</code></pre>
<p>I found that due to reflection, the specific type stored in Obj1 is resolved at runtime and the type specific DataTemplate is applied as expected!</p>
http://stackoverflow.com/questions/23860/what-is-the-best-way-to-learn-recursion/23924#2392413Answer by Christothes for What is the best way to learn recursion?Christothes2008-08-23T03:38:01Z2008-08-23T03:38:01Z<p>One of the simplest examples I have seen is calculating a factorial</p>
<pre><code> unsigned int factorial(unsigned int n)
{
if (n <= 1) return 1;
return n * factorial(n-1);
}
</code></pre>
http://stackoverflow.com/questions/20782/call-project-server-interface-web-method-from-an-msi-installer/23056#230562Answer by Christothes for Call Project Server Interface web method from an msi installerChristothes2008-08-22T18:04:40Z2008-08-22T18:04:40Z<p>It sounds like in the console situation you are running with your current user credentials, which have access to the PSI. When running from the web, it's running with the creds of the IIS application instance. I think you'd either need to set up delegation to pass the session creds to the IIS application, or use some static creds for your IIS app that have access to the PSI.</p>
http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/12978#129780Answer by Christothes for What are the barriers to understanding pointers and what can be done to overcome them?Christothes2008-08-16T03:28:13Z2008-08-16T03:28:13Z<p>I like the house address analogy, but I've always thought of the address being to the mailbox itself. This way you can visualize the concept of dereferencing the pointer (opening the mailbox). </p>
<p>For instance following a linked list:
1) start with your paper with the address
2) Go to the address on the paper
3) Open the mailbox to find a new piece of paper with the next address on it</p>
<p>In a linear linked list, the last mailbox has nothing in it (end of the list). In a circular linked list, the last mailbox has the address of the first mailbox in it.</p>
<p>Note that step 3 is where the dereference occurs and where you'll crash or go wrong when the address is invalid. Assuming you could walk up to the mailbox of an invalid address, imagine that there's a black hole or something in there that turns the world inside out :)</p>
http://stackoverflow.com/questions/5043/how-can-i-get-rich-just-programming/11922#119221Answer by Christothes for How can I get rich just programmingChristothes2008-08-15T03:21:31Z2008-08-15T03:21:31Z<p>Some companies, such as Microsoft, have career tracks for people that are not interested in management but want to remain technical leaders. <a href="http://blogs.technet.com/markrussinovich/about.aspx" rel="nofollow" title="excanvas">Mark Russinovich</a> is one such example. Of course you need the talent and experience to obtain these exec-like technical roles.</p>
http://stackoverflow.com/questions/11288/wpf-sorting-a-composite-collection/11515#115150Answer by Christothes for WPF - Sorting a composite collectionChristothes2008-08-14T19:00:31Z2008-08-14T19:00:31Z<p>Thanks all for the answers.</p>
<p><strong>ageektrapped</strong>: No, it doesn't which is the problem.</p>
<p><strong>lubos</strong>: Thanks - I also considered LINQ to objects, but my concern there is loss of flexibility for typed data templates, which I need to display the objects in my list.</p>
<p><strong>Brian</strong>: Once MyCompositeObject is built, I get sorting and filtering for free as part of an ICollectionView.. The crux of the problem is dealing with the separate object type collections and treating them as one collection. Composite collections are the answer for creating the collection, but not the sorting filtering. </p>
http://stackoverflow.com/questions/1285244/what-happens-under-the-hood-when-one-method-calls-anotherComment by Christothes on What happens under the hood when one Method Calls Another?Christothes2009-08-16T21:41:53Z2009-08-16T21:41:53Z@Neil agreed, but with a very simple example, I think decent overview can be explained. See my attempt below.http://stackoverflow.com/questions/1193768/viewcontroller-responding-to-several-xml-object-classesComment by Christothes on ViewController responding to several XML object classes?Christothes2009-08-02T16:42:36Z2009-08-02T16:42:36ZAre itemsFoo and itemsBar dispalyed in the same UItableview? Are you trying to figure out how do differentiate items foo from bar in the details view?