User apandit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:34:11Z http://stackoverflow.com/feeds/user/6128 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1002232/refreshing-ui-with-databind-in-wpf 1 Refreshing UI with databind in WPF apandit 2009-06-16T15:27:31Z 2009-11-19T14:43:59Z <p>I have a 3 layer deep treeview,</p> <pre> -MAIN ->:SUB1 >:SUB2 >:SUB2 -X:SUB1 X:SUB2 SUB1 SUB1 </pre> <p>where, > and X represent graphics denoting the status of that specific item (determined from backend).</p> <p>I'm using an Observable Dictionary to bind to this tree (and it has an ICollectionChanged event). The structure is like this:</p> <pre> <code> ObservableDictionary&lt;string,CustomClass&gt; mainitems; public class CustomClass{ ObservableDictionary&lt;string, InnerClass&gt; sub1item; // Bunch of properties and methods in this class // INotify not implemented } public class InnerClass{ // Bunch of properties and methods in this class // INotify not implemented public SomeEnum Status{ get{ return this.status; } } } </code> </pre> <p>The graphics, mentioned above, are binded using a custom converter which converts the Status enum to a path so that it can be binded (ie. &lt;img source="{Binding Path=something, Converter={StaticResource someconverter}, Mode=OneWay" /&gt; ).</p> <p><strong>QUESTION:</strong></p> <p>My problem is, when I update the CustomClass's sub1item dictionary with new statuses, it doesn't update it in the UI. I think implementing INotify stuff might work but I don't know where I need to update it and exactly how to do so.</p> <p><strong>Edit:</strong> My XAML template for the treeview is as follows:</p> <pre> <code> &lt;TreeView Name="tvInstance" ItemsSource="{Binding}" TreeViewItem.Selected="tviSelected" IsTextSearchEnabled="True"&gt; &lt;TreeView.ItemContainerStyle&gt; &lt;Style&gt; &lt;Setter Property="TreeViewItem.IsExpanded" Value="{Binding Path=Value.Expanded, Mode=TwoWay}" /&gt; &lt;/Style&gt; &lt;/TreeView.ItemContainerStyle&gt; &lt;TreeView.ItemTemplate&gt; &lt;HierarchicalDataTemplate ItemsSource="{Binding Path=Value.CustomClass}" ItemContainerStyle="{x:Null}"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Label Content="{Binding Path=Key}"/&gt; &lt;/StackPanel&gt; &lt;HierarchicalDataTemplate.ItemTemplate&gt; &lt;HierarchicalDataTemplate ItemsSource="{Binding Path=Value.AnotherClass}"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Image Source="{Binding Path=Value.Status, Converter={StaticResource convertstatus} }" Width="10" Height="10"/&gt; &lt;Label Content="{Binding Path=Key}" /&gt; &lt;/StackPanel&gt; &lt;HierarchicalDataTemplate.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Image Source="{Binding Path=Value, Converter={StaticResource convertstatus} }" Width="10" Height="10"/&gt; &lt;Label Content="{Binding Path=Key}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/HierarchicalDataTemplate.ItemTemplate&gt; &lt;/HierarchicalDataTemplate&gt; &lt;/HierarchicalDataTemplate.ItemTemplate&gt; &lt;/HierarchicalDataTemplate&gt; &lt;/TreeView.ItemTemplate&gt; &lt;/TreeView&gt; </code> </pre> <p>EDIT: After adding all INotifyProperty events in my mainclass, my CustomClass, and my InnerClass, it still doesn't work. I'm using the Dr. WPF version of ObservableDictionary (and using a dictionary is crucial to my application since I need to do lots of lookups). Help!</p> http://stackoverflow.com/questions/1208176/binding-to-a-sum-of-selecteditems-in-wpf-gridview/1208274#1208274 2 Answer by apandit for Binding to a sum of SelectedItems in WPF GridView apandit 2009-07-30T18:01:38Z 2009-07-30T18:01:38Z <p>You're going to have to use a converter for this. An example: Xaml:</p> <pre> <code> &lt;MultiBinding StringFormat=" {0} Files Selected. {1} MB"> &lt;Binding ElementName="FilesList" Path="SelectedItems.Count">&lt;/Binding> &lt;Binding ElementName="FilesList" Path="SelectedItems" Converter="{StaticResource sumconverter}">&lt;/Binding> &lt;/MultiBinding> </code> </pre> <p>Codebehind:</p> <pre> <code> [ValueConversion(typeof(ListViewItem[]), typeof(string))] class SumConverter : IValueConverter { public object Convert( object value, Type targetType, object parameter, CultureInfo culture ) { int size = 0; ListViewItem[] items = (ListViewItem[])value; if(items != null){ foreach(var lvi in items){ Someclass sc = lvi.content as Someclass; if(sc!=null){ size += sc.Size; } } } return (size / 1000) + "MB"; } public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture ) { return null; } } </code> </pre> http://stackoverflow.com/questions/1133761/css-and-order-of-styles/1133787#1133787 2 Answer by apandit for CSS and order of styles apandit 2009-07-15T20:24:49Z 2009-07-16T18:26:33Z <p>When you write a style like "text_left", you might want to use !important. This will override any other styles that set that value.</p> <p>The following works.</p> <pre> <code> .text_left { text-align:left !important; } .text_right { text-align:right !important; } .text_cen { text-align:center !important; } .form_container_header { width:95%; margin-left: auto ; margin-right: auto ; margin-bottom:35px; text-align:center; } &lt;div class="form_container_header text_left"> EDIT: Please read the comments on this answer before doing this. There are some concerns about using !important recklessly. </code> </pre> http://stackoverflow.com/questions/1074450/sed-replace-part-of-a-line/1074469#1074469 0 Answer by apandit for sed: Replace part of a line. apandit 2009-07-02T13:53:10Z 2009-07-02T13:53:10Z <p>You're escaping your ( and ). I'm pretty sure you don't need to do that. Try:</p> <pre> sed -rne 's/(dbservername)[[:blank:]]+\([[:alpha:]]+\)/\1 yyy/gip' </pre> http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065512#1065512 0 Answer by apandit for How can I find the Month when all I have is the week number in c# apandit 2009-06-30T19:22:51Z 2009-06-30T21:38:42Z <p>Note: Don't use this code. It doesn't work too well.</p> <p>EDIT: Fixed year, month, day thing (was month, day, y ear before)</p> <pre> <code> int year = 8; int weeks = 25; int days = weeks * 7; int month = 1; int[] cutoff = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; for(int i = 0; i &lt; 12; i++){ if(days > cutoff[i]){ days -= cutoff[i]; month++; } else { break; } } DateTime dt = new DateTime(year, month, day); </code> </pre> http://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#1049356 2 Answer by apandit for WPF Data Binding : enable/disable a control based on content of var? apandit 2009-06-26T14:09:54Z 2009-06-26T21:27:15Z <p>Since you're probably looking to bind the IsEnabled property of the button based on a string, try making a converter for it.</p> <p>Ie... <pre><code> &lt;StackPanel&gt; &lt;StackPanel.Resources&gt; &lt;local:SomeStringConverter mystringtoboolconverter /&gt; &lt;/StackPanel.Resources&gt; &lt;Button IsEnabled="{Binding ElementName=mytree, Path=SelectedItem.Header, Converter={StaticResource mystringtoboolconverter}}" /&gt; &lt;StackPanel&gt; </code></pre></p> <p>and the converter:</p> <pre> <code> [ValueConversion(typeof(string), typeof(bool))] class SomeStringConverter : IValueConverter { public object Convert( object value, Type targetType, object parameter, CultureInfo culture ) { string myheader = (string)value; if(myhead == "something"){ return true; } else { return false; } } public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture ) { return null; } } </code> </pre> <p>EDIT: Since the OP wanted to bind to a variable, something like this needs to be done:</p> <pre> <code> public class SomeClass : INotifyPropertyChanged { private string _somestring; public string SomeString{ get{return _somestring;} set{ _somestring = value; OnPropertyChanged("SomeString");} } public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propertyName) { if (this.PropertyChanged != null) { this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } </code> </pre> <p>Then, change the above binding expression to:</p> <pre> {Binding Path=SomeString, Converter={StaticResource mystringtoboolconverter}} </pre> <p>Note, you MUST implement INotifyPropertyChanged for your UI to be updated.</p> http://stackoverflow.com/questions/1050737/wpf-change-a-buttons-content-in-a-style/1050781#1050781 1 Answer by apandit for WPF - Change a button's content in a style? apandit 2009-06-26T19:21:06Z 2009-06-26T19:21:06Z <p>Pretty sure you'd want to use a control template in this sort of situation. Something like:</p> <pre> <code> &lt;style&gt; &lt;Setter Property="Content"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;Image Img="something.jpg" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/style&gt;</code> </pre> <p>And add a control template in the trigger for the on-hover.</p> <p>Here's a good <a href="http://www.wpftutorial.net/Templates.html" rel="nofollow">link</a></p> http://stackoverflow.com/questions/1015126/observable-collection-property-changed-on-item-in-the-collection/1015330#1015330 0 Answer by apandit for Observable Collection Property Changed on Item in the Collection apandit 2009-06-18T21:36:48Z 2009-06-18T21:42:13Z <p>This works. Whenever the collection changes, it re-sorts the collection. Might be doable in a more efficient way but this is the gist of it.</p> <pre> <code> public partial class TestWindow : Window { ObservableCollection&lt;TestClass&gt; oc; public TestWindow() { InitializeComponent(); // Fill in the OC for testing oc = new ObservableCollection&lt;TestClass&gt;(); foreach( char c in "abcdefghieeddjko" ) { oc.Add( new TestClass( c.ToString(), c.ToString(), c.GetHashCode() ) ); } lstbox.ItemsSource = oc; // Set up the sorting (this is how you did it.. doesn't work) lstbox.Items.SortDescriptions.Add( new SortDescription("A", ListSortDirection.Ascending) ); // This is how we're going to do it oc.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler( oc_Sort ); } void oc_Sort( object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e ) { // This sorts the oc and returns IEnumerable var items = oc.OrderBy&lt;TestClass, int&gt;( ( x ) =&gt; ( x.C ) ); // Rest converst IEnumerable back to OC and assigns it ObservableCollection&lt;TestClass&gt; temp = new ObservableCollection&lt;TestClass&gt;(); foreach( var item in items ) { temp.Add( item ); } oc = temp; } private void Button_Click( object sender, RoutedEventArgs e ) { string a = "grrrr"; string b = "ddddd"; int c = 383857; oc.Add( new TestClass( a, b, c ) ); } } public class TestClass : INotifyPropertyChanged { private string a; private string b; private int c; public TestClass( string f, string g, int i ) { a = f; b = g; c = i; } public string A { get { return a; } set { a = value; OnPropertyChanged( "A" ); } } public string B { get { return b; } set { b = value; OnPropertyChanged( "B" ); } } public int C { get { return c; } set { c = value; OnPropertyChanged( "C" ); } } #region onpropertychanged public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged( string propertyName ) { if( this.PropertyChanged != null ) { PropertyChanged( this, new PropertyChangedEventArgs( propertyName ) ); } } #endregion } </code> </pre> <p>XAML:</p> <pre> &lt;Window x:Class="ServiceManager.TestWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="TestWindow" Height="500" Width="500"&gt; &lt;DockPanel&gt; &lt;ListBox ItemsSource="{Binding}" x:Name="lstbox"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Label Content="{Binding Path=A}"/&gt; &lt;Label Content="{Binding Path=B}"/&gt; &lt;Label Content="{Binding Path=C}"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; &lt;Button Click="Button_Click" Content="Click" /&gt; &lt;/DockPanel&gt; &lt;/Window&gt; </pre> http://stackoverflow.com/questions/1015016/return-enum-from-function-c/1015032#1015032 0 Answer by apandit for Return Enum From Function C# apandit 2009-06-18T20:29:46Z 2009-06-18T20:29:46Z <p>Use types... ie..</p> <pre> <code> public Type ChooseCase{ get{ return typeof(Uppercase); } } </code> </pre> http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007510#1007510 1 Answer by apandit for Anonymous method as parameter to BeginInvoke? apandit 2009-06-17T14:45:39Z 2009-06-17T15:07:31Z <p>I've tried a bunch of different methods but none work. ie...</p> <pre> <code> // Fails -- cannot convert lamda to System.Delegate mnMnu.BeginInvoke( (DIServer svr)=> {ConfigureMainMenu(server);}, new object[] server); // Fails -- cannot convert anonymous method to System.Delegate mnMnu.BeginInvoke( new delegate(DIServer svr){ConfigureMainMenu(server);}, new object[] server); </code> </pre> <p>So, the short answer is no. You could create short helper delegates in the given context and use lamdas to make it a bit neater but that's pretty much it.</p> <p>EDIT: Turns out I'm wrong. The methodinvoker answer below works. See this <a href="http://www.csharper.net/blog/methodinvoker%5F%5F%5Fanonymous%5Fmethods%5F%5F%5Fteh%5Fr0x0r.aspx" rel="nofollow">page</a></p> http://stackoverflow.com/questions/997968/how-can-i-call-a-static-method-from-a-class-if-all-i-have-is-a-string-of-the-clas/998004#998004 1 Answer by apandit for How can I call a static method from a class if all I have is a string of the class name? apandit 2009-06-15T19:46:00Z 2009-06-15T19:46:00Z <p>Reflection (PHP 5 supports it) is how you'd do this. Read that page and you should be able to figure out how to invoke the function like that.</p> <pre><code> $func = new ReflectionFunction('somefunction'); $func->invoke(); </code></pre> <p><a href="http://nz.php.net/oop5.reflection" rel="nofollow">Documentation Link</a></p> http://stackoverflow.com/questions/997949/string-and-repeater/997975#997975 4 Answer by apandit for string [,] and repeater apandit 2009-06-15T19:42:10Z 2009-06-15T19:42:10Z <p>Looks like you should be using enums in this case... ie...</p> <pre> <code> enum Month = {January=1, February, March}; Month month = Month.January; Month alsomonth = (Month)(1); // Should work </code> </pre> http://stackoverflow.com/questions/987968/fast-way-to-manually-mod-a-number/988031#988031 6 Answer by apandit for Fast way to manually mod a number apandit 2009-06-12T17:43:58Z 2009-06-12T19:17:07Z <p>Fast Modular Exponentiation (I think that's what it's called) might work.</p> <pre> Given a, b, c and a^b (mod c): 1. Write b as a sum of powers of 2. (If b=72, this is 2^6 + 2^3 ) 2. Do: (1) a^2 (mod c) = a* (2) (a*)^2 (mod c) = a* (3) (a*)^2 (mod c) = a* ... (n) (a*)^2 (mod c) = a* 3. Using the a* from above, multiply the a* for the powers of 2 you identified. For example: b = 72, use a* at 3 and a* at 6. a*(3) x a*(6) (mod c) 4. Do the previous step one multiplication at a time and at the end, you'll have a^b % c. </pre> <p>Now, how you're going to do that with data types, I don't know. As long as your datatype can support c^2, i think you'll be fine.</p> <p>If using strings, just create string versions of add, subtract, and multiply (not too hard). This method should be quick enough doing that. (and you can start step 1 by a mod c so that a is never greater than c).</p> <p>EDIT: Oh look, a wiki page on <a href="http://en.wikipedia.org/wiki/Modular%5Fexponentiation" rel="nofollow">Modular Exponentiation</a>.</p> http://stackoverflow.com/questions/970523/generating-xsd-for-serialized-xml 0 Generating XSD for serialized XML apandit 2009-06-09T14:52:12Z 2009-06-09T15:32:15Z <p>Currently, I have an xml file that looks like this...</p> <pre> <code> &lt;ArrayOfService&gt; &lt;Service&gt; &lt;Name&gt; Something &lt;/Name&gt; &lt;Id&gt; 8003 &lt;/Id&gt; &lt;/Service&gt; &lt;/ArrayOfService&gt; </code> </pre> <p>This is automatically generated from a class that looks like this...</p> <pre><code> public class Service{ public string Name; public int Id; public Service(){ } } </code></pre> <p>To turn the class into XML, I use...</p> <pre><code> XmlSerializer xs = new XmlSerializer( typeof(Service) ); xs.Serialize( context.Response.OutputStream, FunctionReturnsTypeService() ); </code></pre> <p>Is there any way to also automatically generate an XSD like this?</p> <p>EDIT:</p> <p>Also, is there any way to add this schema to the xml as I'm serializing it?</p> http://stackoverflow.com/questions/911248/net-event-for-application-losing-and-gaining-focus/911274#911274 0 Answer by apandit for .NET Event for Application losing and gaining focus apandit 2009-05-26T15:22:10Z 2009-05-26T15:29:14Z <p>For WPF, <em>FocusChanged</em> on the window. There should be a similar event in Winforms. You can find out using the intellisense on Visual Studio.</p> <p><em>Activated/Deactivated</em> seems to be standard though.</p> http://stackoverflow.com/questions/139984/replacing-quicktest-professional-qtp-i-need-a-tool-to-test-java-applications 2 Replacing QuickTest Professional (QTP) -- I need a tool to test Java Applications apandit 2008-09-26T14:47:20Z 2009-02-26T23:56:54Z <p>Right now, I'm testing a Java Application with QTP (really expensive software). </p> <p>I decided to move my web application testing to Selenium (using Java) and I was wondering if there were any other good tools to test my Java Application or if there are some libraries that tell allow me to click/type into Java Applications like Selenium does for web applications.</p> <p>I'm looking for something like Selenium but for Java Applications (ie. if you wanted to test Eclipse IDE, you'd use this).</p> http://stackoverflow.com/questions/158151/how-can-i-save-a-screenshot-directly-to-a-file-in-windows/158273#158273 0 Answer by apandit for How can I save a screenshot directly to a file in Windows? apandit 2008-10-01T15:40:05Z 2008-10-01T15:40:05Z <p>You may want something like this: <br /> https://addons.mozilla.org/en-US/firefox/addon/5648<br /></p> <p>I think there is a version for IE and also with Explorer Integration. Pretty good software.</p> http://stackoverflow.com/questions/157747/vbscript-using-error-handling 2 VBScript -- Using error handling apandit 2008-10-01T14:04:32Z 2008-10-01T14:36:39Z <p>Hi all,</p> <p>I want to use VBScript to catch errors and log them (ie on error "log something") then resume the next line of the script.</p> <p>For example,</p> <pre> On Error Resume Next 'Do Step 1 'Do Step 2 'Do Step 3 </pre> <p>When an error occurs on step 1, I want it to log that error (or perform other custom functions with it) then resume at step 2. Is this possible? and how can I implement it?</p> <p>EDIT: Can I do something like this?</p> <pre> On Error Resume myErrCatch 'Do step 1 'Do step 2 'Do step 3 myErrCatch: 'log error Resume Next </pre> http://stackoverflow.com/questions/157761/date-time-formats-for-various-countries/157778#157778 1 Answer by apandit for Date/time formats for various countries apandit 2008-10-01T14:10:08Z 2008-10-01T14:10:08Z <p>This webpage shows how to use date and time based on culture settings:<br /> <a href="http://msdn.microsoft.com/en-us/library/5hh873ya.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/5hh873ya.aspx</a></p> <p>I'm assuming you're programming something so this would probably help you create a date-time based on the environmental settings.</p> <p>As for using Windows settings vs researched settings, go with Windows settings if you're making something for Windows.</p> http://stackoverflow.com/questions/153286/what-to-learn-first/153314#153314 9 Answer by apandit for What to learn first? apandit 2008-09-30T14:30:41Z 2008-09-30T14:30:41Z <p>You should learn at least 1 compiled language (like C# or Java) and 1 Script Language (Python, Ruby, etc). This is usually enough to help most developers succeed at what they do, regardless of the age of the language.</p> <p>As for new vs old, I'd stick with C# for now as it's pretty popular. Learning a new language wouldn't be too bad though.</p> http://stackoverflow.com/questions/141606/how-can-i-hide-content-in-a-html-file-from-search-engines/141617#141617 0 Answer by apandit for How can I hide content in a HTML file from search engines? apandit 2008-09-26T20:01:43Z 2008-09-26T20:01:43Z <p>Hmm... maybe you can create a &lt;div&gt; with position: absolute; z-index: 99 (should be greater than 1); top: 0px; -- this should put the note at the top of the page but you could place the actual code near the bottom... search engines go linearly through the source and not by position I'd assume.</p> <p>Edit: And this is fail if you decide you want it located somewhere else since this is an absolute location-- it'll just break down.. :\. go with the javascript</p> http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/116302#116302 1 Answer by apandit for What is the best IDE for PHP ? apandit 2008-09-22T17:37:56Z 2008-09-22T17:37:56Z <p><a href="http://www.ibm.com/developerworks/opensource/library/os-php-ide/index.html" rel="nofollow">http://www.ibm.com/developerworks/opensource/library/os-php-ide/index.html</a></p> <p>Personally, I love Notepad++... :D . The above link compares some of the better IDEs and the best ones aren't free.</p> <p>I'd recommend Komodo 4.4 though (I used the trial version) since it was awesome. Better than Notepad++, but not free... :(</p> http://stackoverflow.com/questions/116261/software-for-managing-medium-sized-projects/116290#116290 0 Answer by apandit for Software for managing medium sized projects apandit 2008-09-22T17:34:57Z 2008-09-22T17:34:57Z <p>You might want to try out Mantis (www.mantisbt.org). It is a little cumbersome at first, but with a little bit of customization, it will work for you. It has SVN integration, and a bunch of other stuff which I haven't used yet... :|... such as Mobile support, Wiki support, etc.</p> <p>And it's OSS (Open Source Software). Written in PHP, works with MySQL, or PostgreSQL. Just check it out, it's good.</p> <p><a href="http://www.mantisbt.org/" rel="nofollow">http://www.mantisbt.org/</a></p> http://stackoverflow.com/questions/115819/lightweight-x-window-manager-environment/115832#115832 4 Answer by apandit for Lightweight X window manager/environment apandit 2008-09-22T16:17:22Z 2008-09-22T16:17:22Z <p>Fluxbox is a good alternative and very lightweight.</p> <p><a href="http://www.fluxbox.org/" rel="nofollow">http://www.fluxbox.org/</a></p> http://stackoverflow.com/questions/105349/bash-prompt-in-os-x-terminal-broken/105363#105363 0 Answer by apandit for Bash prompt in OS X terminal broken apandit 2008-09-19T20:33:57Z 2008-09-19T20:33:57Z <p>If the problem seems to be with the newline, try putting \r\n instead of just \n and see if it makes a difference.</p> http://stackoverflow.com/questions/105190/should-i-learn-assembly-programming/105211#105211 3 Answer by apandit for Should I learn Assembly programming? apandit 2008-09-19T20:20:14Z 2008-09-19T20:20:14Z <p>As just a developer, learning Assembly language may not be a very good investment for you. If you're looking at a career in enterprise programming (ie. Java Applications, .NET applications, Web applications), Assembly probably isn't for you. <br /></p> <p>However, if you are going into engineering (particularly Electrical or Computer), then, yes, you should learn it. If you're not going to bother with embedded devices, Assembly isn't for you.</p> http://stackoverflow.com/questions/105100/css-display-differences/105117#105117 8 Answer by apandit for CSS: Display differences apandit 2008-09-19T20:10:24Z 2008-09-19T20:10:24Z <p>display: block <br />will cause the object to force other objects within a container on to a new line.</p> <p>display: inline <br />tries to display the object on the same line as other objects.</p> <p>display:block</p> <pre> Item 1 Item 2 Item 3 </pre> <p>display:inline</p> <pre> Item 1 Item 2 Item 3 </pre> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87335#87335 0 Answer by apandit for Calculating frames per second in a game apandit 2008-09-17T20:33:34Z 2008-09-17T20:33:48Z <p>Increment a counter every time you render a screen and clear that counter for some time interval over which you want to measure the frame-rate.</p> <p>Ie. Every 3 seconds, get counter/3 and then clear the counter.</p> http://stackoverflow.com/questions/87222/representing-crlf-using-hex-in-c/87243#87243 0 Answer by apandit for representing CRLF using Hex in C# apandit 2008-09-17T20:26:04Z 2008-09-17T20:26:04Z <p>\r\n... ie.</p> <pre> Console.Write("This is a test of CRLF. \r\n This is on the next line."); </pre> <p><a href="http://comstock-software.com/blogs/aspnet2csharp/2007/03/c-char-for-crlf-in-ascii-hex-decimal_24.html" rel="nofollow">See this article.</a></p> http://stackoverflow.com/questions/83225/how-to-set-up-the-browser-scrollbar-to-scroll-part-of-a-page/83264#83264 0 Answer by apandit for How to set up the browser scrollbar to scroll part of a page? apandit 2008-09-17T13:35:01Z 2008-09-17T13:40:52Z <p>For a div, you can add in the cSS</p> <pre> overflow: auto </pre> <p>For example,</p> <pre> &lt;div style="overflow:auto; height: 500px"&gt;Some really long text&lt;/div&gt; </pre> <p>Edit: After looking at the site you posted, you probably don't want this. What he does in his website is make the layout as fixed (position: fixed) and assigns it a higher z-index than the text, which is lower z-index.</p> <p>For example:</p> <pre> &lt;div class="highz"&gt; //Put random stuff here. it'll be fixed &lt;/div&gt; &lt;div class="lowz"&gt; Put stuff here you want to scroll and position it.&lt/div&gt; </pre> <p>with css file</p> <pre> div.highz {position: fixed; z-index: 2;} div.lowz {position: fixed; z-index: 1;} </pre> http://stackoverflow.com/questions/1208176/binding-to-a-sum-of-selecteditems-in-wpf-gridview/1208274#1208274 Comment by apandit on Binding to a sum of SelectedItems in WPF GridView apandit 2009-07-31T15:27:56Z 2009-07-31T15:27:56Z It should automatically refresh on selectionChanged since you're using SelectedItems as your binding source. If that doesn't work, you could always try to access the binding and refresh it. http://stackoverflow.com/questions/1160474/interacting-with-the-browser-using-c Comment by apandit on interacting with the browser using C# apandit 2009-07-21T17:25:45Z 2009-07-21T17:25:45Z To clarify your question, do you want to open an instance of a browser with filled in form values? Or do you want to submit form values to a webapp and show the result in the Winform app? http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065512#1065512 Comment by apandit on How can I find the Month when all I have is the week number in c# apandit 2009-06-30T19:26:11Z 2009-06-30T19:26:11Z it fails for more than that, lol http://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#1049356 Comment by apandit on WPF Data Binding : enable/disable a control based on content of var? apandit 2009-06-26T21:21:48Z 2009-06-26T21:21:48Z You have to add an OnPropertyChanged to the var then. I've got it binded to a selection change in the List right now. If you want something like, var something = somethingnew; and have that reflected in the UI, you're going to have to make that var a property and implement INotifyPropertyChanged... I'll add this to my post. http://stackoverflow.com/questions/1050953/wpf-toolbar-how-to-remove-grip-and-overflow Comment by apandit on WPF ToolBar: how to remove grip and overflow apandit 2009-06-26T19:56:37Z 2009-06-26T19:56:37Z You could probably do it by overwriting the control template... but I wouldn't recommend it. http://stackoverflow.com/questions/1049311/wpf-data-binding-enable-disable-a-control-based-on-content-of-var/1049356#1049356 Comment by apandit on WPF Data Binding : enable/disable a control based on content of var? apandit 2009-06-26T19:43:12Z 2009-06-26T19:43:12Z basically, yeah. The button's value changes when the SelectedItem changes. If you want to change it based on something else, bind it to that instead. The most important part is that you're binding a string to the button and using a converter to make it a bool. http://stackoverflow.com/questions/1049446/wpf-how-do-i-prevent-tearing-with-writeablebitmap/1050785#1050785 Comment by apandit on WPF: How do I prevent tearing with WriteableBitmap? apandit 2009-06-26T19:23:16Z 2009-06-26T19:23:16Z I concur. BeginInvoke() is asynchronous. Use Invoke() and it should synchronize nicely (though you might notice lag). http://stackoverflow.com/questions/1033809/should-a-sln-be-committed-to-source-control Comment by apandit on Should a .sln be committed to source control? apandit 2009-06-23T17:27:32Z 2009-06-23T17:27:32Z I believe it's the .SUO file you DON'T want to commit. http://stackoverflow.com/questions/1015126/observable-collection-property-changed-on-item-in-the-collection Comment by apandit on Observable Collection Property Changed on Item in the Collection apandit 2009-06-18T21:19:12Z 2009-06-18T21:19:12Z So, you're binding your OC to a Listbox and have the sortdescription on the listbox? http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007612#1007612 Comment by apandit on Anonymous method as parameter to BeginInvoke? apandit 2009-06-17T15:05:06Z 2009-06-17T15:05:06Z what library is MethodInvoker from? using System.? http://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lost Comment by apandit on Treeview Item Loses Selection When Focus Is Lost apandit 2009-06-17T15:00:32Z 2009-06-17T15:00:32Z I would assume it's a bug in WPF. Report it perhaps? http://stackoverflow.com/questions/1007438/anonymous-method-as-parameter-to-begininvoke/1007554#1007554 Comment by apandit on Anonymous method as parameter to BeginInvoke? apandit 2009-06-17T14:55:31Z 2009-06-17T14:55:31Z Doesn't work, can't convert type lamda to System.Delegate http://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lost Comment by apandit on Treeview Item Loses Selection When Focus Is Lost apandit 2009-06-16T21:21:08Z 2009-06-16T21:21:08Z And it seems that double clicking the child element works correctly but not single clicking... :S http://stackoverflow.com/questions/1003883/treeview-item-loses-selection-when-focus-is-lost Comment by apandit on Treeview Item Loses Selection When Focus Is Lost apandit 2009-06-16T21:04:25Z 2009-06-16T21:04:25Z Just a little refactoring comment, instead of putting the Selected event in each treeview item, you can: &lt;TreeView Margin=&quot;6&quot; TreeViewItem.Selected=&quot;TreeViewItem_Selected&quot; /&gt;; http://stackoverflow.com/questions/1002232/refreshing-ui-with-databind-in-wpf/1002345#1002345 Comment by apandit on Refreshing UI with databind in WPF apandit 2009-06-16T16:55:27Z 2009-06-16T16:55:27Z I've attempted everything but adding the sub1item.CollectionChanged +=... line (which I can't do since my Dictionary's CollectionChanged event is protected). Also, I noticed you used NotifyChange and NotifyPropertyChanged and I assume they were the same... Any other ideas?