qid
int64
4
19.1M
question
stringlengths
18
48.3k
answers
list
date
stringlengths
10
10
metadata
list
198,240
<p>I'm looking to use Java to parse an ongoing stream of event drive XML generated by a remote device. Here's a simplified sample of two events:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;Event&gt; DeviceEventMsg &lt;Param1&gt;SomeParmValue&lt;/Param1&gt; &lt;/Event&gt; &lt;?xml version="1.0"?&gt; &lt;Event&gt; D...
[ { "answer_id": 199102, "author": "simon", "author_id": 6040, "author_profile": "https://Stackoverflow.com/users/6040", "pm_score": 0, "selected": false, "text": "<?xml version=\"1.0\"?>" }, { "answer_id": 199143, "author": "simon", "author_id": 6040, "author_profile":...
2008/10/13
[ "https://Stackoverflow.com/questions/198240", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27524/" ]
198,244
<p>I have a checkstyle suppression filter setup (e.g. ignore magic numbers in unit test code).</p> <p>The suppression xml file resides in the same folder as the checkstyle xml file. However, where this file actually is varies: on my windows dev box it is in d:\dev\shared\checkstyle\config on the Linux CI server it wil...
[ { "answer_id": 199291, "author": "Greg Mattes", "author_id": 13940, "author_profile": "https://Stackoverflow.com/users/13940", "pm_score": 5, "selected": true, "text": "SuppressionFilter checkstyle-suppressions-file <module name=\"SuppressionFilter\">\n <property name=\"file\" value=\...
2008/10/13
[ "https://Stackoverflow.com/questions/198244", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27522/" ]
198,247
<p>Where I'm at the developers have been updated to Excel 2007, but most of the users haven't. I'm building a spreadsheet template (*.xlt) for a user that's gonna need some vba code included, and I'm wondering what issues I'm likely to run into building this in 2007 instead of 2003? I don't have access to a machine w...
[ { "answer_id": 2221331, "author": "Chris Spicer", "author_id": 210566, "author_profile": "https://Stackoverflow.com/users/210566", "pm_score": 2, "selected": false, "text": "#If USINGRIBBON Then\n Public Sub CallFromRibbon(control As IRibbonControl)\n#Else\n Public Sub CallFromRibb...
2008/10/13
[ "https://Stackoverflow.com/questions/198247", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3043/" ]
198,248
<p>I’m using the gcc in MinGW that comes with Strawberry Perl, on Windows XP. I’d like to have <a href="http://www.gnu.org/software/ddd/" rel="nofollow noreferrer">ddd</a> (the Data Display Debugger) as well but apparently on Windows the simplest way to get ddd is by running Cygwin. So what's the bare minimum of Cygwin...
[ { "answer_id": 198335, "author": "Charles Duffy", "author_id": 14122, "author_profile": "https://Stackoverflow.com/users/14122", "pm_score": 0, "selected": false, "text": "xorg-x11-base" }, { "answer_id": 8272440, "author": "Keith Thompson", "author_id": 827263, "auth...
2008/10/13
[ "https://Stackoverflow.com/questions/198248", "https://Stackoverflow.com", "https://Stackoverflow.com/users/25093/" ]
198,266
<p>Can anyone provide and example of downloading a PDF file using Watin? I tried the SaveAsDialogHandler but I couldn't figure it out. Perhaps a MemoryStream could be used?</p> <p>Thanks,</p> <p>--jb</p>
[ { "answer_id": 201464, "author": "Community", "author_id": -1, "author_profile": "https://Stackoverflow.com/users/-1", "pm_score": 2, "selected": false, "text": "fileDownloadHandler.WaitUntilFileDownloadDialogIsHandled(30);\nfileDownloadHandler.WaitUntilDownloadCompleted(200);\n" }, ...
2008/10/13
[ "https://Stackoverflow.com/questions/198266", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,272
<p>Is it possible to read damaged media (cd, hdd, dvd,...) even if windows explorer bombs out?</p> <p>What I mean to ask is, whether there is a set of APIs or something that can access the disk at a very low level (below explorer?) and read whatever can be retrieved even if it is only partial, especially if you can st...
[ { "answer_id": 36512022, "author": "ryenus", "author_id": 537554, "author_profile": "https://Stackoverflow.com/users/537554", "pm_score": 1, "selected": false, "text": "ddrescue ddrescue [options] infile outfile [mapfile]\n mapfile" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198272", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,279
<p>I am a complete beginner trying to develop for FCKeditor so please bear with me here. I have been tasked with developing a custom plugin that will allow users to browse a specific set of images that the user uploads. Essentially the user first attaches images, then uses the FCKeditor to insert those images.</p> <p>...
[ { "answer_id": 198311, "author": "Patrick McElhaney", "author_id": 437, "author_profile": "https://Stackoverflow.com/users/437", "pm_score": 2, "selected": true, "text": "// Register the related command. \n// RegisterCommand takes the following arguments: CommandName, DialogCommand \n// ...
2008/10/13
[ "https://Stackoverflow.com/questions/198279", "https://Stackoverflow.com", "https://Stackoverflow.com/users/285/" ]
198,285
<p>I'm using the following code, using the <a href="http://www.sharpziplib.com/" rel="noreferrer">SharpZipLib</a> library, to add files to a .zip file, but each file is being stored with its full path. I need to only store the file, in the 'root' of the .zip file.</p> <pre><code>string[] files = Directory.GetFiles(fo...
[ { "answer_id": 198301, "author": "Tamas Czinege", "author_id": 8954, "author_profile": "https://Stackoverflow.com/users/8954", "pm_score": 4, "selected": false, "text": "string[] files = Directory.GetFiles(folderPath);\nusing (ZipFile zipFile = ZipFile.Create(zipFilePath))\n{\n zipFi...
2008/10/13
[ "https://Stackoverflow.com/questions/198285", "https://Stackoverflow.com", "https://Stackoverflow.com/users/8741/" ]
198,295
<p>I'm setting the cookie expiration using the following code:</p> <hr> <pre><code>// remove existing cookies. request.Cookies.Clear(); response.Cookies.Clear(); // ... serialize and encrypt my data ... // now set the cookie. HttpCookie cookie = new HttpCookie(AuthCookieName, encrypted); cookie.Expires = DateTime.N...
[ { "answer_id": 31889776, "author": "Jeff Nicholson", "author_id": 1815399, "author_profile": "https://Stackoverflow.com/users/1815399", "pm_score": 2, "selected": false, "text": " public static void Configuration(IAppBuilder app)\n {\n\n app.UseCookieAuthentication(new Cooki...
2008/10/13
[ "https://Stackoverflow.com/questions/198295", "https://Stackoverflow.com", "https://Stackoverflow.com/users/20818/" ]
198,312
<p>I'm learning how to make a firefox extension. I have created a xul and overlay file that makes a sidebar in my browser. I'm trying to put buttons in my sidebar that load different pages within the main browser window. I'm not sure how to access the main browser window and load a new url within it. I have here a simp...
[ { "answer_id": 3382347, "author": "esafwan", "author_id": 363661, "author_profile": "https://Stackoverflow.com/users/363661", "pm_score": 0, "selected": false, "text": "document.getElementById('1').loadURI('http://tridz.com')\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198312", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27538/" ]
198,320
<p>As far as I can understand, when I new up a <em>Linq to SQL class</em>, it is the equivalent of new'ing up a <em>SqlConnection object</em>.</p> <p>Suppose I have an object with two methods: <code>Delete()</code> and <code>SubmitChanges()</code>. Would it be wise of me to new up the <em>Linq to SQL class</em> in eac...
[ { "answer_id": 199159, "author": "Grank", "author_id": 12975, "author_profile": "https://Stackoverflow.com/users/12975", "pm_score": 3, "selected": true, "text": "namespace Madtastic\n{\n public class Comment\n {\n private Madtastic.DataContext mdc;\n private Madtasti...
2008/10/13
[ "https://Stackoverflow.com/questions/198320", "https://Stackoverflow.com", "https://Stackoverflow.com/users/20946/" ]
198,322
<p>Let's say I'm working on a little batch-processing console app in VB.Net. I want to be able to structure the app like this:</p> <pre class="lang-vb prettyprint-override"><code>Sub WorkerMethod() 'Do some work Trace.WriteLine("Work progress") 'Do more work Trace.WriteLine("Another progress update") ...
[ { "answer_id": 198326, "author": "harpo", "author_id": 4525, "author_profile": "https://Stackoverflow.com/users/4525", "pm_score": 8, "selected": true, "text": "<?xml version=\"1.0\"?>\n<configuration>\n <system.diagnostics>\n <trace autoflush=\"true\">\n <listeners>...
2008/10/13
[ "https://Stackoverflow.com/questions/198322", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3043/" ]
198,343
<p>We're working with a fixed transaction log size on our databases, and I'd like to put together an application to monitor the log sizes so we can see when things are getting too tight and we need to grow the fixed trn log. </p> <p>Is there any TSQL command that I can run which will tell me the current size of the tr...
[ { "answer_id": 198363, "author": "Eric Z Beard", "author_id": 1219, "author_profile": "https://Stackoverflow.com/users/1219", "pm_score": 4, "selected": false, "text": "DBCC SQLPERF ( LOGSPACE )\n" }, { "answer_id": 198427, "author": "Tom H", "author_id": 5696608, "au...
2008/10/13
[ "https://Stackoverflow.com/questions/198343", "https://Stackoverflow.com", "https://Stackoverflow.com/users/21973/" ]
198,346
<p>I've found a few samples online but I'd like to get feedback from people who use PHP daily as to potential security or performance considerations and their solutions.</p> <p>Note that I am only interested in uploading a single file at a time.</p> <p>Ideally no browser plugin would be required (Flash/Java), althoug...
[ { "answer_id": 198459, "author": "Drew Noakes", "author_id": 24874, "author_profile": "https://Stackoverflow.com/users/24874", "pm_score": 6, "selected": true, "text": "<form enctype=\"multipart/form-data\" action=\"action.php\" method=\"POST\">\n <input type=\"hidden\" name=\"MAX_FILE_...
2008/10/13
[ "https://Stackoverflow.com/questions/198346", "https://Stackoverflow.com", "https://Stackoverflow.com/users/24874/" ]
198,357
<p>A lot of programming languages and frameworks do/allow/require something that I can't seem to find the name for, even though there probably is one in computer science. What they basically do is bind to a variable/object/class/function by name. </p> <p><a href="http://www.adobe.com/products/flex/" rel="noreferrer">F...
[ { "answer_id": 198364, "author": "Konrad Rudolph", "author_id": 1968, "author_profile": "https://Stackoverflow.com/users/1968", "pm_score": 2, "selected": false, "text": "Class.forName" }, { "answer_id": 198436, "author": "Konrad Rudolph", "author_id": 1968, "author_p...
2008/10/13
[ "https://Stackoverflow.com/questions/198357", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13041/" ]
198,360
<p>I would like to host a silverlight control in winforms via a winforms browser, but for it to work I need some way for the forms to talk to the silverlight, and also the other way around. Would it be possible to somehow have the two interact with each other using JavaScript as a middleman? I.e., have the form speak...
[ { "answer_id": 208920, "author": "wahrhaft", "author_id": 17986, "author_profile": "https://Stackoverflow.com/users/17986", "pm_score": 5, "selected": true, "text": "webBrowser.AllowNavigation = false;\nwebBrowser.AllowWebBrowserDrop = false;\nwebBrowser.IsWebBrowserContextMenuEnabled = ...
2008/10/13
[ "https://Stackoverflow.com/questions/198360", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3291/" ]
198,365
<p>in Config.groovy I see this:</p> <pre><code>// set per-environment serverURL stem for creating absolute links environments { production { grails.serverURL = "http://www.changeme.com" } } </code></pre> <p>what is the correct way to access that at runtime?</p>
[ { "answer_id": 198466, "author": "danb", "author_id": 2031, "author_profile": "https://Stackoverflow.com/users/2031", "pm_score": 4, "selected": false, "text": "import org.codehaus.groovy.grails.commons.ConfigurationHolder\nprintln ConfigurationHolder.config.grails.serverURL\n grailsAppl...
2008/10/13
[ "https://Stackoverflow.com/questions/198365", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2031/" ]
198,409
<p>Is there code in VBA I can wrap a function with that will let me know the time it took to run, so that I can compare the different running times of functions?</p>
[ { "answer_id": 198702, "author": "Mike Woodhouse", "author_id": 1060, "author_profile": "https://Stackoverflow.com/users/1060", "pm_score": 7, "selected": true, "text": "QueryPerformanceCounter CTimer .StartCounter .TimeElapsed Option Explicit\n\nPrivate Type LARGE_INTEGER\n lowpart A...
2008/10/13
[ "https://Stackoverflow.com/questions/198409", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13295/" ]
198,419
<p>I'm getting XML like this:</p> <p><code>&lt;Items&gt; &lt;Row attr1="val"&gt;&lt;/Row&gt; &lt;Row attr1="val2"&gt;&lt;/Row&gt; &lt;/Items&gt;</code></p> <p>This is valid XML, as you know, but another library I'm using is busted and it will only accept XML in this format: </p> <p><code>&lt;Items&gt; &lt;Row attr...
[ { "answer_id": 198579, "author": "FlySwat", "author_id": 1965, "author_profile": "https://Stackoverflow.com/users/1965", "pm_score": 0, "selected": false, "text": "XmlElement items = xmlDoc.SelectNodes(\"items\");\nXmlElement row = xmlDoc.CreateElement(\"row\");\nitems[0].appendChild(row...
2008/10/13
[ "https://Stackoverflow.com/questions/198419", "https://Stackoverflow.com", "https://Stackoverflow.com/users/12979/" ]
198,431
<p>Is there a standard idiom for comparing version numbers? I can't just use a straight String compareTo because I don't know yet what the maximum number of point releases there will be. I need to compare the versions and have the following hold true:</p> <pre><code>1.0 &lt; 1.1 1.0.1 &lt; 1.1 1.9 &lt; 1.10 </code><...
[ { "answer_id": 836665, "author": "Peter Lawrey", "author_id": 57695, "author_profile": "https://Stackoverflow.com/users/57695", "pm_score": 6, "selected": false, "text": "import java.util.regex.Pattern;\n\npublic class Main {\n public static void main(String... args) {\n compar...
2008/10/13
[ "https://Stackoverflow.com/questions/198431", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1288/" ]
198,438
<p>Is there an efficient way of detecting if a jpeg file is corrupted? </p> <p>Background info:<br> &nbsp; solutions needs to work from within a php script<br> &nbsp; the jpeg files are on disk<br> &nbsp; manual checking is no option (user uploaded data) </p> <p>I know that <code>imagecreatefromjpeg(string $filenam...
[ { "answer_id": 1622536, "author": "fireweasel", "author_id": 26258, "author_profile": "https://Stackoverflow.com/users/26258", "pm_score": 3, "selected": false, "text": "\nfunction jpeg_file_is_complete($path) {\n if (!is_resource($file = fopen($path, 'rb'))) {\n return FALSE;\...
2008/10/13
[ "https://Stackoverflow.com/questions/198438", "https://Stackoverflow.com", "https://Stackoverflow.com/users/22674/" ]
198,448
<p>I'm planning on doing my next project in c# rather than c++ (using SlimDX).</p> <p>All of directX uses floats, however System.Math uses doubles. This means constantly converting between floats and doubles.</p> <p>So ideally I'd like to write all the code using floats, since I'm not getting any added precision conv...
[ { "answer_id": 60558935, "author": "picolino", "author_id": 9262535, "author_profile": "https://Stackoverflow.com/users/9262535", "pm_score": 1, "selected": false, "text": "MathF MathF" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198448", "https://Stackoverflow.com", "https://Stackoverflow.com/users/6266/" ]
198,460
<p>How do I generate a random number between <code>0</code> and <code>n</code>?</p>
[ { "answer_id": 198469, "author": "Mark A. Nicolosi", "author_id": 1103052, "author_profile": "https://Stackoverflow.com/users/1103052", "pm_score": 5, "selected": false, "text": "rand(n + 1)\n" }, { "answer_id": 198470, "author": "VonC", "author_id": 6309, "author_pro...
2008/10/13
[ "https://Stackoverflow.com/questions/198460", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1103052/" ]
198,462
<p>When comparing an HTTP GET to an HTTP POST, what are the differences from a security perspective? Is one of the choices inherently more secure than the other? If so, why?</p> <p>I realize that POST doesn't expose information on the URL, but is there any real value in that or is it just security through obscurity? I...
[ { "answer_id": 198487, "author": "Andrew Moore", "author_id": 26210, "author_profile": "https://Stackoverflow.com/users/26210", "pm_score": 5, "selected": false, "text": "POST GET POST POST GET GET POST SSL HTTPS" }, { "answer_id": 4725795, "author": "Incognito", "author_...
2008/10/13
[ "https://Stackoverflow.com/questions/198462", "https://Stackoverflow.com", "https://Stackoverflow.com/users/20774/" ]
198,465
<p>Is there any way to access the file object used by a CSV writer/reader object after it has been instantiated? I openned up the csv module, and it appears it's contest are builtin. I also tried setting the file object as a property but I get the following error:</p> <pre><code>AttributeError: '_csv.writer' object ...
[ { "answer_id": 198553, "author": "Dan Lenski", "author_id": 20789, "author_profile": "https://Stackoverflow.com/users/20789", "pm_score": 3, "selected": true, "text": "csv.writer w = csv.writer(fileobj, dialect, ...)\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198465", "https://Stackoverflow.com", "https://Stackoverflow.com/users/9940/" ]
198,478
<p>What are the key differences between Microsoft's SQL Server 2005 and SQL Server 2008? </p> <p>Are there any compelling reasons for upgrading (any edition, as I have a customer with multiple editions)? Or is there a website with either a chart or bullet point comparison of the two servers?</p> <p>Also, is there an...
[ { "answer_id": 4538108, "author": "vipin", "author_id": 554888, "author_profile": "https://Stackoverflow.com/users/554888", "pm_score": 2, "selected": false, "text": "* DATE: As you can imagine, the DATE data type only stores a date in the format of YYYY-MM-DD. It has a range of 0001-01-...
2008/10/13
[ "https://Stackoverflow.com/questions/198478", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13990/" ]
198,493
<p>I'm developing a system that needs to execute Intersystems Cache Terminal Scripts.</p> <p>When I run a routine inside the regular Caché terminal or a telnet terminal, Cache executes the routine until the end with no problems. But when I try to run the same routine, but this time calling the routine within a Caché t...
[ { "answer_id": 302330, "author": "Luis Soeiro", "author_id": 24165, "author_profile": "https://Stackoverflow.com/users/24165", "pm_score": 2, "selected": false, "text": " waitfor \"Operation finished\"\nterminate\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/24165/" ]
198,496
<p>What’s the difference between the <code>System.Array.CopyTo()</code> and <code>System.Array.Clone()</code>?</p>
[ { "answer_id": 198500, "author": "Patrick Desjardins", "author_id": 13913, "author_profile": "https://Stackoverflow.com/users/13913", "pm_score": 7, "selected": true, "text": "1- CopyTo require to have a destination array when Clone return a new array.\n2- CopyTo let you specify an index...
2008/10/13
[ "https://Stackoverflow.com/questions/198496", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14441/" ]
198,526
<p>How do I determine if the currency symbol is supposed to be on the left or right of a number using CFLocale / CFNumberFormatter in a Mac Carbon project?</p> <p>I need to interface with a spreadsheet application which requires me to pass a number, currency symbol, currency symbol location and padding instead of a CS...
[ { "answer_id": 200245, "author": "Hans Martin Kern", "author_id": 27559, "author_profile": "https://Stackoverflow.com/users/27559", "pm_score": 2, "selected": false, "text": " CFNumberFormatterRef numberFormatter = CFNumberFormatterCreate(kCFAllocatorDefault, CFLocaleCopyCurrent(), kC...
2008/10/13
[ "https://Stackoverflow.com/questions/198526", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27559/" ]
198,532
<p>In <code>.NET</code> (at least in the 2008 version, and maybe in 2005 as well), changing the <code>BackColor</code> property of a <code>DateTimePicker</code> has absolutely no affect on the appearance. How do I change the background color of the text area, not of the drop-down calendar?</p> <p><strong><em>Edit:</em...
[ { "answer_id": 199278, "author": "Vivek", "author_id": 7418, "author_profile": "https://Stackoverflow.com/users/7418", "pm_score": 5, "selected": true, "text": "BackColor DateTimePicker DateTimePicker BackColor WndProc BackColor myDTPicker.Invalidate() const int WM_ERASEBKGND = 0x14;\npr...
2008/10/13
[ "https://Stackoverflow.com/questions/198532", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27302/" ]
198,535
<p>I have small page which has label, DropDownList and a submit button.</p> <pre><code>&lt;div&gt; &lt;asp:label id=&quot;Message&quot; runat=&quot;server&quot;/&gt; &lt;br /&gt; Which city do you wish to look at on hotels for?&lt;br /&gt;&lt;br /&gt; &lt;asp:dropdownlist id=&quot;Dropdownli...
[ { "answer_id": 198547, "author": "tpower", "author_id": 18107, "author_profile": "https://Stackoverflow.com/users/18107", "pm_score": 0, "selected": false, "text": "Response.Cache.SetCacheability(HttpCacheability.NoCache)\n" }, { "answer_id": 13134015, "author": "Siddhesh Bon...
2008/10/13
[ "https://Stackoverflow.com/questions/198535", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2245/" ]
198,543
<p>I have a third-party editor that basically comprises a textbox and a button (the DevExpress ButtonEdit control). I want to make a particular keystroke (<kbd>Alt</kbd> + <kbd>Down</kbd>) emulate clicking the button. In order to avoid writing this over and over, I want to make a generic KeyUp event handler that will r...
[ { "answer_id": 198584, "author": "torial", "author_id": 13990, "author_profile": "https://Stackoverflow.com/users/13990", "pm_score": 3, "selected": false, "text": " public event EventHandler<EventArgs> MyEventToBeFired;\n\n public void FireEvent(Guid instanceId, string handler)\n ...
2008/10/13
[ "https://Stackoverflow.com/questions/198543", "https://Stackoverflow.com", "https://Stackoverflow.com/users/549/" ]
198,551
<p>I am interacting with an Oracle DB using SQL over an ODBC connection. Is there an SQL command I can use to get the MAC address of the server, or something that uniquely identifies the server hardware or software installation. This is so I can be sure (or at least fairly sure) that I'm talking to the same database ...
[ { "answer_id": 198569, "author": "Node", "author_id": 7190, "author_profile": "https://Stackoverflow.com/users/7190", "pm_score": 0, "selected": false, "text": "SELECT * FROM v$instance;\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198551", "https://Stackoverflow.com", "https://Stackoverflow.com/users/12889/" ]
198,552
<p>I have a row of data that I need to modify in a database, using a stored procedure. But in order to call that stored procedure, I need to know the name of the each column. How do I determine the name of the columns? (Hardcoding is not an option as we are talking a LOT of columns whose names may change).</p> <p>EDIT...
[ { "answer_id": 2056245, "author": "Community", "author_id": -1, "author_profile": "https://Stackoverflow.com/users/-1", "pm_score": 0, "selected": false, "text": " foreach (TableCell objCell in e.Row.Cells)\n {\n if (objCell is DataControl...
2008/10/13
[ "https://Stackoverflow.com/questions/198552", "https://Stackoverflow.com", "https://Stackoverflow.com/users/750/" ]
198,561
<p>I know this won't be a popular question, because a lot of web designers want to assume that their craft is difficult and valuable.</p> <p><strong>IT IS</strong>. But I do not believe that it is difficult because HTML and CSS are difficult to master, I believe its difficult because being a good creative designer is ...
[ { "answer_id": 198603, "author": "Kibbee", "author_id": 1862, "author_profile": "https://Stackoverflow.com/users/1862", "pm_score": 0, "selected": false, "text": "<font>" }, { "answer_id": 198751, "author": "Steve Perks", "author_id": 16124, "author_profile": "https:/...
2008/10/13
[ "https://Stackoverflow.com/questions/198561", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1965/" ]
198,564
<p>I have apache web server installed as frontend and I have j2ee SAP Netweaver Application Server installed in Intranet server. How can I configure apache to forward requests and response to/from j2ee app server. for example, external apache server's ip is 9.20.1.1:80. internal sap server's address is 192.168.0.1/sap...
[ { "answer_id": 198611, "author": "Mark Roddy", "author_id": 9940, "author_profile": "https://Stackoverflow.com/users/9940", "pm_score": 1, "selected": false, "text": " ProxyRequests Off\n <Location \"/sapserver\">\n ProxyPass http://192.168.0.1\n ProxyPassReverse http:/...
2008/10/13
[ "https://Stackoverflow.com/questions/198564", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27563/" ]
198,568
<p>What is the simplest way to programmatically export Excel data to Matlab?</p>
[ { "answer_id": 35903356, "author": "Community", "author_id": -1, "author_profile": "https://Stackoverflow.com/users/-1", "pm_score": 2, "selected": false, "text": "csvread() writetable()" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198568", "https://Stackoverflow.com", "https://Stackoverflow.com/users/26276/" ]
198,577
<p>Is there any real practical difference between "java -server" and "java -client"? </p> <p>All I can find on Sun's site is a vague </p> <blockquote> <p>"-server starts slower but should run faster". </p> </blockquote> <p>What are the real differences? (Using JDK 1.6.0_07 currently.)</p>
[ { "answer_id": 198651, "author": "VonC", "author_id": 6309, "author_profile": "https://Stackoverflow.com/users/6309", "pm_score": 10, "selected": true, "text": "-client java -client\n -client -server" }, { "answer_id": 3775811, "author": "prule", "author_id": 20242, "...
2008/10/13
[ "https://Stackoverflow.com/questions/198577", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3333/" ]
198,580
<p>What are optimal settings for Recycling of Application Pools in IIS7 in a shared environment?</p> <p><img src="https://i.stack.imgur.com/RNQo8.png" alt="enter image description here"></p>
[ { "answer_id": 201812, "author": "Christopher G. Lewis", "author_id": 13532, "author_profile": "https://Stackoverflow.com/users/13532", "pm_score": 6, "selected": true, "text": "retail=\"true\" <deployment> <system.web>\n <!--\n <deployment\n retail = \"false\" [true...
2008/10/13
[ "https://Stackoverflow.com/questions/198580", "https://Stackoverflow.com", "https://Stackoverflow.com/users/23280/" ]
198,606
<p>I typically use URL rewriting to pass content IDs to my website, so this</p> <pre><code> Foo.1.aspx </code></pre> <p>rewrites to</p> <pre><code> Foo.aspx?id=1 </code></pre> <p>For a specific application I need to pass in multiple IDs to a single page, so I've rewritten things to accept this:</p> <pre><code> Fo...
[ { "answer_id": 198617, "author": "Joel Coehoorn", "author_id": 3043, "author_profile": "https://Stackoverflow.com/users/3043", "pm_score": 1, "selected": false, "text": "Foo.aspx?id=1;id=2;id=3;id=4;id=5\n" }, { "answer_id": 198850, "author": "ConroyP", "author_id": 2287,...
2008/10/13
[ "https://Stackoverflow.com/questions/198606", "https://Stackoverflow.com", "https://Stackoverflow.com/users/239663/" ]
198,623
<p>I haven't really done any Windows scripting at all, so I am at a loss on how to pull this one off. Anyway, basically what we want to do is have a script that will take an argument on which IIS AppPool to recycle. I have done some research on Google and haven't had much success on getting things to work.</p> <p>He...
[ { "answer_id": 198760, "author": "Scott Saad", "author_id": 4916, "author_profile": "https://Stackoverflow.com/users/4916", "pm_score": 4, "selected": false, "text": "$appPoolName = $args[0]\n$appPool = get-wmiobject -namespace \"root\\MicrosoftIISv2\" -class \"IIsApplicationPool\" | Whe...
2008/10/13
[ "https://Stackoverflow.com/questions/198623", "https://Stackoverflow.com", "https://Stackoverflow.com/users/12448/" ]
198,625
<p>Does anyone know if it is possible to reliably determine (programattically C/C++...) whether or not a firewall or IP filtering software is installed on a Windows PC? I need to detect whether a certain server IP is being blocked in my client software by the host OS.</p> <p>I don't need to worry about external hardw...
[ { "answer_id": 200260, "author": "Jay", "author_id": 20840, "author_profile": "https://Stackoverflow.com/users/20840", "pm_score": 3, "selected": true, "text": "Private Sub DumpFirewallInfo()\n\nDim oLocator As WbemScripting.SWbemLocator\nDim oService As WbemScripting.SWbemServices...
2008/10/13
[ "https://Stackoverflow.com/questions/198625", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10446/" ]
198,634
<p>I have a table which contains 3 nvarchar(255) columns and a combination of these 3 columns must be unique. Normally I would create a Unique constraint, but in this case, I am hitting the 900 byte limit. Since I have to support SQL Server 2000, I can not use Include columns to get around this situation.</p>
[ { "answer_id": 198737, "author": "Tom H", "author_id": 5696608, "author_profile": "https://Stackoverflow.com/users/5696608", "pm_score": 0, "selected": false, "text": "CREATE TABLE dbo.Test_Unique_Limit (\n string_1 NVARCHAR(255) NOT NULL,\n string_2 NVARCHAR(255) NOT NUL...
2008/10/13
[ "https://Stackoverflow.com/questions/198634", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4441/" ]
198,650
<p>In asp.net, you can retrieve MULTIPLE datatables from a single call to the database. Can you do the same thing in php?</p> <p>Example:</p> <pre><code>$sql ="select * from t1; select * from t2;"; $result = SomeQueryFunc($sql); print_r($result[0]); // dump results for t1 print_r($result[1]); // dump results for t2 ...
[ { "answer_id": 198686, "author": "Kornel", "author_id": 27009, "author_profile": "https://Stackoverflow.com/users/27009", "pm_score": 0, "selected": false, "text": "PDOStatement::nextRowset()" }, { "answer_id": 8111427, "author": "genesis", "author_id": 764846, "autho...
2008/10/13
[ "https://Stackoverflow.com/questions/198650", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27305/" ]
198,656
<p>I creating a control for WPF, and I have a question for you WPF gurus out there.</p> <p>I want my control to be able to expand to fit a resizable window. </p> <p>In my control, I have a list box that I want to expand with the window. I also have other controls around the list box (buttons, text, etc).</p> <p>I wa...
[ { "answer_id": 198688, "author": "Bob King", "author_id": 6897, "author_profile": "https://Stackoverflow.com/users/6897", "pm_score": 0, "selected": false, "text": "<Window\n xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" \n xmlns:x=\"http://schemas.microsoft.com/w...
2008/10/13
[ "https://Stackoverflow.com/questions/198656", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,668
<p>I have a situation where I need to be able to load assemblies in the GAC based on their partial names. In order to do this I have added the following to my app.config file:</p> <pre><code>&lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;qualifyAssembly partialName="MyAssem...
[ { "answer_id": 198688, "author": "Bob King", "author_id": 6897, "author_profile": "https://Stackoverflow.com/users/6897", "pm_score": 0, "selected": false, "text": "<Window\n xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" \n xmlns:x=\"http://schemas.microsoft.com/w...
2008/10/13
[ "https://Stackoverflow.com/questions/198668", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27578/" ]
198,670
<p>Thanks for reading. I'm a bit new to jQuery, and am trying to make a script I can include in all my websites to solve a problem that always drives me crazy...</p> <p>The problem: Select boxes with long options get cut off in Internet Explorer. For example, these select boxes: <a href="http://discoverfire.com/test/s...
[ { "answer_id": 198901, "author": "msmithstubbs", "author_id": 27606, "author_profile": "https://Stackoverflow.com/users/27606", "pm_score": 5, "selected": true, "text": "$('select').each(function(){\n\n $('option', this).each(function() {\n // your normalizing script here\n\n })\n\n...
2008/10/13
[ "https://Stackoverflow.com/questions/198670", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27580/" ]
198,679
<p>Given an <code>InputStream</code> called <code>in</code> which contains audio data in a compressed format (such as MP3 or OGG), I wish to create a <code>byte</code> array containing a WAV conversion of the input data. Unfortunately, if you try to do this, JavaSound hands you the following error:</p> <pre><code>java...
[ { "answer_id": 6505115, "author": "Gábor Dikán", "author_id": 818978, "author_profile": "https://Stackoverflow.com/users/818978", "pm_score": -1, "selected": false, "text": "File f = new File(exportFileName+\".tmp\");\nFile f2 = new File(exportFileName);\nlong l = f.length();\nFileInputS...
2008/10/13
[ "https://Stackoverflow.com/questions/198679", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4287/" ]
198,691
<p>I'm working on a solution that contains multiple projects targeting Windows Mobile 5 and standard Windows applications.</p> <p>Lately when opening up a form in designer the common UI controls (textbox, button, label, etc etc...) have vanished leaving only the controls defined within the project.</p> <p>Resetting t...
[ { "answer_id": 199273, "author": "justin.m.chase", "author_id": 12958, "author_profile": "https://Stackoverflow.com/users/12958", "pm_score": 1, "selected": false, "text": "[ToolboxBitmap(typeof(MyControl), \"MyControlBitmap\")]\n" }, { "answer_id": 868765, "author": "Simon H...
2008/10/13
[ "https://Stackoverflow.com/questions/198691", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,692
<p>Any gotchas I should be aware of? Can I store it in a text field, or do I need to use a blob? (I'm not overly familiar with either pickle or sqlite, so I wanted to make sure I'm barking up the right tree with some of my high-level design ideas.)</p>
[ { "answer_id": 199393, "author": "mhawke", "author_id": 21945, "author_profile": "https://Stackoverflow.com/users/21945", "pm_score": 1, "selected": false, "text": "shelve" }, { "answer_id": 200143, "author": "monkut", "author_id": 24718, "author_profile": "https://St...
2008/10/13
[ "https://Stackoverflow.com/questions/198692", "https://Stackoverflow.com", "https://Stackoverflow.com/users/19074/" ]
198,705
<p>In my <a href="http://www.codeplex.com/MEF" rel="nofollow noreferrer">MEF</a> usage, I have a bunch of imports that I want to make available in many other parts of my code. Something like:</p> <pre><code>[Export (typeof (IBarProvider))] class MyBarFactory : IBarPovider { [Import] public IFoo1Service IFoo1Se...
[ { "answer_id": 198708, "author": "Jay Bazuzi", "author_id": 5314, "author_profile": "https://Stackoverflow.com/users/5314", "pm_score": 0, "selected": false, "text": "partial class BarImplementation\n{\n public IRequiredServices\n {\n\n public IFoo1Service IFoo1Service { get...
2008/10/13
[ "https://Stackoverflow.com/questions/198705", "https://Stackoverflow.com", "https://Stackoverflow.com/users/5314/" ]
198,707
<p>As a workaround for a problem, I think I have to handle KeyDown events to get the printable character the user actually typed.</p> <p>KeyDown supplies me with a KeyEventArgs object with the properities KeyCode, KeyData, KeyValue, Modifiers, Alt, Shift, Control.</p> <p>My first attempt was just to consider the KeyC...
[ { "answer_id": 198804, "author": "Aleris", "author_id": 20417, "author_profile": "https://Stackoverflow.com/users/20417", "pm_score": 0, "selected": false, "text": "KeysConverter converter = new KeysConverter();\nstring key = converter.ConvertTo(e.KeyCode, typeof(string));\n" }, { ...
2008/10/13
[ "https://Stackoverflow.com/questions/198707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/9328/" ]
198,716
<p>I need to pivot one column (Numbers column). example need this data:</p> <pre><code>a 1 a 2 b 3 b 4 c 5 d 6 d 7 d 8 d 9 e 10 e 11 e 12 e 13 e 14 </code></pre> <p>Look like this</p> <pre><code>a 1 2 b 3 4 c 5 d 6 7 8 9 e 10 11 12 13 14 </code></pre> <p>any help would be greatly appreciated...</p>
[ { "answer_id": 198920, "author": "Tom H", "author_id": 5696608, "author_profile": "https://Stackoverflow.com/users/5696608", "pm_score": 1, "selected": false, "text": "WITH CTE(CTEstring, CTEids, CTElast_id)\nAS\n(\n SELECT string, CAST(id AS VARCHAR(1000)), id\n FROM dbo.Test_Pivo...
2008/10/13
[ "https://Stackoverflow.com/questions/198716", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27585/" ]
198,717
<p>Ok, so I'm building bread crumbs and depending on the value of the breadcrumb an image will be the seperator. So "HOME" will have one image and "SEARCH" will have another. </p> <p>I know I can do this programatically (at least I ASSUME) but is there an easier way to do this? Can I link an image to a node based on t...
[ { "answer_id": 198817, "author": "Aleris", "author_id": 20417, "author_profile": "https://Stackoverflow.com/users/20417", "pm_score": 2, "selected": false, "text": "<asp:Image ... />\n" }, { "answer_id": 199212, "author": "Alfred B. Thordarson", "author_id": 3379, "au...
2008/10/13
[ "https://Stackoverflow.com/questions/198717", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4140/" ]
198,720
<p>Is there a ColdFusion analog for the deployment descriptor/web.xml file found in a J2EE web container? I know CF is running on top of JRun and that I could just tweak the JRun dd, but what about an application-specific configuration file? Is there something like this that I'm not aware of or do you just have to roll...
[ { "answer_id": 13518556, "author": "James A Mohler", "author_id": 1845869, "author_profile": "https://Stackoverflow.com/users/1845869", "pm_score": 2, "selected": false, "text": "application.cfc application.cfm fusebox.xml circuit.xml application.cfc" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198720", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2376109/" ]
198,721
<p>I have a set of Word documents which I want to publish using a PHP tool I've written. I copy and paste the Word documents into a text box and then save them into MySQL using the PHP program. The problem I Have arises from all the non-standard characters that Word documents have, like curly quotes and ellipses ("..."...
[ { "answer_id": 198757, "author": "eyelidlessness", "author_id": 17964, "author_profile": "https://Stackoverflow.com/users/17964", "pm_score": 3, "selected": false, "text": "$str = mb_convert_encoding($str, 'HTML-ENTITIES', 'UTF-8')\n" }, { "answer_id": 6561145, "author": "tyl...
2008/10/13
[ "https://Stackoverflow.com/questions/198721", "https://Stackoverflow.com", "https://Stackoverflow.com/users/11522/" ]
198,726
<p>I'm responsible for several (rather small) programs, which share a lot of code via different libraries. I'm wondering what the best repository layout is to develop the different prorgrams (and libraries), and keep the libraries in sync across all the programs.</p> <p>For the sake of argument let's say there are two...
[ { "answer_id": 198800, "author": "oz10", "author_id": 14069, "author_profile": "https://Stackoverflow.com/users/14069", "pm_score": 4, "selected": true, "text": "svnadmin create /path/library1\nsvnadmin create /path/library2\n...\n svnadmin create /path/program1\nsvnadmin create /path/pr...
2008/10/13
[ "https://Stackoverflow.com/questions/198726", "https://Stackoverflow.com", "https://Stackoverflow.com/users/5822/" ]
198,743
<p>After many years of using make, I've just started using jam (actually ftjam) for my projects. </p> <p>In my project workspaces, I have two directories:</p> <ul> <li><code>src</code> where I build executables and libraries</li> <li><code>test</code> where my test programs are</li> </ul> <p>I'm trying to set up a d...
[ { "answer_id": 201788, "author": "Remo.D", "author_id": 16827, "author_profile": "https://Stackoverflow.com/users/16827", "pm_score": 2, "selected": false, "text": "jmk jam if [ \"$JMKROOT\" = \"\" ] ; then\n JMKROOT=`pwd`\n export JMKROOT\nfi\ncd $JMKROOT\njam $*\n jmk.bat @echo off...
2008/10/13
[ "https://Stackoverflow.com/questions/198743", "https://Stackoverflow.com", "https://Stackoverflow.com/users/16827/" ]
198,744
<p>Yeah, its a bit on this side of pointless, but I was wondering... I've got all these codebehind files cluttering my MVC app. The only reason why I need these files, as far as I can tell, is to tell ASP.NET that my page extends from ViewPage rather than Page. </p> <p>I've tried a couple different Page directives c...
[ { "answer_id": 198797, "author": "Chris Sutton", "author_id": 3289, "author_profile": "https://Stackoverflow.com/users/3289", "pm_score": 3, "selected": true, "text": "<%@ Page Title=\"Title\" Inherits=\"System.Web.Mvc.ViewPage\" Language=\"C#\" MasterPageFile=\"~/Views/Layouts/Site.Mast...
2008/10/13
[ "https://Stackoverflow.com/questions/198744", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,754
<p>When using the unmanaged API for the .NET framework to profile a .NET process in-process, is it possible to look up the IL instruction pointer that correlates to the native instruction pointer provided to the StackSnapshotCallback function?</p> <p>As is probably obvious, I am taking a snapshot of the current stack,...
[ { "answer_id": 214123, "author": "Community", "author_id": -1, "author_profile": "https://Stackoverflow.com/users/-1", "pm_score": 0, "selected": false, "text": "Console.WriteLine(\"StackTrace: '{0}'\", Environment.StackTrace);\n" }, { "answer_id": 255795, "author": "Steven",...
2008/10/13
[ "https://Stackoverflow.com/questions/198754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27577/" ]
198,772
<p>I know there are tools to get text files to resource files for Visual Studio. But I want to get the text from my resource files to a text file so they can be translated. Or is there a better way to do this? </p>
[ { "answer_id": 17493871, "author": "fireydude", "author_id": 869290, "author_profile": "https://Stackoverflow.com/users/869290", "pm_score": 2, "selected": false, "text": "public class Export\n{\n public string Run()\n {\n var resources = new StringBuilder();\n\n var ...
2008/10/13
[ "https://Stackoverflow.com/questions/198772", "https://Stackoverflow.com", "https://Stackoverflow.com/users/7024/" ]
198,777
<p>I'm trying to configure Windows Powershell to work with Visual Studio. Nothing fancy, just get things set so I can cl &amp; nmake. I think all I need to do is edit the path setting(but I don't know how to set that in WPSH).</p>
[ { "answer_id": 199529, "author": "Paul Nathan", "author_id": 26227, "author_profile": "https://Stackoverflow.com/users/26227", "pm_score": 3, "selected": true, "text": "function Get-Batchfile($file) \n{\n $theCmd = \"`\"$file`\" & set\" \n cmd /c $theCmd | Foreach-Object {\n ...
2008/10/13
[ "https://Stackoverflow.com/questions/198777", "https://Stackoverflow.com", "https://Stackoverflow.com/users/26227/" ]
198,781
<p>Easy question this time.</p> <p>I'm trying to test whether or not a string does not contain a character using regular expressions. I thought the expression was of the form "[^<em>x</em>]" where <em>x</em> is the character that you don't want to appear, but that doesn't seem to be working.</p> <p>For example,</p> ...
[ { "answer_id": 198790, "author": "Jorge Ferreira", "author_id": 6508, "author_profile": "https://Stackoverflow.com/users/6508", "pm_score": 7, "selected": true, "text": "Regex.IsMatch(\"103\",\"^[^0]*$\")\n" }, { "answer_id": 198796, "author": "Joel Coehoorn", "author_id"...
2008/10/13
[ "https://Stackoverflow.com/questions/198781", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1108/" ]
198,803
<p>What is the best practice for storing keys, and or passwords for a website. These keys are for various 3rd party web services. Is it best to have them in the Web.config file, or in the database, or encrypted somehow? </p>
[ { "answer_id": 198816, "author": "defeated", "author_id": 16997, "author_profile": "https://Stackoverflow.com/users/16997", "pm_score": 2, "selected": false, "text": "<configSections>\n <section \n name=\"sampleSection\" \n type=\"System.Configuration.SingleTagSectionHandler\...
2008/10/13
[ "https://Stackoverflow.com/questions/198803", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13855/" ]
198,825
<p>Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, there's copious use of Hungarian notation (the bad kind).</p> <p>Would you refactor the variable names to remove the Hungarian notation...
[ { "answer_id": 1797887, "author": "Community", "author_id": -1, "author_profile": "https://Stackoverflow.com/users/-1", "pm_score": 0, "selected": false, "text": "\"\" Hungarian notation conversion helpers\n\"\" get rid of str prefixes and fix caps e.g. strName -> name\nmap ,bs /\\Wstr[A...
2008/10/13
[ "https://Stackoverflow.com/questions/198825", "https://Stackoverflow.com", "https://Stackoverflow.com/users/7565/" ]
198,831
<p>I'm building an app in Ruby on Rails, and I'm including 3 of my models (and their migration scripts) to show what I'm trying to do, and what isn't working. Here's the rundown: I have users in my application that belong to teams, and each team can have multiple coaches. I want to be able to pull a list of the coach...
[ { "answer_id": 198971, "author": "Matthias Winkelmann", "author_id": 4494, "author_profile": "https://Stackoverflow.com/users/4494", "pm_score": 2, "selected": false, "text": "has_many :coaches, :finder_sql => 'SELECT * from coaches, teams_users WHERE \n coaches.team_id=tea...
2008/10/13
[ "https://Stackoverflow.com/questions/198831", "https://Stackoverflow.com", "https://Stackoverflow.com/users/168/" ]
198,849
<p>I've just performed a new installation of the very latest (Fall, 2008) version of Fedora 9 Linux and am perplexed that it never set the default route properly and that even traveling the labyrinthine ways of this OS, there's no obvious way.</p> <p>Of course, it's clear that one can do it on a one-off basis like thi...
[ { "answer_id": 198899, "author": "John Nilsson", "author_id": 24243, "author_profile": "https://Stackoverflow.com/users/24243", "pm_score": 0, "selected": false, "text": "gnome-network-preferences" }, { "answer_id": 198969, "author": "Paul Tomblin", "author_id": 3333, ...
2008/10/13
[ "https://Stackoverflow.com/questions/198849", "https://Stackoverflow.com", "https://Stackoverflow.com/users/26976/" ]
198,852
<p>I am using Visual Studio 2005 to make an install. The application has a dependency on a DLL that was built with MFC 7.1 (from Visual Studio 2003).</p> <p>Are there merge modules for MFC 7.1 or other redistributables like there are for MFC 8? Where could they be found?</p>
[ { "answer_id": 200047, "author": "bk1e", "author_id": 8090, "author_profile": "https://Stackoverflow.com/users/8090", "pm_score": 0, "selected": false, "text": "%ProgramFiles%\\Microsoft Visual Studio .NET 2003\\redist" }, { "answer_id": 209093, "author": "djeidot", "auth...
2008/10/13
[ "https://Stackoverflow.com/questions/198852", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4066/" ]
198,868
<p>a while back I ran across a situation where we needed to display message-boxes to the user for notifications but we could not use MessageBox.Show because it blocks the GUI thread (so nothing on the screen gets updated while the dialog is active). Any suggestions on an alternative?</p> <p>[I coded an alternative at ...
[ { "answer_id": 198938, "author": "Maurice", "author_id": 19676, "author_profile": "https://Stackoverflow.com/users/19676", "pm_score": -1, "selected": false, "text": "ThreadPool.QueueUserWorkItem( (state) =>\n {\n MessageBox.Show(\"Your message\");\n });\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198868", "https://Stackoverflow.com", "https://Stackoverflow.com/users/9345/" ]
198,873
<p>What are the minimum OS requirements for each of the .Net frameworks? E.g. for which version is it impossible to run each OS on:</p> <ul> <li>Windows 95</li> <li>Windows 98</li> <li>Windows 98SE</li> <li>Windows ME</li> <li>Windows NT 3.x</li> <li>Windows NT 4</li> <li>Windows 2000</li> </ul> <p>I believe all .Ne...
[ { "answer_id": 198886, "author": "stephenbayer", "author_id": 18893, "author_profile": "https://Stackoverflow.com/users/18893", "pm_score": 2, "selected": false, "text": "Windows NT\nWindows Server 2003 (Itanium-based)\n Microsoft Windows 2003 Server Service Pack 1 (SP1)\nWindows XP SP2\...
2008/10/13
[ "https://Stackoverflow.com/questions/198873", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13990/" ]
198,892
<p>I have an img tag in my webapp that uses the onload handler to resize the image:</p> <pre><code>&lt;img onLoad="SizeImage(this);" src="foo" &gt; </code></pre> <p>This works fine in Firefox 3, but fails in IE7 because the image object being passed to the <code>SizeImage()</code> function has a width and height of 0...
[ { "answer_id": 198903, "author": "Steve Paulo", "author_id": 9414, "author_profile": "https://Stackoverflow.com/users/9414", "pm_score": 4, "selected": true, "text": "document.onload(runFunction);" }, { "answer_id": 198908, "author": "Ross", "author_id": 2025, "author...
2008/10/13
[ "https://Stackoverflow.com/questions/198892", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10861/" ]
198,910
<p>I wrote a small WPF app where I like to prepend text into a RichTextBox, so that the newest stuff is on top. I wrote this, and it works: </p> <pre><code> /// &lt;summary&gt; /// Prepends the text to the rich textbox /// &lt;/summary&gt; /// &lt;param name="textoutput"&gt;The text representing the cha...
[ { "answer_id": 200185, "author": "rudigrobler", "author_id": 5147, "author_profile": "https://Stackoverflow.com/users/5147", "pm_score": 5, "selected": true, "text": "BitmapImage bi = new BitmapImage(new Uri(@\"C:\\SimpleImage.jpg\"));\nImage image = new Image();\nimage.Source = bi;\nInl...
2008/10/13
[ "https://Stackoverflow.com/questions/198910", "https://Stackoverflow.com", "https://Stackoverflow.com/users/5948/" ]
198,928
<p>Brief:</p> <pre><code>convert ( -size 585x128 gradient: ) NewImage.png </code></pre> <p>How do I change the above ImageMagick command so it takes the width and height from an existing image? I need it to remain a one line command.</p> <hr> <p>Details:</p> <p>I'm trying to programatically create an image reflec...
[ { "answer_id": 205401, "author": "korro", "author_id": 22650, "author_profile": "https://Stackoverflow.com/users/22650", "pm_score": 1, "selected": false, "text": "command = String.Format(\"convert bar %1x%2\",img.Width,img.Height)\n" }, { "answer_id": 2701367, "author": "hac...
2008/10/13
[ "https://Stackoverflow.com/questions/198928", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
198,931
<p>How can I find out if SP1 has been installed on a server which has .NET 3.5?</p>
[ { "answer_id": 198959, "author": "Ray", "author_id": 233, "author_profile": "https://Stackoverflow.com/users/233", "pm_score": 7, "selected": false, "text": "HKLM\\SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v3.5\\ Version SP const string name = @\"SOFTWARE\\Microsoft\\NET Framework S...
2008/10/13
[ "https://Stackoverflow.com/questions/198931", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1463/" ]
198,936
<p>What is the right way to populate the model for the index page in a grails app? There is no IndexController by default, is there some other mechanism for getting lists of this and that into the model?</p>
[ { "answer_id": 204537, "author": "Ed.T", "author_id": 3014, "author_profile": "https://Stackoverflow.com/users/3014", "pm_score": 6, "selected": true, "text": "class UrlMappings {\n static mappings = {\n \"/$controller/$action?/$id?\"{\n constraints {\n ...
2008/10/13
[ "https://Stackoverflow.com/questions/198936", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2031/" ]
198,945
<p>How can you get a <strong>raw</strong> socket in Perl, and then what's the best way to built a packet for use with it?</p>
[ { "answer_id": 199031, "author": "raldi", "author_id": 7598, "author_profile": "https://Stackoverflow.com/users/7598", "pm_score": 3, "selected": true, "text": "use Net::RawIP;\n$a = new Net::RawIP;\n$a->set({ip => {saddr => 'my.target.lan',daddr => 'my.target.lan'},\n tcp => {so...
2008/10/13
[ "https://Stackoverflow.com/questions/198945", "https://Stackoverflow.com", "https://Stackoverflow.com/users/7598/" ]
198,952
<p>I have two users Bob and Alice in Oracle, both created by running the following commands as sysdba from sqlplus:</p> <pre> create user $blah identified by $password; grant resource, connect, create view to $blah; </pre> <p>I want Bob to have complete access to Alice's schema (that is, all tables), but I'm no...
[ { "answer_id": 198962, "author": "cagcowboy", "author_id": 19629, "author_profile": "https://Stackoverflow.com/users/19629", "pm_score": 5, "selected": true, "text": "SELECT 'GRANT ALL ON '||table_name||' TO BOB;'\nFROM ALL_TABLES\nWHERE OWNER = 'ALICE';\n PROCEDURE GRANT_TABLES\n ...
2008/10/13
[ "https://Stackoverflow.com/questions/198952", "https://Stackoverflow.com", "https://Stackoverflow.com/users/25915/" ]
198,970
<p>I have a fairly simple const struct in some C code that simply holds a few pointers and would like to initialize it statically if possible. Can I and, if so, how?</p>
[ { "answer_id": 198980, "author": "Lev", "author_id": 7224, "author_profile": "https://Stackoverflow.com/users/7224", "pm_score": 5, "selected": true, "text": "// In global scope\nint x, y;\nconst struct {int *px, *py; } s = {&x, &y};\n" }, { "answer_id": 198983, "author": "AS...
2008/10/13
[ "https://Stackoverflow.com/questions/198970", "https://Stackoverflow.com", "https://Stackoverflow.com/users/26551/" ]
198,974
<p>I have a validation control that has the following expression:</p> <pre><code>(?=(.*\\d.*){2,})(?=(.*\\w.*){2,})(?=(.*\\W.*){1,}).{8,} </code></pre> <p>That's a password with at least <strong>2 digits</strong>, <strong>2 alpha characters</strong>, <strong>1 non-alphanumeric</strong> and <strong>8 character minimum...
[ { "answer_id": 199085, "author": "Markus Jarderot", "author_id": 22364, "author_profile": "https://Stackoverflow.com/users/22364", "pm_score": 5, "selected": true, "text": "(?=(.*\\W.*){0,}) (?!.*\\W) (?=\\w*$) \\W \\w{8,} .{8,} \\w \\d [^\\W\\d] [A-Za-z] /^(?=(?:.*?\\d){2})(?=(?:.*?[A-Z...
2008/10/13
[ "https://Stackoverflow.com/questions/198974", "https://Stackoverflow.com", "https://Stackoverflow.com/users/19753/" ]
198,975
<p>I am tring to get the <a href="http://www.herrodius.com/blog/85" rel="nofollow noreferrer">ASDoc Ant task</a> to work:</p> <pre><code>&lt;target name="asdoc" depends="compile"&gt; &lt;mkdir dir="${dist_asdocs}"/&gt; &lt;asdoc docSources="${srcdir}" output="${dist_asdocs}" executable="${FLEX_HOM...
[ { "answer_id": 199586, "author": "Simon Lehmann", "author_id": 27011, "author_profile": "https://Stackoverflow.com/users/27011", "pm_score": 2, "selected": false, "text": "<exec executable=\"${FLEX_HOME}/bin/asdoc\" dir=\"${basedir}\">\n <arg value=\"-source-path\"/>\n <arg path=\"...
2008/10/13
[ "https://Stackoverflow.com/questions/198975", "https://Stackoverflow.com", "https://Stackoverflow.com/users/13220/" ]
198,979
<p>I'm using Visual Studio 2008 Team System with SP1, and I've noticed an annoying tendency for the IDE to hang for several (10-15) seconds whenever I stop debugging an application. At first I thought this only happened with WPF apps, but I've observed the behavior in Windows Forms apps and ASP.NET sites as well. I'v...
[ { "answer_id": 199062, "author": "AJ.", "author_id": 27457, "author_profile": "https://Stackoverflow.com/users/27457", "pm_score": 0, "selected": false, "text": "private void button1_Click(object sender, EventArgs e)\n{\n MessageBox.Show(\"I am saying hello.\");\n}\n" }, { "an...
2008/10/13
[ "https://Stackoverflow.com/questions/198979", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27457/" ]
198,984
<p>I have a solution with multiple projects and we need to do some serious global replacements.</p> <p>Is there a way to do a wildcard replacement where some values remain in after the replace?</p> <p>So, for instance if I want every <strong>HttpContext.Current.Session[“whatevervalue”]</strong> to become <strong>Http...
[ { "answer_id": 199002, "author": "Gordon Bell", "author_id": 16473, "author_profile": "https://Stackoverflow.com/users/16473", "pm_score": 5, "selected": true, "text": "HttpContext\\.Current\\.Session\\[\"{.@}\"\\]\n HttpContext.Current.Session[\"\\1\"].ToString()\n" }, { "answer...
2008/10/13
[ "https://Stackoverflow.com/questions/198984", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2213/" ]
198,991
<p>I'm in need of a lightweight library for 2d &amp; 3d vectors and 3x3 &amp; 4x4 matrices. In basic C. Just so I don't reinvent the wheel suboptimally.</p> <p>Any suggestions?</p>
[ { "answer_id": 228970, "author": "Nazgob", "author_id": 3579, "author_profile": "https://Stackoverflow.com/users/3579", "pm_score": 1, "selected": false, "text": "#include <D3DX9Math.h>\n" } ]
2008/10/13
[ "https://Stackoverflow.com/questions/198991", "https://Stackoverflow.com", "https://Stackoverflow.com/users/8683/" ]
199,014
<p>I have a proxy object generated by Visual Studio (client side) named ServerClient. I am attempting to set ClientCredentials.UserName.UserName/Password before opening up a new connection using this code:</p> <pre><code>InstanceContext context = new InstanceContext(this); m_client = new ServerClient(context); m_clie...
[ { "answer_id": 201190, "author": "Paul Mrozowski", "author_id": 3656, "author_profile": "https://Stackoverflow.com/users/3656", "pm_score": 4, "selected": true, "text": "base.ClientCredentials.UserName.UserName = \"Sample\";\n" }, { "answer_id": 800233, "author": "Eugene Yoko...
2008/10/13
[ "https://Stackoverflow.com/questions/199014", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3656/" ]
199,016
<p>I'm trying to use opengl in C#. I have following code which fails with error 2000 ERROR_INVALID_PIXEL_FORMAT<br> First definitions:</p> <pre><code>[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern IntPtr GetDC(IntPtr hWnd); [StructLayout(LayoutKind.Se...
[ { "answer_id": 205675, "author": "Brian", "author_id": 17356, "author_profile": "https://Stackoverflow.com/users/17356", "pm_score": 0, "selected": false, "text": "[StructLayout(LayoutKind.Sequential, Pack=1)]\n" }, { "answer_id": 206933, "author": "SeeR", "author_id": 22...
2008/10/13
[ "https://Stackoverflow.com/questions/199016", "https://Stackoverflow.com", "https://Stackoverflow.com/users/22569/" ]
199,017
<p>I'm looking for best practices for performing strict (whitelist) validation/filtering of user-submitted HTML.</p> <p>Main purpose is to filter out XSS and similar nasties that may be entered via web forms. Secondary purpose is to limit breakage of HTML content entered by non-technical users e.g. via WYSIWYG editor...
[ { "answer_id": 199072, "author": "Ross", "author_id": 2025, "author_profile": "https://Stackoverflow.com/users/2025", "pm_score": 3, "selected": false, "text": "<img src=\"http://www.mysite.com/logout\" />\n <a href=\"javascript:alert('xss hole');\">click</a>\n" }, { "answer_id":...
2008/10/13
[ "https://Stackoverflow.com/questions/199017", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27304/" ]
199,035
<p>Has anyone used <a href="http://pear.php.net/package/Spreadsheet_Excel_Writer/" rel="nofollow noreferrer">Pear: Spreadsheet_Excel_Writer</a>?</p> <p>The <a href="http://pear.php.net/manual/en/package.fileformats.spreadsheet-excel-writer.intro-format.php" rel="nofollow noreferrer">Formatting Tutorial</a> lists a scr...
[ { "answer_id": 199166, "author": "Till", "author_id": 2859, "author_profile": "https://Stackoverflow.com/users/2859", "pm_score": 3, "selected": true, "text": "<?php\nrequire_once 'Spreadsheet/Excel/Writer.php';\n$workbook = new Spreadsheet_Excel_Writer('test.xls');\n$worksheet =& $workb...
2008/10/13
[ "https://Stackoverflow.com/questions/199035", "https://Stackoverflow.com", "https://Stackoverflow.com/users/15031/" ]
199,044
<p>My rails app is in a svn repository, but several of the plugins are installed through git and later added to the svn repo. How can I update these plugins? I can't seem to get script/plugin update to do anything. I'd really like to update activemerchant to get rid of the Inflector warnings.</p>
[ { "answer_id": 200349, "author": "Greg Borenstein", "author_id": 10419, "author_profile": "https://Stackoverflow.com/users/10419", "pm_score": 0, "selected": false, "text": "\ngit pull\n script/install plugin" }, { "answer_id": 215380, "author": "Matt", "author_id": 29228...
2008/10/13
[ "https://Stackoverflow.com/questions/199044", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2884/" ]
199,045
<p>I'm looking for a library that has functionality similar to Perl's <a href="http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize.pm#SYNOPSIS" rel="noreferrer">WWW::Mechanize</a>, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse the resulting ...
[ { "answer_id": 199054, "author": "moo", "author_id": 23107, "author_profile": "https://Stackoverflow.com/users/23107", "pm_score": 1, "selected": false, "text": "class curl {\n private $resource;\n\n public function __construct($url) {\n $this->resource = curl_init($url);\n ...
2008/10/13
[ "https://Stackoverflow.com/questions/199045", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14569/" ]
199,059
<p>I've got a file whose format I'm altering via a python script. I have several camel cased strings in this file where I just want to insert a single space before the capital letter - so "WordWordWord" becomes "Word Word Word".</p> <p>My limited regex experience just stalled out on me - can someone think of a decent...
[ { "answer_id": 199075, "author": "Greg Hewgill", "author_id": 893, "author_profile": "https://Stackoverflow.com/users/893", "pm_score": 7, "selected": true, "text": ">>> re.sub(r\"(\\w)([A-Z])\", r\"\\1 \\2\", \"WordWordWord\")\n'Word Word Word'\n" }, { "answer_id": 199094, "...
2008/10/13
[ "https://Stackoverflow.com/questions/199059", "https://Stackoverflow.com", "https://Stackoverflow.com/users/19074/" ]
199,065
<p>I've declared Javascript arrays in such a way that I could then access them by a key, but it was a long time ago, and I've forgotten how I did it.</p> <p>Basically, I have two fields I want to store, a unique key, and its value. I know there is a way to do it.. something like:</p> <pre><code>var jsArray = new {key...
[ { "answer_id": 199083, "author": "Christian C. Salvadó", "author_id": 5445, "author_profile": "https://Stackoverflow.com/users/5445", "pm_score": 4, "selected": true, "text": "var a = {'a':0, 'b':1, 'c':2};\n\nvar b = new Array();\nb['a'] = 0;\nb['b'] = 1;\nb['c'] = 2;\n\nvar c = new Obj...
2008/10/13
[ "https://Stackoverflow.com/questions/199065", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1965/" ]
199,068
<p>Is it possible to play video from data that has been embedded in a swf at compile time (with the <code>[Embed]</code> metatag)?</p> <p>The "Import Video->Embed" feature provided by Flash CS3 etc. is not acceptable because it has many severe limitations (including sound synchronization issues, a maximum number of fr...
[ { "answer_id": 2519192, "author": "aaaidan", "author_id": 26331, "author_profile": "https://Stackoverflow.com/users/26331", "pm_score": 0, "selected": false, "text": "Embed [Embed(\n source=\"local_data_file.flv\",\n mimeType=\"application/octet-stream\") ]\nprivate static var __Fl...
2008/10/13
[ "https://Stackoverflow.com/questions/199068", "https://Stackoverflow.com", "https://Stackoverflow.com/users/26331/" ]
199,080
<p>A similar question was asked <a href="https://stackoverflow.com/questions/198931/how-do-i-tell-if-net-35-sp1-is-installed">here</a>, but it was specific to .NET 3.5. Specifically, I'm looking for the following:</p> <ol> <li>What is the correct way to determine which .NET Framework versions and service packs are ins...
[ { "answer_id": 199121, "author": "Franci Penov", "author_id": 17028, "author_profile": "https://Stackoverflow.com/users/17028", "pm_score": 3, "selected": false, "text": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\NET Framework Setup\\NDP Install=1 MSI=1" }, { "answer_id": 199783, ...
2008/10/13
[ "https://Stackoverflow.com/questions/199080", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1559/" ]
199,099
<p>I'm using <code>$.post()</code> to call a servlet using Ajax and then using the resulting HTML fragment to replace a <code>div</code> element in the user's current page. However, if the session times out, the server sends a redirect directive to send the user to the login page. In this case, jQuery is replacing the ...
[ { "answer_id": 199156, "author": "Till", "author_id": 2859, "author_profile": "https://Stackoverflow.com/users/2859", "pm_score": 6, "selected": false, "text": "$.ajax() $.ajax({\n url: \"/yourservlet\",\n data: { },\n complete: function(xmlHttp) {\n // xmlHttp is a XMLHttpRquest o...
2008/10/13
[ "https://Stackoverflow.com/questions/199099", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2024/" ]
199,113
<p>I have a <code>BasePage</code> which inherits from <code>System.Web.UI.Page</code>, and every page that inherits the <code>BasePage</code> will have the same master page.</p> <p>How do I cast the <code>Page.Master</code> of the <code>BasePage</code> to the specific master page so I can access properties on it?</p>
[ { "answer_id": 199116, "author": "Stephen Wrighton", "author_id": 7516, "author_profile": "https://Stackoverflow.com/users/7516", "pm_score": 0, "selected": false, "text": "MasterPageVariable = Ctype(page.MasterPage, MasterPageClass)\n" }, { "answer_id": 199122, "author": "Fl...
2008/10/13
[ "https://Stackoverflow.com/questions/199113", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4998/" ]
199,127
<p>I have asp.net form that contains fields. When I access this window, my javascript functions can access the fields via the DOM with the getElementById() method and when I postpack to the server I am receiving the updates made by the client.</p> <p>However, when I launch the form as a child window using Telerik's ...
[ { "answer_id": 199524, "author": "TonyB", "author_id": 3543, "author_profile": "https://Stackoverflow.com/users/3543", "pm_score": 2, "selected": true, "text": "<%= theControl.ClientID %>\n" }, { "answer_id": 440701, "author": "LarryF", "author_id": 18518, "author_pro...
2008/10/13
[ "https://Stackoverflow.com/questions/199127", "https://Stackoverflow.com", "https://Stackoverflow.com/users/19799/" ]
199,130
<p>For my Java apps with very long classpaths, I cannot see the main class specified near the end of the arg list when using ps. I think this stems from my Ubuntu system's size limit on /proc/pid/cmdline. How can I increase this limit?</p>
[ { "answer_id": 199199, "author": "Robert Gamble", "author_id": 25222, "author_profile": "https://Stackoverflow.com/users/25222", "pm_score": 5, "selected": true, "text": " 274 int res = 0;\n 275 unsigned int len;\n 276 struct mm_struct *mm = get_task_mm(task);\n 277 ...
2008/10/13
[ "https://Stackoverflow.com/questions/199130", "https://Stackoverflow.com", "https://Stackoverflow.com/users/27635/" ]
199,142
<p>I'm designing some VB based ASP.NET 2.0, and I am trying to make more use of the various ASP tags that visual studio provides, rather than hand writing everything in the code-behind. I want to pass in an outside variable from the Session to identify who the user is for the query.</p> <pre><code>&lt;asp:sqldatasour...
[ { "answer_id": 199574, "author": "tvanfosson", "author_id": 12950, "author_profile": "https://Stackoverflow.com/users/12950", "pm_score": 2, "selected": false, "text": "<SelectParameters>\n <SessionParameter Name=\"userID\" SessionField=\"user\" DefaultValue=\"\" />\n</SelectParameters>...
2008/10/13
[ "https://Stackoverflow.com/questions/199142", "https://Stackoverflow.com", "https://Stackoverflow.com/users/12545/" ]
199,151
<p>I'm trying to link a Qt application with its libraries and the linker (MinGW) spews hundreds of lines like the following, and I am unsure how to proceed.</p> <pre> cpp: undefined reference to `_Unwind_SjLj_Register' c:/qt/lib/libQtCore.a(qcoreapplication_win.o)(.text+0x29d):qcoreapplication_win. cpp: undefined r...
[ { "answer_id": 199372, "author": "Colin Jensen", "author_id": 9884, "author_profile": "https://Stackoverflow.com/users/9884", "pm_score": 3, "selected": false, "text": "CONFIG += exceptions\n CONFIG -= exceptions\n" }, { "answer_id": 11979569, "author": "chacham15", "auth...
2008/10/13
[ "https://Stackoverflow.com/questions/199151", "https://Stackoverflow.com", "https://Stackoverflow.com/users/8923/" ]
199,152
<p>I have a Java Applet that uses AWT. In some (rare) circumstances, the platform does not refresh the screen properly. I can move or minimize/maximize the window and see that my applet refreshed properly. I am looking for code that will give me the fullest possible applet screen repaint, simulating the behaviour of a ...
[ { "answer_id": 201067, "author": "Tom", "author_id": 20979, "author_profile": "https://Stackoverflow.com/users/20979", "pm_score": 0, "selected": false, "text": "public class VeryFastPanel extends JPanel {\n\n\n\n /**\n *\n */\n private static final long serialV...
2008/10/13
[ "https://Stackoverflow.com/questions/199152", "https://Stackoverflow.com", "https://Stackoverflow.com/users/20893/" ]