User Jason Miesionczek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:23:27Z http://stackoverflow.com/feeds/user/18811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/449410/programmatically-binding-list-to-listbox 0 Programmatically binding List to ListBox Jason Miesionczek 2009-01-16T03:31:19Z 2009-12-04T10:09:05Z <p>Lets say for instance i have the following extremely simple window:</p> <pre><code>&lt;Window x:Class="CalendarGenerator.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="447"&gt; &lt;Grid&gt; &lt;ListBox Margin="12,40,0,12" Name="eventList" HorizontalAlignment="Left" Width="134" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>And a simple list defined as:</p> <pre><code>List&lt;String&gt; ListOfNames = new List&lt;String&gt;(); </code></pre> <p>And lets assume that the list has several names in it. How would i go about binding the List to the ListBox using as much code-behind as possible?</p> http://stackoverflow.com/questions/577824/pyqt-no-such-slot 1 PyQt: No such slot Jason Miesionczek 2009-02-23T14:37:06Z 2009-11-23T19:42:52Z <p>I am starting to learn Qt4 and Python, following along some tutorial i found on the interwebs. I have the following two files:</p> <p>lcdrange.py:</p> <pre><code>from PyQt4 import QtGui, QtCore class LCDRange(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) lcd = QtGui.QLCDNumber(2) self.slider = QtGui.QSlider() self.slider.setRange(0,99) self.slider.setValue(0) self.connect(self.slider, QtCore.SIGNAL('valueChanged(int)'), lcd, QtCore.SLOT('display(int)')) self.connect(self.slider, QtCore.SIGNAL('valueChanged(int)'), self, QtCore.SIGNAL('valueChanged(int)')) layout = QtGui.QVBoxLayout() layout.addWidget(lcd) layout.addWidget(self.slider) self.setLayout(layout) def value(self): self.slider.value() def setValue(self,value): self.slider.setValue(value) </code></pre> <p>main.py:</p> <pre><code>import sys from PyQt4 import QtGui, QtCore from lcdrange import LCDRange class MyWidget(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) quit = QtGui.QPushButton('Quit') quit.setFont(QtGui.QFont('Times', 18, QtGui.QFont.Bold)) self.connect(quit, QtCore.SIGNAL('clicked()'), QtGui.qApp, QtCore.SLOT('quit()')) grid = QtGui.QGridLayout() previousRange = None for row in range(0,3): for column in range(0,3): lcdRange = LCDRange() grid.addWidget(lcdRange, row, column) if not previousRange == None: self.connect(lcdRange, QtCore.SIGNAL('valueChanged(int)'), previousRange, QtCore.SLOT('setValue(int)')) previousRange = lcdRange layout = QtGui.QVBoxLayout() layout.addWidget(quit) layout.addLayout(grid) self.setLayout(layout) app = QtGui.QApplication(sys.argv) widget = MyWidget() widget.show() sys.exit(app.exec_()) </code></pre> <p>When i run this i get the following errors:</p> <pre><code>Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) </code></pre> <p>I've read that PyQt slots are nothing more than methods, which i have defined, so what am i doing wrong?</p> <p>I am also learning Qt4 with Ruby which is where this code originates from, i translated it from Ruby to Python. In the Ruby version the LCDRange class is defined as this:</p> <pre><code>class LCDRange &lt; Qt::Widget signals 'valueChanged(int)' slots 'setValue(int)' def initialize(parent = nil) ... </code></pre> <p>So my guess was that i have to somehow declare the existence of the custom slot?</p> http://stackoverflow.com/questions/1767171/see-if-any-application-has-a-dll-from-the-gac-loaded/1770957#1770957 0 Answer by Jason Miesionczek for See if any application has a DLL from the GAC loaded Jason Miesionczek 2009-11-20T14:55:24Z 2009-11-20T14:55:24Z <p>Would something like this work:</p> <pre><code>Process[] proc = Process.GetProcesses("&lt;optional machine name&gt;"); ProcessModuleCollection mods = proc[0].Modules; </code></pre> <p>The mods collection would contain every module loaded for the current process. You could easily iterate over the proc collection, and then mod collection and see if any modules of interest are loaded, if so, you can then kill the process.</p> http://stackoverflow.com/questions/1003777/asp-net-iis-windows-authentication-setting-max-attempts-and-redirecting 2 ASP.NET/IIS: Windows Authentication, setting max attempts and redirecting Jason Miesionczek 2009-06-16T20:27:11Z 2009-11-17T12:00:01Z <p>We have an internal web app running on IIS6 and we use the integrated windows authentication for domain users to login to the app before they can use it. </p> <p>What we would like to do is redirect the user to an error page if they fail to login to the domain 3 times.</p> <p>Where should i be looking to configure this? My first thought was in IIS, but i don't see anything in the config there that relates to what i'm looking to do.</p> http://stackoverflow.com/questions/356068/viability-of-c-net-as-the-new-standard-game-dev-platform 11 Viability of C#/.NET as the new standard game dev platform? Jason Miesionczek 2008-12-10T13:39:53Z 2009-10-31T09:22:21Z <p>For a long time now C++ has been the dominate game development language. Many AAA quality 3D engines are available to fit any budget. </p> <p>My question is, with the rise of XNA, has C# and the .NET framework been positioned well enough to take over as the new standard game development platform? Obviously the inherent cross-platform nature of the XNA framework (Windows, Xbox, Zune) has its benefits, but are those benefits good enough to entice large game dev studios to switch gears?</p> <p>Personally, i am torn between using C#/XNA for a new project, and using Java via jMonkeyEngine. I have a great desire to have my game be portable to multiple platforms, and the only languages i know well enough to accomplish this are C# and Java. i would love to see an implementation of the XNA codebase that is powered by OpenGL and would run on Mono, but i think that is merely wishful thinking at this point. </p> <p>I am curious to hear what others have experienced while building 3D games in something other than C++.</p> http://stackoverflow.com/questions/1555936/using-vb-net-to-log-into-windows-live-mail/1561122#1561122 0 Answer by Jason Miesionczek for Using VB.NET to log into Windows Live Mail? Jason Miesionczek 2009-10-13T15:48:08Z 2009-10-13T15:48:08Z <p>One option could be to use the WebBrowser control which would allow you to access the username and password input boxes, and would allow you to click the login button. You could then see which page the user is redirected to and that would tell you in the username/password combo is correct or not.</p> http://stackoverflow.com/questions/1549538/best-method-for-website-automation/1549568#1549568 2 Answer by Jason Miesionczek for Best method for Website Automation? Jason Miesionczek 2009-10-11T01:23:05Z 2009-10-11T01:23:05Z <p>I've done this in the past using the WebBrowser control inside a winforms app that i execute on the server. The WebBrowser control will allow you to access the html elements on the page, input information, click buttons/links, etc. It should allow you to accomplish your goal.</p> <p>There are ways to do this without the WebBrowser control, look at the <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;ved=0CAwQFjAA&amp;url=http%3A%2F%2Fwww.codeplex.com%2Fhtmlagilitypack&amp;ei=XzPRSu7DBtCTlAeVnOyoCg&amp;rct=j&amp;q=html+agility+pack&amp;usg=AFQjCNFQgBRDeAF%5FoVR8%5Foz2d7QjytiD5A" rel="nofollow">HTML Agility Pack</a>.</p> http://stackoverflow.com/questions/1537908/getting-service-tag-from-dell-machine-using-net/1537954#1537954 0 Answer by Jason Miesionczek for Getting Service Tag from Dell Machine using .net? Jason Miesionczek 2009-10-08T13:54:41Z 2009-10-08T13:54:41Z <p>I think you need to get the serial number from the BIOS like this:</p> <pre><code>Select SerialNumber From Win32_BIOS </code></pre> <p>On Dell's I believe this corresponds to the service tag</p> http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser/1492959#1492959 2 Answer by Jason Miesionczek for How to design a report request from client machines to be run on an available server Jason Miesionczek 2009-09-29T14:36:54Z 2009-09-29T14:36:54Z <p>One approach you could take is to create a database that the clients can connect to, and have the client add a record that represents a report request, including the necessary parameters which could be passed in an xml field. </p> <p>You can then have a service that periodically checks this database for new requests, and depending on how many other requests are current processing, submit the request to the least busy server.</p> <p>The server would then be able to run the report and email the file to the user. </p> <p>This is by no means a quick solution and will likely take some time to design the various elements and get them to work together, but its not impossible, especially considering that it has the possibility to scale rather well (adding more available/more powerful servers).</p> <p>I developed a similar system where a user can submit a request for data from a web interface, that would get picked up by a request manager service that would delegate the request to the appropriate server based on the type of request, while providing progress indication to the client.</p> http://stackoverflow.com/questions/1492439/how-to-organize-the-code-similar-to-region-endregion-in-net/1492460#1492460 3 Answer by Jason Miesionczek for how to organize the code similar to #region/#endregion in .NET? Jason Miesionczek 2009-09-29T13:15:16Z 2009-09-29T13:15:16Z <p>That is a feature of Visual Studio, not .NET. You would have to look into your Java IDE of choice and see what options they have. </p> http://stackoverflow.com/questions/305436/jpa-hibernate-in-java-se-6-best-practices-for-data-access 3 JPA/Hibernate in Java SE 6, Best Practices for data access Jason Miesionczek 2008-11-20T14:29:37Z 2009-09-18T19:27:11Z <p>I am starting a normal Java SE project and i am planning to use JPA/Hibernate. I was wondering if anyone could enlighten me as to what is considered the best way to interact with Hibernate in this environment (data access layers)?</p> http://stackoverflow.com/questions/1395458/net-ria-services-associated-metadata-contains-the-following-unknown-properties 0 .NET RIA Services: "Associated Metadata contains the following unknown properties or fields" Jason Miesionczek 2009-09-08T18:14:40Z 2009-09-08T19:05:44Z <p>So i have been playing around with the .NET RIA Services with Silverlight, and i created a new DomainService based on a couple entities from a LINQ2SQL DataContext.</p> <p>When i tried to compile, i got this error:</p> <blockquote> <p>Error 2 The entity 'Data.Service' does not have a key defined. Entities exposed by DomainService operations must have must have at least one property marked with the KeyAttribute. Portal</p> </blockquote> <p>So i added a metadata class for the Service object like so:</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Data { [MetadataType(typeof(Service.ServiceMetadata))] public partial class Service { internal sealed class ServiceMetadata { [Key] public int PublicAPI; } } } </code></pre> <p>Now i get this error:</p> <blockquote> <p>Error 4 The associated metadata type for type 'Data.Service' contains the following unknown properties or fields: PublicAPI. Please make sure that the names of these members match the names of the properties on the main type. Portal</p> </blockquote> <p>PublicAPI is definitely defined in the main object as generated by L2S, the namespaces are the same. Any ideas as to what i might be doing wrong?</p> <p>I realize that the .NET RIA services is still CTP, but this seems like a fundamental part of the framework that should be working.</p> http://stackoverflow.com/questions/1395458/net-ria-services-associated-metadata-contains-the-following-unknown-properties/1395764#1395764 0 Answer by Jason Miesionczek for .NET RIA Services: "Associated Metadata contains the following unknown properties or fields" Jason Miesionczek 2009-09-08T19:05:44Z 2009-09-08T19:05:44Z <p>I solved this problem. The DataContext that was referring to was in another assembly, and the partial classes i was defining were in the Web Project so there was some kind of disconnect between the versions of the classes that the system was trying to use. </p> <p>Moving the datacontext into the web project solved it.</p> http://stackoverflow.com/questions/1394805/flash-how-to-change-a-text-fields-textformat-on-the-fly-per-action-in-as3/1394892#1394892 0 Answer by Jason Miesionczek for Flash: How to change a text fields' textFormat on the fly/per action in AS3? Jason Miesionczek 2009-09-08T16:17:05Z 2009-09-08T16:17:05Z <p>What happens if you change</p> <pre><code>thumbsMov.traceText.defaultTextFormat = a12Green; </code></pre> <p>to</p> <pre><code>thumbsMov.traceText.setTextFormat(a12Green); </code></pre> http://stackoverflow.com/questions/1371258/asp-net-mvc-silverlight-forms-authentication 2 ASP.NET MVC + Silverlight + Forms Authentication Jason Miesionczek 2009-09-03T03:10:04Z 2009-09-03T19:04:10Z <p>So i am trying to get a simple system working where i have an asp.net mvc web app with the forms authentication already up and running with a user created. i can login with no problem using the mvc controller/view.</p> <p>I then added a silverlight app to the solution, using the existing web app as the host. I created a silverlight-enabled web service and added an operation contract with the following code:</p> <pre><code> [OperationContract] public bool Authenticate(string username, string password) { if (FormsAuthentication.Authenticate(username, password)) { FormsAuthentication.SetAuthCookie(username, false); return true; } return false; } </code></pre> <p>In the silverlight app, i added two text boxes and a button, and a service reference to the WCF service. In the button click event, i have this code:</p> <pre><code> void login_Click(object sender, RoutedEventArgs e) { AuthenticationService.AuthenticationClient client = new AuthenticationClient(); client.AuthenticateCompleted += new EventHandler&lt;AuthenticateCompletedEventArgs&gt;(client_AuthenticateCompleted); client.AuthenticateAsync(username.Text, password.Text); } void client_AuthenticateCompleted(object sender, AuthenticateCompletedEventArgs e) { if (e.Result) { MessageBox.Show("Success"); } else { MessageBox.Show("Error"); } } </code></pre> <p>So the problem is, when i enter my login info and click the button, all i get is the error box. I can't seem to get it to authenticate the user.</p> <p>What am i missing?</p> <p>UPDATE: Here is the error i get in the async complete handler:</p> <p>Line: 86 Error: Unhandled Error in Silverlight Application Code: 4004<br /> Category: ManagedRuntimeError<br /> Message: System.NullReferenceException: Object reference not set to an instance of an object. at UserPortal.MainPage.client_AuthenticateCompleted(Object sender, AuthenticateCompletedEventArgs e) at UserPortal.AuthenticationService.AuthenticationClient.OnAuthenticateCompleted(Object state) </p> <p><strong>UPDATE 2:</strong> So the error i posted above is because the e.Error property is null. So i am not getting any specific error from the authentication service. Is there something i need to change in the web.config to get this to work via silverlight?</p> <pre><code> &lt;authentication mode="Forms"&gt; &lt;!-- forms loginUrl="~/Account/LogOn" timeout="2880"/ --&gt; &lt;/authentication&gt; &lt;membership&gt; &lt;providers&gt; &lt;clear/&gt; &lt;add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" passwordStrengthRegularExpression="" applicationName="/"/&gt; &lt;/providers&gt; &lt;/membership&gt; &lt;profile&gt; &lt;providers&gt; &lt;clear/&gt; &lt;add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/&gt; &lt;/providers&gt; &lt;/profile&gt; &lt;roleManager enabled="false"&gt; &lt;providers&gt; &lt;clear/&gt; &lt;add connectionStringName="ApplicationServices" applicationName="/" name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/&gt; &lt;add applicationName="/" name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/&gt; &lt;/providers&gt; &lt;/roleManager&gt; </code></pre> http://stackoverflow.com/questions/1371258/asp-net-mvc-silverlight-forms-authentication/1375318#1375318 0 Answer by Jason Miesionczek for ASP.NET MVC + Silverlight + Forms Authentication Jason Miesionczek 2009-09-03T19:04:10Z 2009-09-03T19:04:10Z <p>Ok, so i got it to work, kinda.</p> <p>Following the content <a href="http://msdn.microsoft.com/en-us/library/bb398990.aspx" rel="nofollow">here</a> i managed to get a service up and running that would allow me to successfully login. The problem is i had to change the RequireSSL to false. I could not get the service to work running on https.</p> <p>Anyone know what i need to do to get it to work on SSL? i am using the ASP.NET development server right now, do i need to configure a real version of IIS on this box for that to work?</p> http://stackoverflow.com/questions/1306250/techniques-for-logging-into-websites-programmatically 3 Techniques for logging into websites programmatically Jason Miesionczek 2009-08-20T13:36:43Z 2009-08-25T18:07:55Z <p>I am trying to automate logging into Photobucket for API use for a project that requires automated photo downloading using stored credentials. </p> <p>The API generates a URL to use for logging in, and using Firebug i can see what requests and responses are being sent/received.</p> <p>My question is, how can i use HttpWebRequest and HttpWebResponse to mimic what happens in the browser in C#?</p> <p>Would it be possible to use a web browser component inside a C# app, populate the username and password fields and submit the login?</p> http://stackoverflow.com/questions/1322506/what-happens-if-more-than-one-thread-tries-to-access-singleton-object/1322573#1322573 0 Answer by Jason Miesionczek for what happens if more than one thread tries to access singleton object Jason Miesionczek 2009-08-24T13:51:14Z 2009-08-24T13:51:14Z <p>The general rule of thumb i use for Singletons is that it should not affect the running code, and have no side-effects. Essentially for me, in my projects this translates into some kind of logging functionality, or static value lookup (ie. loading some common data from a database once and storing it for reference so it doesn't have to be read in everytime its needed).</p> http://stackoverflow.com/questions/1322401/prevent-form-from-freezing/1322479#1322479 0 Answer by Jason Miesionczek for Prevent form from freezing Jason Miesionczek 2009-08-24T13:39:06Z 2009-08-24T13:39:06Z <p>Not related to the threading issue, but if you don't have any other requirements for saving the photo to the disk you can do this:</p> <pre><code>WebClient client = new WebClient(); byte[] data = client.DownloadData(item.Url); MemoryStream ms = new MemoryStream(data); Bitmap img = new Bitmap(ms); pictureBox.Image = img; </code></pre> http://stackoverflow.com/questions/1322310/is-it-possible-to-debug-net-class-library-methods-as-well/1322332#1322332 1 Answer by Jason Miesionczek for Is it possible to debug .NET Class Library Methods as well? Jason Miesionczek 2009-08-24T13:12:10Z 2009-08-24T13:12:10Z <p>This <a href="http://olegsych.spaces.live.com/Blog/cns!D6CE2A0548083D95!123.entry" rel="nofollow">post</a> might be helpful to you.</p> http://stackoverflow.com/questions/1044779/actionscript-3-vs-haxe-which-to-chose-for-new-flash-project 4 Actionscript 3 vs haXe: Which to chose for new Flash project? Jason Miesionczek 2009-06-25T16:04:05Z 2009-08-22T11:46:11Z <p>I am in the planning stages of a new Flash game project and was wondering which language would be better to use? I already have a strong understanding of Actionscript 3, and have not worked with haXe yet, but i have read the language reference docs and it seems that haXe has some of the features from my other favorite languages, C# and Ruby.</p> <p>So my question has two parts:</p> <p>1) Can haXe interop with flash components (swc files)? Like for instance if i use the Flash IDE to skin some controls, can i import those controls and use them in haXe?</p> <p>2) Are there any performance benefits to the haXe compiler? or any gotchas?</p> http://stackoverflow.com/questions/1308248/do-linq2sql-expressions-always-return-iquerable/1308286#1308286 1 Answer by Jason Miesionczek for Do linq2sql expressions always return iquerable? Jason Miesionczek 2009-08-20T19:19:04Z 2009-08-20T19:19:04Z <p>I think this is the way to do it:</p> <pre><code>IList&lt;SomeType&gt; result = _someCollection.Where(...).ToList(); </code></pre> http://stackoverflow.com/questions/1306250/techniques-for-logging-into-websites-programmatically/1306427#1306427 2 Answer by Jason Miesionczek for Techniques for logging into websites programmatically Jason Miesionczek 2009-08-20T14:04:46Z 2009-08-20T14:04:46Z <p>Here is how i solved it:</p> <pre><code>public partial class Form1 : Form { private string LoginUrl = "/apilogin/login"; private string authorizeUrl = "/apilogin/authorize"; private string doneUrl = "/apilogin/done"; public Form1() { InitializeComponent(); this.Load += new EventHandler(Form1_Load); } void Form1_Load(object sender, EventArgs e) { PhotobucketNet.Photobucket pb = new Photobucket("pubkey","privatekey"); string url = pb.GenerateUserLoginUrl(); webBrowser1.Url = new Uri(url); webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser1_DocumentCompleted); } void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { if (e.Url.AbsolutePath.StartsWith(LoginUrl)) { webBrowser1.Document.GetElementById("usernameemail").SetAttribute("Value","some username"); webBrowser1.Document.GetElementById("password").SetAttribute("Value","some password"); webBrowser1.Document.GetElementById("login").InvokeMember("click"); } if (e.Url.AbsolutePath.StartsWith(authorizeUrl)) { webBrowser1.Document.GetElementById("allow").InvokeMember("click"); } if (e.Url.AbsolutePath.StartsWith(doneUrl)) { string token = webBrowser1.Document.GetElementById("oauth_token").GetAttribute("value"); } } } </code></pre> <p>the token capture in the last if block is what is needed to continue using the API. This method works fine for me as of course the code that needs this will be running on windows so i have no problem spawning a process to load this separate app to extract the token.</p> http://stackoverflow.com/questions/1299534/linq-passing-lambda-expression-as-parameter-to-be-executed-and-returned-by-metho 1 LINQ: Passing lambda expression as parameter to be executed and returned by method Jason Miesionczek 2009-08-19T12:14:04Z 2009-08-19T12:26:17Z <p>So here is the scenario: i have a series of different repository classes that each can use an isolated data context, or a shared context. In the cases where an isolated context is being used i want to add a method to the base class that will allow me to specify the lambda as the parameter, have that expression be executed by the isolated context of the chosen repository and return an IQueryable result. How would the method signature look, and how to a pass the expression to the context?</p> <p>I need the solution to be as generic as possible as any possible model object/table could be used.</p> <p>Here is basically what i am looking to do:</p> <pre><code>IAssetRepository repo = new AssetRepository(true); // true indicates isolated context var results = repo.ExecuteInContext&lt;SomeType&gt;(SomeTable.Where(x =&gt; x.SomeProp.Equals(SomeValue))); </code></pre> http://stackoverflow.com/questions/1294099/aggregate-linq-results/1294116#1294116 1 Answer by Jason Miesionczek for Aggregate LINQ results Jason Miesionczek 2009-08-18T14:06:44Z 2009-08-18T14:06:44Z <p>Would something like this work:</p> <p>In C#:</p> <pre><code>var publisherAuthors = Authors.Where(a =&gt; a.Books.Where(b =&gt; b.Publisher.Name.Equals("Some Publisher"))); </code></pre> http://stackoverflow.com/questions/1293777/opening-a-new-browser-page-on-the-second-monitor/1293861#1293861 1 Answer by Jason Miesionczek for Opening a new browser page on the second monitor. Jason Miesionczek 2009-08-18T13:30:35Z 2009-08-18T13:30:35Z <p>Using maxpower47's suggestion about resolution, the only way to display the page on the other monitor would be to open a popup, and use the options to set the top, right, width and height properties so the window will appear on the second monitor in a decent size.</p> <p>Here is a link that describes how to do this: <a href="http://www.netmechanic.com/news/vol4/javascript%5Fno7.htm" rel="nofollow">http://www.netmechanic.com/news/vol4/javascript_no7.htm</a></p> http://stackoverflow.com/questions/1293758/help-on-work-from-home/1293784#1293784 0 Answer by Jason Miesionczek for help on work from home Jason Miesionczek 2009-08-18T13:21:19Z 2009-08-18T13:21:19Z <p><a href="http://www.guru.com" rel="nofollow">Guru.com</a></p> http://stackoverflow.com/questions/1293702/xml-namespaces-are-confounding-me/1293733#1293733 2 Answer by Jason Miesionczek for XML Namespaces are confounding me Jason Miesionczek 2009-08-18T13:11:40Z 2009-08-18T13:11:40Z <p>When there is an XML namespace defined, each element needs to preceded by it for it to be correctly recognized.</p> <p>If you were to use LINQ to XML to read in this data it would look something like this:</p> <pre><code>XDocument xdoc = XDocument.Load("file.xml"); XNamespace ns = "http://www.lotus.com/dxl"; var documents = xdoc.Descendants(ns + "document"); </code></pre> <p>XML namespaces are similar in concept to C# namespaces (or any other language that supports it). If you define a class inside a namespace, you wouldn't be able to access it without first specifying the namespace (this is what using statements do for you).</p> http://stackoverflow.com/questions/1288853/linq-2-xml-simple-input-brain-fart-with-solution 0 LINQ 2 XML: Simple Input, Brain Fart With Solution Jason Miesionczek 2009-08-17T16:05:17Z 2009-08-17T16:39:05Z <p>So i have this simple XML text:</p> <pre><code>&lt;errors xmlns="http://schemas.google.com/g/2005"&gt; &lt;error&gt; &lt;domain&gt;GData&lt;/domain&gt; &lt;code&gt;InvalidRequestUriException&lt;/code&gt; &lt;internalReason&gt;You must specify at least one metric&lt;/internalReason&gt; &lt;/error&gt; &lt;/errors&gt; </code></pre> <p>What the simplest way to extract the value of the internalReason element?</p> http://stackoverflow.com/questions/1259996/how-to-use-entity-framework-to-work-with-many-to-many-relationships/1266189#1266189 1 Answer by Jason Miesionczek for How to use Entity Framework to work with many-to-many relationships? Jason Miesionczek 2009-08-12T13:31:06Z 2009-08-12T13:31:06Z <p>What about this:</p> <pre><code>var employeesNotAssignedToProject = db.Employees.Select(e =&gt; e).Where(e =&gt; (e.Projects.Count(c =&gt; c.ProjectID == 1)) == 0) </code></pre> <p>I haven't tested this, but basically what it does is it selects only those employees where their Projects collection does not include the project in question by checking the count of projects with the given id.</p> http://stackoverflow.com/questions/1770911/how-to-give-alert-message-without-using-javascript Comment by Jason Miesionczek on How to give alert message without using javascript Jason Miesionczek 2009-11-20T14:50:28Z 2009-11-20T14:50:28Z are you trying to not use javascript at all, or just not use the alert box? http://stackoverflow.com/questions/1743740/can-i-run-jrunscript-from-a-jre/1743984#1743984 Comment by Jason Miesionczek on Can I run jrunscript from a JRE Jason Miesionczek 2009-11-16T18:46:28Z 2009-11-16T18:46:28Z Your answer makes no mention of Javascript... http://stackoverflow.com/questions/1555936/using-vb-net-to-log-into-windows-live-mail/1561122#1561122 Comment by Jason Miesionczek on Using VB.NET to log into Windows Live Mail? Jason Miesionczek 2009-10-13T19:18:09Z 2009-10-13T19:18:09Z for your example, you would replace Info.Username with textbox1.Text http://stackoverflow.com/questions/1555936/using-vb-net-to-log-into-windows-live-mail/1561122#1561122 Comment by Jason Miesionczek on Using VB.NET to log into Windows Live Mail? Jason Miesionczek 2009-10-13T19:15:44Z 2009-10-13T19:15:44Z you would do something like this: browser.Document.GetElementById(&quot;username&quot;).SetAttribute(&quot;value&quot;, Info.Username); where browser is your WebBrowser control, and &quot;username&quot; is the ID of the input element on the page. And you would do the same thing for the password box. And then to click the login button, something like this would work: browser.Document.GetElementsById(&quot;login&quot;).InvokeMember(&quot;click&quot;); It will get a little trickier if the login button doesn't have an ID, but its still possible to figure out how to find it using the other methods in the Document object. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/287094#287094 Comment by Jason Miesionczek on What are five things you hate about your favorite language? Jason Miesionczek 2009-10-12T19:45:36Z 2009-10-12T19:45:36Z #2 == Wordpress http://stackoverflow.com/questions/1549538/best-method-for-website-automation/1549568#1549568 Comment by Jason Miesionczek on Best method for Website Automation? Jason Miesionczek 2009-10-11T20:12:42Z 2009-10-11T20:12:42Z In light of your updated question, i still recommend the HTML Agility Pack to do what you're looking to accomplish. http://stackoverflow.com/questions/1537908/getting-service-tag-from-dell-machine-using-net/1537954#1537954 Comment by Jason Miesionczek on Getting Service Tag from Dell Machine using .net? Jason Miesionczek 2009-10-08T14:16:59Z 2009-10-08T14:16:59Z From what i can tell, Win32_SsytemEnclosure is based on the physical box that the computer is built in, whereas Win32_BIOS is the chip on the motherboard. My theory is if you move a motherboard from its original case to another case, then the service tags you get from BIOS and SystemEnclosure might be different, but i have not tested this. It's probably safe to assume that the serial number from either class would be accurate. http://stackoverflow.com/questions/1537908/getting-service-tag-from-dell-machine-using-net/1537987#1537987 Comment by Jason Miesionczek on Getting Service Tag from Dell Machine using .net? Jason Miesionczek 2009-10-08T14:02:40Z 2009-10-08T14:02:40Z He is already doing that. None of the values you are querying relate to the service tag of the machine. http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser/1492959#1492959 Comment by Jason Miesionczek on How to design a report request from client machines to be run on an available server Jason Miesionczek 2009-09-29T14:44:46Z 2009-09-29T14:44:46Z it would also work just as well with a normal text based column, its just XML text that would be deserialized by the report server http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser/1492959#1492959 Comment by Jason Miesionczek on How to design a report request from client machines to be run on an available server Jason Miesionczek 2009-09-29T14:43:06Z 2009-09-29T14:43:06Z if you are using SQL Server, there is a data type called XML, which if you are using VB.NET you should be able to encapsulate your report parameters into an object and then serialize it and pop it into that column http://stackoverflow.com/questions/20910/silverlight-vs-flex/25176#25176 Comment by Jason Miesionczek on Silverlight vs Flex Jason Miesionczek 2009-09-07T03:36:09Z 2009-09-07T03:36:09Z Silverlight 3 comes with the &quot;out of browser&quot; feature where your silverlight app can be installed to the desktop just like an AIR app. There are APIs for detecting when the app is running in the browser or not, when there is an internet connection present, and even an API for updating the app automatically. http://stackoverflow.com/questions/1328281/preventing-ajax-jquery-loaded-external-file-from-caching-in-ie/1328348#1328348 Comment by Jason Miesionczek on Preventing ajax-jquery loaded external file from caching in IE Jason Miesionczek 2009-08-25T13:49:42Z 2009-08-25T13:49:42Z What if he didn't have access to the contents of that file? http://stackoverflow.com/questions/1328281/preventing-ajax-jquery-loaded-external-file-from-caching-in-ie/1328355#1328355 Comment by Jason Miesionczek on Preventing ajax-jquery loaded external file from caching in IE Jason Miesionczek 2009-08-25T13:46:24Z 2009-08-25T13:46:24Z beat me to it :) http://stackoverflow.com/questions/1322401/prevent-form-from-freezing/1322479#1322479 Comment by Jason Miesionczek on Prevent form from freezing Jason Miesionczek 2009-08-24T13:48:00Z 2009-08-24T13:48:00Z This is only useful if you won't be downloading the same photo(s) over and over again, in that case, saving them to disk and checking if they exist before downloading them again would be more efficient. http://stackoverflow.com/questions/1322401/prevent-form-from-freezing/1322479#1322479 Comment by Jason Miesionczek on Prevent form from freezing Jason Miesionczek 2009-08-24T13:46:14Z 2009-08-24T13:46:14Z Doesn't clutter your disk with files you don't need. Especially if the files are large.