User Shaharyar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:14:46Z http://stackoverflow.com/feeds/user/113142 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1629646/asp-net-mvc2-partial-class-with-dataannotations-vs-formviewmodel 0 ASP.NET MVC2 : Partial Class with DataAnnotations vs. FormViewModel Shaharyar 2009-10-27T09:29:35Z 2009-10-27T18:44:29Z <p>Hello Guys,</p> <p>I am currently working on a MVC2-Application and want to make use of DataAnnotations.</p> <p>From the NerdDinner tutorial I learned that it is better to use a FormViewModel class to store lists of other tables for the create and edit views.</p> <p>After using a FormViewModel I need to alter my code in the Views from <code>Model.Name</code> to <code>Model.Object.Name</code> - this actually kills all validation defined in the Object class as I pass that object to the FormViewModel's constructor.</p> <p>How can I still make DataAnnotations and Validation work with the FormViewModel approach?</p> <p>Wouldn't it be better to just create a Object Partial Class and let it do the same as you do with the <code>FormViewModel</code>?</p> <p>What are your thoughts on this matter and how did you solve this?</p> <p>Thanks for all help!</p> http://stackoverflow.com/questions/1563029/how-to-stop-a-running-jar-file-with-a-batch-script 0 How to stop a running *.JAR file with a batch script? Shaharyar 2009-10-13T21:34:03Z 2009-10-25T18:05:10Z <p>Hello everybody!</p> <p>We are facing trouble restarting closing a running *.JAR file <code>started with the "java -cp"</code>.</p> <p>Killing java.exe worked fine.</p> <p>But... isn't there any smoother way for the application? (It saves data on shut-down)</p> <p>Also, how can one simulate any key input at the following message <code>"Enter any key to continue..."</code> with a batch file?</p> <p>Thanks for all help!</p> http://stackoverflow.com/questions/1575401/java-encryption-using-xtea/1575432#1575432 1 Answer by Shaharyar for Java Encryption using XTEA Shaharyar 2009-10-15T22:14:29Z 2009-10-15T22:14:29Z <p>After searching on google I found out that you can manually implement a XTEA scheme with using the BlockCipher interface.</p> <p><a href="http://www.h2database.com/html/main.html" rel="nofollow">H2 Database</a> implemented a version with this interface which you can find here: <a href="http://code.google.com/p/h2database/source/browse/trunk/h2/src/main/org/h2/security/XTEA.java" rel="nofollow">XTEA.JAVA on code.google.com</a></p> <p>The problem here is that you'll need to modify the <strong>encrypt/decrypt(byte[], byte[], int)</strong> methods to match your needs. </p> http://stackoverflow.com/questions/1361396/being-a-better-more-efficient-plc-programmer 4 Being a better / more efficient PLC Programmer Shaharyar 2009-09-01T09:08:33Z 2009-10-15T12:49:12Z <p>Hello guys!</p> <p>The company I am doing my intership/appretinceship in, does mainly PLC programming with Siemens modules. Comes from the fact that most of the people were electric guys and switched over to engineering.</p> <p>My problem as newbie there is, that I can't be really efficient and fast when I code PLC software.</p> <p>Even though I am very efficient when I am coding C# or Java in VS/Eclipse</p> <p>It really bothers that I can't be really productive with PLC as opposed to the "real" programming languages.</p> <ul> <li>Is it the lack of code completion?</li> <li>Is it the lack of overall knowledge on the automation side?</li> <li>Is it the lack of innovation in PLC as opposed to VS (LINQ, Dynamics, Lambda)</li> </ul> <p>Have you guys any good experience with PLC? And how did you get productive with it?</p> <p>Notice: It is my last year at the company, that's also why I want to be very productive.</p> <p>Looking forward to many great answers!</p> http://stackoverflow.com/questions/1567874/enable-or-disable-mutiple-controls-in-silverlight/1567905#1567905 1 Answer by Shaharyar for Enable or Disable mutiple controls in Silverlight Shaharyar 2009-10-14T17:48:06Z 2009-10-14T17:48:06Z <p>Usually I always create a ControlHandler Class that does all the updates on my controls. (Just to separate concerns)</p> <p>Recently we had to reset all controls on the form and didn't want to loop through every single control.</p> <p>All control-related data logic gets updated in the ControlHandler class.</p> <p>We then only apply the values appropriate values / properties onto our controls.</p> <p>This is a workaround but worked pretty well and also cleanly for us.</p> <p>There are, of course, better ways to solve that.. </p> http://stackoverflow.com/questions/1563028/why-it-is-necessary-to-put-comments-on-check-ins/1563036#1563036 2 Answer by Shaharyar for Why it is necessary to put comments on check-ins? Shaharyar 2009-10-13T21:35:11Z 2009-10-13T23:18:17Z <p>It sure is worth it!</p> <ul> <li>We have made the experience that even putting a single word can help you get into the project <strong>when you're new</strong> to it.</li> </ul> <p>In our company we have lots of projects that don't get updated very frequently.</p> <ul> <li><p>Not having a comment because of laziness <strong>doubles the time to get what actually has changed</strong> in the code and to even get an idea of what you were trying to do.</p></li> <li><p>Recently we had this issue when we were tracking a bug and <strong>lost a lot of time</strong> just understand the coding of the feature that was implemented in those comment-less check-ins. (2k+ LOC).</p></li> </ul> <p>So always remember to write a little, precise phrase, it's definitely <strong>worth the seconds rather than the hours</strong> later on!</p> <p>And the history looks darn attractive when there is no white space ;-)</p> http://stackoverflow.com/questions/1559886/how-to-categorize-sql-server-data-access-for-papers 0 How to categorize SQL Server data access for papers? Shaharyar 2009-10-13T12:24:12Z 2009-10-13T13:20:56Z <p>Hello everybody!</p> <p>We are writing this paper about database access in a web app and have to distinguish between the different categories of the database access layer.</p> <p>All books and PDF's given us provide only information to JDBC or OLEDB.</p> <p>Researching on the web brought me to the point that access to a Microsoft SQL Server trough <code>linq-to-entities</code> or <code>linq-to-sql</code> through ADO.Net can't be put under the same category as <strong>JDBC</strong> or <strong>OLEDB</strong> (<code>middleware</code>).</p> <p>What would be the exact definition/category for Microsoft SQL Server-access through the .NET facilities such as LINQ2Entities or LINQ2SQL?</p> http://stackoverflow.com/questions/1543388/xml-dom-storing-key-value-pairs/1543446#1543446 1 Answer by Shaharyar for XML Dom: storing key/value pairs Shaharyar 2009-10-09T12:18:54Z 2009-10-09T12:18:54Z <p>The default way of saving XML files is Way 2, as a lot of XML files use that markup.</p> <p>But Personally I prefer Way 1 for markup over the others.</p> <p>It produces way smaller files in terms to readability and linecount, gives a good overview of the items contained in another, bigger element and you don't have to bother creating an end-element tag for each item used in the file (except the container items).</p> <p>But at the ent of the day, it comes to what YOU prefer and are comfortable with.</p> http://stackoverflow.com/questions/1542164/how-to-check-postback/1542209#1542209 0 Answer by Shaharyar for how to check postback Shaharyar 2009-10-09T06:57:38Z 2009-10-09T10:41:55Z <p>In ASP.NET <strong>MVC</strong> the only element, that theoretically does a PostBack is an element in the head section.</p> <p>Although you can check if it was a Ajax Request was with the Request object.</p> http://stackoverflow.com/questions/1541889/filter-user-input-paragraph-for-links-smileys/1542791#1542791 -1 Answer by Shaharyar for Filter user input (paragraph) for links + smileys Shaharyar 2009-10-09T09:29:55Z 2009-10-09T09:29:55Z <p>After trying out a little I came up with the following:</p> <p>Regex for small URL's till 3 charactes (<strong>aaa</strong>.com): </p> <p>Still working on it because it also catches the corresponding part in the long URL wwww.aaaaaaaaa**aaa.com**</p> <p>Regex for longer URL's (<strong>aaa..*</strong>.com): </p> <p><code>'%(http://){0,1}(([w]{0}|[w]{3}\.)){0,1}([a]{3,})\.[a-z]{2,3}%'</code></p> <p>Regex for parsing emails should be coming soon:</p> <p><code>working on a solution</code></p> <p>Regex for catching smilies : </p> <p><code>'/(\:|\;)[-]{0,1}(\)|\()/'</code></p> <p>filters</p> <ul> <li>:)</li> <li>:( </li> <li>:-)</li> <li>:-(</li> <li>;)</li> <li>;( </li> <li>;-) </li> <li>;-(</li> </ul> http://stackoverflow.com/questions/1542346/how-to-handle-events-for-icon-tray-in-windows-using-c/1542367#1542367 1 Answer by Shaharyar for How to handle events for icon tray in windows using C# Shaharyar 2009-10-09T07:39:39Z 2009-10-09T07:39:39Z <p>In a .NET Forms Application the System Tray control { NotifyIcon } provides following Events to check what you want to achieve:</p> <ul> <li>Click </li> <li>DoubleClick </li> <li>MouseClick</li> <li>MouseDoubleClick</li> </ul> <p>You can put the logic into these event handlers.</p> <p>I hope this one helps out!</p> http://stackoverflow.com/questions/1542081/netbeans-entering-items-in-a-jcombobox/1542118#1542118 -1 Answer by Shaharyar for Netbeans - Entering items in a jComboBox Shaharyar 2009-10-09T06:30:22Z 2009-10-09T06:30:22Z <p>There is an approach with the DefaultComboBoxModel that I found on the web:</p> <pre><code>JComboBox myBox = new JComboBox(dataVector); DefaultComboBoxModel theModel = (DefaultComboBoxModel)myBox.getModel(); theModel.removeAllElements() </code></pre> <p>The DefaulComboBoxModel provides a function called <code>addElement(Object anObject)</code> </p> <p>Check The <a href="http://www.j2ee.me/j2se/1.4.2/docs/api/javax/swing/DefaultComboBoxModel.html" rel="nofollow">DefaultComboBoxModel API</a> for more information on that.</p> <p>It is a pretty cool object to work with, btw!</p> http://stackoverflow.com/questions/1515242/register-user-interface-elements-in-engine-controller 0 Register User Interface Elements in Engine / Controller Shaharyar 2009-10-04T00:18:52Z 2009-10-04T08:01:33Z <p>Hello everybody!</p> <p>I am currently writing a little game with standard UI controls.</p> <p>It is working great so far but what I don't like is that I am managing the controls in the codebehind file. (C#)</p> <p>As I am trying to decouple all elements, I would like to have a separate engine / controller which handles all the data management and the logic for my user interface.</p> <p>Is there a possibility to register the controls with the engine so that I don't need to pass them down with every method I call?</p> <p>Currently I am forced to pass the controls every time I call the function..</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1509613/proper-usage-of-forms-within-master-pages-and-content-pages 0 Proper Usage of Forms within Master Pages and Content Pages Shaharyar 2009-10-02T13:48:37Z 2009-10-02T14:04:32Z <p>Hello Everybody!</p> <p>I am currently trying to make my existing ASP.NET WebForms application use a Site.Master template. </p> <p>Creating the Site.Master template wasn't really a problem as it works like a charm.</p> <p>The problem starts with deriving from it and putting controls in the given ContentPlaceHolder's.</p> <p>At runtime I receive following error message:</p> <pre><code>Control 'ctr00_Login1' of type 'Login' must be placed inside a form tag with runat=server </code></pre> <p>This comes from the LoginControl I put in the Site.Master template.</p> <p>How should I handle this error and what is the best practise for using elements in Master Pages?</p> <p>Thanks in advance for all help!</p> http://stackoverflow.com/questions/1376287/retrieving-items-and-values-from-foreign-key-table-in-asp-net-mvc-using-linqtosql 0 Retrieving Items and values from Foreign Key Table in ASP.NET MVC using LINQtoSQL Shaharyar 2009-09-03T22:23:04Z 2009-09-23T21:56:34Z <p>Our team is currently working on a large project which makes heavy use of foreign key tables as they are used on our TeamMember Management Webapp.</p> <p>Basically, one TeamMember can be in a Team, in an Area and a TeamArea (the latter for editing and rights management).</p> <p>My main goal is focused on retrieving the data for showing these FK Fields as real DropDownLists with values behind instead of TextBoxes with the FK_ID number in my edit/create view.</p> <p>What I have tried so far:</p> <ul> <li><p>Create a FormViewModel which would store all other data a lists. Conclution: Not usable as I would need to pass / create another instance of my repository.</p></li> <li><p>Directly implement those lists on the TeamMember Class - but that didn't really work out well.</p></li> <li><p>Also thought about harcoding it in the repository but couldn't really get the data out correctly from the tables.</p></li> </ul> <p>What would be the best and "cleanest" approach to accomplish that?</p> http://stackoverflow.com/questions/1467017/umlaut-in-java-sax-parser 0 Umlaut in Java SAX Parser Shaharyar 2009-09-23T16:08:41Z 2009-09-23T16:23:55Z <p>Hello everybody!</p> <p>I am currently having trouble with German umlaut values in a XML document I received.</p> <p>It displays / saves the value as a "<strong>ü</strong>" instead of a "<strong>ü</strong>".</p> <p>The XML Encoding is set to <strong>UTF-8</strong> which should be capable of displaying umlauts.</p> <p>Also I couldn't find any option to set a locale on the SAX parser.</p> <p>Is there any other way I can make the values save correctly?</p> <p>btw: I am using eclipse as IDE. </p> <p>All help is very appreciated!</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1388861/populating-html-dropdownlist-with-foreign-key-table-vlaues 1 Populating Html.DropDownList with foreign key table vlaues Shaharyar 2009-09-07T11:15:57Z 2009-09-07T11:32:33Z <p>Hello everybody!</p> <p>I am facing the problem that I cannot properly map my foreign key table values to an asp.net mvc edit view.</p> <p>I have placed a Html.DropDownList and made an IENumerable/IQueryable helper function returning: </p> <pre><code>from item in db.items select item.name </code></pre> <p>which populates my Html.DropDownList with all the Names in the foreign key table but has nothing in the value field.</p> <p>But how can I make the DropDownList to show the Names but let the Value field be the ID field of that foreign key table?</p> http://stackoverflow.com/questions/1349137/how-to-create-a-pop-up-window-in-asp-net-mvc/1349143#1349143 7 Answer by Shaharyar for How to create a pop-up window in asp.net mvc? Shaharyar 2009-08-28T20:23:14Z 2009-08-29T14:44:14Z <p>Basic HTML Anchor Element:</p> <pre><code>&lt;a href="http://www.w3schools.com/" target="_blank"&gt;Visit W3Schools!&lt;/a&gt; </code></pre> <p>ASP.NET WebForms HyperLink Element:</p> <pre><code>&lt;asp:HyperLink ID="HyperLink1" runat="server" Target="_blank"&gt;HyperLink&lt;/asp:HyperLink&gt; </code></pre> <p>ASP.NET MVC Style:</p> <pre><code>&lt;%= Html.ActionLink&lt;HomeController&gt;(c =&gt; c.Index(), "Click me", new { target = "_blank" }) %&gt; </code></pre> <p>All three open a new tab, would that suit your needs?</p> http://stackoverflow.com/questions/1345676/c-asp-net-how-to-get-the-server-ip-address/1345686#1345686 1 Answer by Shaharyar for C# ASP.net how to get the server IP Address? Shaharyar 2009-08-28T08:23:11Z 2009-08-28T08:30:59Z <p>From searching the net I found following code: (I couldn't find a single line method there)</p> <pre><code>string myHost = System.Net.Dns.GetHostName(); // Show the hostname MessageBox.Show(myHost); // Get the IP from the host name string myIP = System.Net.Dns.GetHostEntry(myHost).AddressList[index].ToString(); // Show the IP MessageBox.Show(myIP); </code></pre> <p>-> where <strong>index</strong> is the index of your ip address host (ie. network connection).</p> <p>Code from: <a href="http://www.geekpedia.com/tutorial149%5FGet-the-IP-address-in-a-Windows-application.html" rel="nofollow">http://www.geekpedia.com/tutorial149_Get-the-IP-address-in-a-Windows-application.html</a></p> http://stackoverflow.com/questions/1338950/best-cms-for-a-t-shirt-catalog-website/1339005#1339005 1 Answer by Shaharyar for Best CMS for a T-Shirt catalog website Shaharyar 2009-08-27T05:20:51Z 2009-08-27T05:20:51Z <p>I would go for <a href="http://drupal.org/" rel="nofollow">Drupal</a> as the main CMS because it's way easier to learn that <a href="http://www.joomla.org/" rel="nofollow">Joomla</a>.</p> <p>Drupal now also features plugins(modules) which can be used to create a store (<a href="http://drupal.org/project/modules?text=shop" rel="nofollow">Shop Modules on Drupal</a>), bind it to other data sources like SVN and even get it to work </p> <p>Personally I have set up tons of Joomla projects and it's always difficult to get the things done easy and fast.</p> <p>Joomla really is too big if you plan to have a small site.</p> http://stackoverflow.com/questions/1338918/asp-net-or-ruby-on-rails-for-someone-new-to-web-development/1338929#1338929 1 Answer by Shaharyar for ASP.NET or Ruby on Rails for someone new to web development? Shaharyar 2009-08-27T04:59:23Z 2009-08-27T05:13:17Z <p>It's not that Ruby-on-Rails is bad stuff - in fact, it's awesome!</p> <p>Yet everything is about trying out and especially your own preference.</p> <p>You have experience with C# and .NET (I guess you have also experience with Windows Forms).</p> <p>The concept of Windows Forms and C# as the "code behind" you'll have no big issues adapting to WebForms or Silverlight.</p> <p>Except there are some web specific things but there is an amazing learning opportunity at <a href="http://www.asp.net" rel="nofollow">http://www.asp.net</a></p> <p>I have had the same learning curve as you have and learned basic ASP.NET development in <strong>less than a month</strong>. (Things that I couldn't do, either in PHP / Symfony nor JS out of the box).</p> <p>ASP.NET MVC is a great framework that has a similar functionality to Ruby-on-Rails/Symfony - yet it is a little bit different and has some MS specific features which are also amazing.</p> <p>I would suggest you to get the following book: <a href="http://www.wrox.com/WileyCDA/WroxTitle/Professional-ASP-NET-MVC-1-0.productCd-0470384611.html" rel="nofollow">Professional ASP.NET MVC 1.0</a></p> http://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata/1334026#1334026 0 Answer by Shaharyar for asp.net mvc views and strongly typed viewdata Shaharyar 2009-08-26T11:22:17Z 2009-08-26T11:22:17Z <p>There is no need for code behind in MVC architecture as it was with Web Forms.</p> <p>The entire MVC architecture build on the controller controlling the stuff and not the webcontrol events doing the magic.</p> <p>Personally I am just getting into the dark side of MVC but I like what I see here now.</p> <p>You can easily put content on your view with the "return View(item)" in your actions -> where item <strong>can be strongly typed</strong> data and easily validate it in your model. (which is great since input errors will be displayed on the view)</p> http://stackoverflow.com/questions/1327319/which-loop-to-use-for-or-do-while/1327341#1327341 1 Answer by Shaharyar for Which loop to use, for or do/while? Shaharyar 2009-08-25T10:20:35Z 2009-08-25T10:25:51Z <p>Personally I would go with the <strong>for loop</strong>.</p> <p>It is better to read, more commonly used and very optimized.</p> <pre><code>for (int iLoop = 0; iLoop &lt; int.MaxValue &amp;&amp; !Criteria; iLoop++) { // Do Work } </code></pre> <p>Edit: int.MaxValue &amp;&amp; !Criteria &lt;- a definietely better approach than my initial one ;)</p> http://stackoverflow.com/questions/1317051/making-usage-of-google-chromes-omnibox-tab-feature-for-on-personal-website 2 Making usage of Google Chrome's OmniBox [TAB] Feature for/on personal website? Shaharyar 2009-08-22T21:07:09Z 2009-08-23T01:26:20Z <p>I think the title explains it all but I am going deeper into my question anyway:</p> <p>How can I make use of the Chrome's Omnibox [TAB] feature for my website?</p> <p>As many users requested me to implement that feature on the site, I did research on the OpenSearchDescription and was very successful in implementation with the FireFox and IE7/IE8 Searchbar.</p> <p>Yet the implementation didn't quite work for the Chrome Omnibox [TAB] feature..</p> <p>Can you help me with that?</p> <p>My OSD.xml code:</p> <pre><code>&lt;OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/"&gt; &lt;ShortName&gt;MySite&lt;/ShortName&gt; &lt;Description&gt;My Site&lt;/Description&gt; &lt;InputEncoding&gt;UTF-8&lt;/InputEncoding&gt; &lt;Image width="16" height="16" type="image/x-icon"&gt;http://MySite.com/favicon.ico&lt;/Image&gt; &lt;Url type="application/x-suggestions+json" method="GET" template="http://ff.search.yahoo.com/gossip?output=fxjson&amp;amp;command={searchTerms}" /&gt; &lt;Url type="text/html" method="POST" template="http://MySite.com/query.php"&gt; &lt;Param name="sString" value="{searchTerms}"/&gt; &lt;/Url&gt; &lt;Url type="application/x-suggestions+json" template="suggestionURL"/&gt; &lt;moz:SearchForm&gt;http://www.MySite.com&lt;/moz:SearchForm&gt; &lt;/OpenSearchDescription&gt; </code></pre> <p>And this is the link to the osd file on my page:</p> <pre><code>&lt;link rel="search" type="application/opensearchdescription+xml" title="MySite" href="/opensearch.xml" /&gt; </code></pre> http://stackoverflow.com/questions/1317051/making-usage-of-google-chromes-omnibox-tab-feature-for-on-personal-website/1317499#1317499 0 Answer by Shaharyar for Making usage of Google Chrome's OmniBox [TAB] Feature for/on personal website? Shaharyar 2009-08-23T01:26:20Z 2009-08-23T01:26:20Z <p>Getting OSD (OpenSearchDescription) work under Google Chrome or IE7 / IE8 isn't as difficult as mentioned or that these browsers don't support POST requests.</p> <p>With a little bit of tweaking, I found a workaround to the entire problem.</p> <p>My initial code:</p> <pre><code>&lt;Url type="text/html" method="POST" template="http://MySite.com/query.php"&gt; &lt;Param name="sString" value="{searchTerms}"/&gt; &lt;/Url&gt; </code></pre> <p>This code points directly to the query page and passes the value for the sString attribute on my POST request. </p> <p>That works perfectly on FireFox but doesn't quite work well on IE7/IE8 or Google Chrome (I didn't test with Opera or Safari yet..).</p> <p><hr /></p> <p>Altering the code to the following piece:</p> <pre><code>&lt;Url type="text/html" template="http://MySite.com/query.php?sString={searchTerms}"&gt;&lt;/Url&gt; </code></pre> <ul> <li>Removing <strong>method="POST"</strong> from the element</li> <li>Replacing <strong><em>/query.php</em></strong> with the actual page call: <strong><em>/query.php?sString={searchTerms}</em></strong></li> <li>Removing the now unnecessary "<code>&lt;Param name="sString" value="{searchTerms}"/&gt;</code>"</li> </ul> <p>Resolved my problem of incompatibility with those browsers.</p> <p>All calls are directly headed to the query page and even it initially was a POST request, it now work on both IE7/IE8 and Google Chrome.</p> <p>Thanks again adrianbanks for providing me with your xml file which led to the solution!</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/1305139#1305139 0 Answer by Shaharyar for The funniest/weirdest error message you've got from a development environment/application Shaharyar 2009-08-20T10:00:59Z 2009-08-20T10:00:59Z <blockquote> <p>"Unknown Hard Error"</p> </blockquote> <p>on explorer startup...</p> http://stackoverflow.com/questions/1219218/a-good-way-to-access-stored-procedure-on-sql-server-2008-from-c 3 A good way to access stored procedure on SQL Server 2008 from C# Shaharyar 2009-08-02T16:29:43Z 2009-08-03T11:52:43Z <p>I am trying to access stored procedures from my ASP.NET / C# web-application.</p> <p>Is there a particularly good way to do so (also a good way to pass parameters to it)?</p> <p>I followed following steps and absolutely don't like the approach, as you enter the procedure as a string (un-debugable): <a href="http://www.c-sharpcorner.com/UploadFile/dclark/InsOutsinCS11302005072332AM/InsOutsinCS.aspx" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/dclark/InsOutsinCS11302005072332AM/InsOutsinCS.aspx</a></p> http://stackoverflow.com/questions/1124384/visual-basic-net-training-example 1 Visual Basic.NET Training Example Shaharyar 2009-07-14T09:34:18Z 2009-07-14T21:12:24Z <p>Hello guys!</p> <p>We'll soon have some high school kids here in our company for some training lessons in programming for about 1 1/2 days.</p> <p>We decided to do Visual Basic.NET and thought about programming a little calculator with the four basic operators.</p> <p>Considering the fact that they will be here for only 1 1/2 days, this application might be "too" complex to be taught in this time range.</p> <p>Do you have any ideas of what else can be taught in such a short time?</p> <p>All help is very appreciated!</p> http://stackoverflow.com/questions/1125357/asp-net-c-enabling-disabling-all-asp-controls-in-table-placeholder 0 ASP.NET C#: Enabling / Disabling all ASP Controls in Table / Placeholder Shaharyar 2009-07-14T13:24:32Z 2009-07-14T13:28:17Z <p>Hello guys,</p> <p>How do I disable for example all button controls in a certain placeholder?</p> <p>The plot: I am coding an application for web that uses some buttons which get disabled after you click them.</p> <p>Now when I click the "New Game" button, all previously disabled buttons should be enabled again.</p> <p>Any help is very appreciated!</p> http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o 2 Querying by type in DB4O Shaharyar 2009-06-22T13:43:53Z 2009-06-22T14:43:09Z <p>How do you pass a class type into a function in C#?</p> <p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p> <pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb) { IObjectContainer db = Db4oFactory.OpenFile(pathToDb); IObjectSet result = db.QueryByExample(typeof("CLASS HERE")); db.Close(); ListResult(result); } </code></pre> http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655366#1655366 Comment by Shaharyar on How do I say 5 seconds from now in Java? Shaharyar 2009-10-31T21:22:31Z 2009-10-31T21:22:31Z @Sbm007: Jon Skeet invented the term &quot;magic&quot; when he was 3. http://stackoverflow.com/questions/1617475/how-get-visitors-ip-address-and-country-id-in-website/1617488#1617488 Comment by Shaharyar on How get Visitors IP Address and Country ID in website Shaharyar 2009-10-24T10:16:05Z 2009-10-24T10:16:05Z Also using this on my page. It's awesome! +1 http://stackoverflow.com/questions/1614137/a-c-implementation-of-number-line/1614169#1614169 Comment by Shaharyar on A C# Implementation of Number Line Shaharyar 2009-10-23T15:22:25Z 2009-10-23T15:22:25Z Sidequestion: What does that O(1) stand for? I never got that one... http://stackoverflow.com/questions/1567874/enable-or-disable-mutiple-controls-in-silverlight/1567905#1567905 Comment by Shaharyar on Enable or Disable mutiple controls in Silverlight Shaharyar 2009-10-15T14:20:44Z 2009-10-15T14:20:44Z You could create your own controllers with a Handler-Interface which would be used to modify the controls. But that would mean to code a little more and extend each control you want to use and register it in a global / static list. What I did was fairly simple. I know which controllers I use so I just hard coded the values. Pointers in C# can also be used to accomplish that! You could make a function which takes (ref Controller c) arguments. http://stackoverflow.com/questions/1558912/first-letter-should-not-digit-in-textbox/1559021#1559021 Comment by Shaharyar on First letter should not digit in textbox? Shaharyar 2009-10-14T07:30:27Z 2009-10-14T07:30:27Z What happens when JavaScript is turned off? Does this code handle it? http://stackoverflow.com/questions/1563029/how-to-stop-a-running-jar-file-with-a-batch-script/1563058#1563058 Comment by Shaharyar on How to stop a running *.JAR file with a batch script? Shaharyar 2009-10-13T21:50:20Z 2009-10-13T21:50:20Z Oh, I know that with the pause button, but how do I make an application go past that event programatically (within batch)? http://stackoverflow.com/questions/1559886/how-to-categorize-sql-server-data-access-for-papers/1560214#1560214 Comment by Shaharyar on How to categorize SQL Server data access for papers? Shaharyar 2009-10-13T14:46:31Z 2009-10-13T14:46:31Z This means that ADO.NET replaces OleDB now, right? http://stackoverflow.com/questions/1544529/install-visual-studio-2008-ts-when-i-cant-install-windows-installer Comment by Shaharyar on install visual studio 2008 TS when I cant install windows installer? Shaharyar 2009-10-09T15:37:33Z 2009-10-09T15:37:33Z which OS are you using? http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271437#271437 Comment by Shaharyar on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Shaharyar 2009-10-09T12:54:18Z 2009-10-09T12:54:18Z this is like CHEATING http://stackoverflow.com/questions/1541889/filter-user-input-paragraph-for-links-smileys/1542791#1542791 Comment by Shaharyar on Filter user input (paragraph) for links + smileys Shaharyar 2009-10-09T09:35:40Z 2009-10-09T09:35:40Z any reason for the downvote? http://stackoverflow.com/questions/1542346/how-to-handle-events-for-icon-tray-in-windows-using-c/1542367#1542367 Comment by Shaharyar on How to handle events for icon tray in windows using C# Shaharyar 2009-10-09T09:32:26Z 2009-10-09T09:32:26Z Oh! Then you want to handle all behaviors in the icon tray, no matter where you click? Right? Let me see if I can find something! http://stackoverflow.com/questions/1541889/filter-user-input-paragraph-for-links-smileys Comment by Shaharyar on Filter user input (paragraph) for links + smileys Shaharyar 2009-10-09T08:06:22Z 2009-10-09T08:06:22Z Can you post the regex you are using right now? http://stackoverflow.com/questions/1515242/register-user-interface-elements-in-engine-controller/1515872#1515872 Comment by Shaharyar on Register User Interface Elements in Engine / Controller Shaharyar 2009-10-04T13:21:46Z 2009-10-04T13:21:46Z That might work but the &quot;decoupling&quot; of concerns isn't achieved with that. The goal later on is to create a web service out of the class. http://stackoverflow.com/questions/1515242/register-user-interface-elements-in-engine-controller/1515872#1515872 Comment by Shaharyar on Register User Interface Elements in Engine / Controller Shaharyar 2009-10-04T10:16:00Z 2009-10-04T10:16:00Z A lot of logic is in my button_click event handlers right now. I want to change it by having a dedicated class handling all that logic and also updating my form elements. I would like to register the physical address (like C++ pointers) of the controls within the controlling class so that I wouldn't need to pass in the controls every time I call the methods. http://stackoverflow.com/questions/1509613/proper-usage-of-forms-within-master-pages-and-content-pages/1509665#1509665 Comment by Shaharyar on Proper Usage of Forms within Master Pages and Content Pages Shaharyar 2009-10-02T19:21:30Z 2009-10-02T19:21:30Z thanks a lot! this one helped me out! does it matter which id value I assign to that form?