User Pandincus - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:03:53Zhttp://stackoverflow.com/feeds/user/2273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/313344/crystal-reports-for-vs-2008-the-user-function-manager-dll-ufmanager-dll-coul0Crystal Reports for VS 2008 - "The user function manager DLL (ufmanager.dll) could not be found."Pandincus2008-11-24T03:24:00Z2009-11-04T23:37:27Z
<p>StackOverflow, you're my only hope!</p>
<p>I am unfortunate enough to have inherited an ASP.NET 3.5 application roughly 3/4 in development. This project uses Crystal Reports Basic for VS 2008 to generate a PDF file from a data source. Pretty straightforward.</p>
<p>Anyway, this project compiles and runs fine on my development machine (VS 2008), but then when I publish it to the server (which has the CR Basic for VS 2008 Runtime installed), I get this error message when trying to export the report to PDF:</p>
<pre><code>Error in File C:\WINDOWS\TEMP\Report {D3596595-5217-4888-A770-72427B29DE27}.rpt:
The user function manager DLL (ufmanager.dll) could not be found.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Runtime.InteropServices.COMException: Error in File C:\WINDOWS\TEMP\Report {D3596595-5217-4888-A770-72427B29DE27}.rpt:
The user function manager DLL (ufmanager.dll) could not be found.
</code></pre>
<p>Unfortunately, a search on Google for the error message only turns up a handful of results, and they haven't helped.</p>
<p>My server is running Windows 2003 x64 SP2. I've tried installing the Crystal Reports runtimes on the server (both the x86 and x64 editions). Strangely enough, the app doesn't detect the x64 version, so I'm using the x86 version.</p>
<p>I see the file <strong>ufmanager.dll</strong> in <strong>C:\Program Files (x86)\Business Objects\Common\2.8\bin</strong>, but I don't know where my app is looking for it. I even tried sticking it in the "bin" folder of my app, but no luck.</p>
<p>If any kind soul happens to have seen this error before and knows the fix, I would be <em>seriously</em> grateful.</p>
http://stackoverflow.com/questions/1398409/asp-net-gridview-gridviewdeleteeventargs-keys-empty/1658511#16585110Answer by Pandincus for ASP.Net GridView GridViewDeleteEventArgs.Keys emptyPandincus2009-11-01T21:59:27Z2009-11-01T21:59:27Z<p>Is it possible you're programatically sorting your gridview in your Page_Load method? If so, try moving the sort into the Page_Init method, and see if that fixes the problem.</p>
http://stackoverflow.com/questions/1622975/sending-email-with-the-ms-enterprise-library-logging-application-block-via-smtppi1Sending email with the MS Enterprise Library Logging Application Block via smtppickupfolder?Pandincus2009-10-26T03:46:34Z2009-10-26T04:21:51Z
<p>I like the MS Enterprise Library Logging Application Block because it lets me easily define a few logging settings and then log an error in a line or so of code from my application.</p>
<p>However, I really want to be able to send email using my SMTP server's pickup folder. Just using the plain old System.Net block in your web.config, you could do:</p>
<pre><code><system.net>
<mailSettings>
<smtp deliveryMethod="pickupDirectoryFromIis" from="testuser@domail.com">
</smtp>
</mailSettings>
</system.net>
</code></pre>
<p>or something like that, and then you're done.</p>
<p>Is this possible in the Logging Application Block? I don't want to specify the server and port.</p>
<p>Thanks, Stack Overflow!</p>
http://stackoverflow.com/questions/1600631/c-deleting-a-directory-as-another-user/1600669#16006695Answer by Pandincus for C# deleting a directory as another userPandincus2009-10-21T12:58:23Z2009-10-21T12:58:23Z<p>You can expose the native "LogonUser" methods and use them to impersonate logging on as another user. I've used this successfully in other projects.</p>
<pre><code>[DllImport("advapi32.dll", CharSet = CharSet.Auto)]
public static extern bool LogonUser(String lpszUserName, String lpszDomain,
String lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);
</code></pre>
<p>Fresh Click Media did an article about this and wrote a sample Impersonate class: --> <a href="http://www.freshclickmedia.com/blog/2008/11/programmatic-impersonation-in-c/" rel="nofollow">http://www.freshclickmedia.com/blog/2008/11/programmatic-impersonation-in-c/</a></p>
<p>Using it is quite simple:</p>
<pre><code>using (Impersonator impersonator = new Impersonator())
{
// code in here
}
</code></pre>
http://stackoverflow.com/questions/1600462/favourite-features-of-vs-2010/1600544#16005442Answer by Pandincus for Favourite Features of VS 2010Pandincus2009-10-21T12:40:10Z2009-10-21T12:40:10Z<p>The new, <a href="http://weblogs.asp.net/scottgu/archive/2009/08/25/clean-web-config-files-vs-2010-and-net-4-0-series.aspx" rel="nofollow">clean web.config</a> should make my managers happy.</p>
<blockquote>
<p>"Just change the option in the web.config"<br />
"Where is it?"<br />
"Under 'AppSettings.'"<br />
"Ugh ... there's so much junk in that file."</p>
</blockquote>
http://stackoverflow.com/questions/1597866/c-net-string-object-is-really-by-reference/1597910#1597910-1Answer by Pandincus for C# .NET String object is really by reference?Pandincus2009-10-20T23:34:29Z2009-10-20T23:34:29Z<p>Strings are immutable, so even though a string is a reference type, an instance of a string cannot be changed once it has been constructed. Instead, a new string is created with the new value.</p>
http://stackoverflow.com/questions/1597727/security-settings-to-start-a-windows-service-in-a-asp-net-web-app/1597772#15977720Answer by Pandincus for Security settings to start a windows service in a ASP.net web appPandincus2009-10-20T23:00:31Z2009-10-20T23:14:08Z<p>Could be an access rights issue. When you run the application locally (through Visual Studio and the built-in Cassini web server) I think you're running it as yourself, so it makes sense that it would work.</p>
<p>When you run the application through IIS (on the server), its running as whatever user is specified in the application pool. (I think its "Network Service" by default). Check which user it is in IIS and try giving that user permission to start your service.</p>
<p>What version of IIS are you running? If its a Win 2K3 server, I'm guessing 6.0.</p>
<p>Information on configuring the application pool:</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/cc771170.aspx" rel="nofollow">IIS 7.0</a></li>
<li><a href="http://www.developer.com/article.php/2245511" rel="nofollow">IIS 6.0</a></li>
</ul>
<p>EDIT: You can use <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e8ba3e56-d8fe-4a91-93cf-ed6985e3927b&displaylang=en" rel="nofollow">SubInACL.exe</a> (a microsoft tool) to configure service permissions:</p>
<blockquote>
<p>So let's say you have user "Johnny" and you want Johnny to be able to stop and start the World Wide Web Publishing service. Simply run the following subinacl.exe command:</p>
<p>subinacl /service W3SVC /GRANT=YOURDOMAIN\Johnny=TO</p>
<p>Obviously you will want to replace YOURDOMAIN with the name of your domain. The TO at the end are the identifiers that tell subinacl which actions you actually want grant to Johnny. T is used for "Start Service" and O is for "Stop Service".</p>
</blockquote>
<p>For more information, check out Ingmar's <a href="http://www.eventlogblog.com/blog/2007/11/setting-service-permissions-wi.html" rel="nofollow">blog post</a> about it.</p>
http://stackoverflow.com/questions/1591910/how-to-focus-on-a-form-input-text-field-on-page-load-using-jquery/1591918#15919185Answer by Pandincus for How to focus on a form input text field on page load using Jquery?Pandincus2009-10-20T00:51:10Z2009-10-20T00:51:10Z<p>Sure:</p>
<pre><code><head>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#myTextBox").focus();
});
</script>
</head>
<body>
<input type="text" id="myTextBox">
</body>
</code></pre>
http://stackoverflow.com/questions/1580028/asp-net-ajax-using-jquery-blockui-in-two-places-can-i-unblock-a-specific-div0ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?Pandincus2009-10-16T19:41:57Z2009-10-18T22:03:31Z
<p>I'm using the jQuery BlockUI Plugin (v2) because it rocks the casbah.</p>
<p>For every ASP.NET AJAX request made on the page, I use the InitializeRequest and EndRequest client-side events to block and unblock the UI, respectively -- this allows me to easily throw up a "Please wait..." dialog. Code is as follows:</p>
<pre><code>var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(EndRequest);
prm.add_initializeRequest(InitializeRequest);
var blockTimer;
var blockTimerFired;
function InitializeRequest(sender, args) {
blockTimer = setTimeout(blockPage, 100);
blockTimerFired = false;
}
function EndRequest(sender, args) {
unblockPage();
}
function unblockPage() {
// Check if the timer has run yet, and if it hasn't, cancel it
if (blockTimerFired) {
document.body.style.cursor = "default";
$.unblockUI();
}
else {
clearTimeout(blockTimer);
}
}
function blockPage() {
document.body.style.cursor = "wait";
var loadingMessage = '<div style="padding-top:30px;min-height:75px;font-weight:bold;font-size:12pt;"><img align="absmiddle" src="../Images/ajax-loader.gif" /> Please wait...</div>';
$.blockUI({ centerX: true, centerY: true, css: { backgroundColor: '#ebebeb', color: '#000' }, message: loadingMessage });
blockTimerFired = true;
}
</code></pre>
<p>The above behavior works fine. However, in some cases I also use blockUI (on the same page) to create a yes/no modal dialog. This dialog is loaded when the document is ready.</p>
<p>The problem is that my <strong>$.unblockUI()</strong> call in <strong>unblockPage()</strong> seems to kill both dialogs. Is there a way I can easily target a specific div with $.unblockUI()? It'd be great if I could call <strong>$.unblockUI("#myYesNoDiv")</strong>, for example.</p>
http://stackoverflow.com/questions/1580028/asp-net-ajax-using-jquery-blockui-in-two-places-can-i-unblock-a-specific-div/1586156#15861560Answer by Pandincus for ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?Pandincus2009-10-18T22:03:31Z2009-10-18T22:03:31Z<p>I was overcomplicating this problem.</p>
<p>When you use the command <strong>$.blockUI()</strong>, it first deletes any existing blockUI divs on the page. I had asked if I could target a specific div, but <strong>only one div exists on the page at a time</strong>, so my question was pointless. Sorry!</p>
<p>As a result, all I have to do is give the div I'm checking for an id and then check if it exists on the page. I was able to simplify the code <strong>and</strong> solve my problem:</p>
<p>New code:</p>
<pre><code>function unblockPage() {
// Check if the timer has run yet, and if it hasn't, cancel it
if ($("#divBlockPage").length > 0) {
document.body.style.cursor = "default";
$.unblockUI();
}
else {
clearTimeout(blockTimer);
}
}
// Blocks page UI.
function blockPage() {
document.body.style.cursor = "wait";
var loadingMessage = '<div id="divBlockPage" style="padding-top:30px;min-height:75px;font-weight:bold;font-size:12pt;"><img align="absmiddle" src="../Images/ajax-loader.gif" /> Please wait...</div>';
$.blockUI({ centerX: true, centerY: true, css: { backgroundColor: '#ebebeb', color: '#000' }, message: loadingMessage });
}
</code></pre>
http://stackoverflow.com/questions/1585626/asp-net-jquery-sharing-regular-expressions/1585669#15856690Answer by Pandincus for ASP.NET, JQuery - Sharing regular expressionsPandincus2009-10-18T18:33:05Z2009-10-18T18:33:05Z<p>You could store them as protected variables in your asp.net page's code-behind, and then use databinding expressions to store them as public variables in your javascript ...</p>
<p>In your ASPX page:</p>
<pre><code><script type="text/javascript">
var regexPhone = new RegExp("<%# regexPhone %>");
var regexEmail = new RegExp("<%# regexEmail %>");
var regexBlah = new RegExp("<%# regexBlah %>");
</script>
</code></pre>
<p>In your code-behind:</p>
<pre><code>protected string regexPhone = "put regex string here";
protected string regexEmail = "put regex string here";
protected string regexBlah = "put regex string here";
protected void Page_Load(object sender, EventArgs e)
{
// We need to call DataBind() on the page so that
// we can use databinding expressions
DataBind();
}
</code></pre>
<p>While I've never tried this exact approach before, I think it would work :-P Let me know if it helps!</p>
<p><strong>Note:</strong> A possible caveat here would be that the .NET Regular Expression flavor may differ from the JavaScript Regular Expression flavor. The great Jan Goyvaerts has an impressive <a href="http://www.regular-expressions.info/refflavors.html" rel="nofollow">comparison chart</a> which may be helpful.</p>
http://stackoverflow.com/questions/1585126/why-the-barcode-did-not-respond-to-image-capture-command/1585456#15854560Answer by Pandincus for Why the barcode did not respond to image capture CommandPandincus2009-10-18T17:12:17Z2009-10-18T17:12:17Z<p>Are you sure that the barcode reader is not capturing the image? According to the documentation:</p>
<blockquote>
<p>An image is taken when the Image Snap (<strong>IMGSNP</strong>) command is processed. The last image is always stored in memory. You may “ship” the image by using the <strong>IMGSHP</strong> command.</p>
</blockquote>
<p>So you may be taking the image using <strong>IMGSNP</strong>, but all that's happening is that its storing the image in memory, and not sending it back to you as a response. Try then issuing the <strong>IMGSHP</strong> command, and see if there's any data to be read from your serial port.</p>
http://stackoverflow.com/questions/1580783/detect-errored-devices-on-windows-xp-with-c-pinvoke/1581162#15811620Answer by Pandincus for Detect Errored Devices on Windows XP with C#/pInvokePandincus2009-10-17T01:36:33Z2009-10-17T01:36:33Z<p>While I've never tried it before, I think what you want to use is <strong>WMI: Windows Management Instrumentation</strong>. Specifically, you should look at the <a href="http://msdn.microsoft.com/en-us/library/system.management.aspx" rel="nofollow">System.Management namespace</a>.</p>
<p>Here's a tutorial I found that shows you how to query for hard drives connected to a system, and also how to query for running processes: --> <a href="http://msdn.microsoft.com/en-us/library/system.management.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.management.aspx</a></p>
<p>Let me know if this helps. I've considered using WMI before for simple windows management tasks, but I've always ended up using simple registry scripts instead.</p>
http://stackoverflow.com/questions/1575866/why-jquery-dont-want-to-style-piece-of-html-inserted-with-ajax-into-new-page/1575898#15758982Answer by Pandincus for Why jQuery don't want to style piece of html inserted with Ajax into new pagePandincus2009-10-16T00:43:28Z2009-10-16T02:10:00Z<p>If the javascript that sets the style lives in <strong>test.html</strong>, that javascript code won't be executed when you load the page via ajax. (err, I think)</p>
<p>What you could do instead is load the div into index.html and then use a callback to apply style to the loaded div. For example:</p>
<pre><code>$(function() {
// This function lives in index.html, and will be executed
// when the document is ready
$("#someAnchor").load("test.html #someDiv", function() {
// This is the jQuery callback function, executing after the
// div has been loaded via AJAX
// We can now use jQuery to give it a css class,
// or whatever else you wanted to do
$("#someDiv").attr("class", "someCssClass");
});
});
</code></pre>
<p>EDIT: Thank you for posting your code below. I think the basics of what I said above still applies, but to be more specific, you need to move _all__ of your styling and hover code to your callback function.</p>
<p>Your test.html shouldn't need to reference your javascript file at all, since you're just pulling the div into your index.html page.</p>
http://stackoverflow.com/questions/1575831/accessing-td-property-of-a-html-table-through-javascript-and-css/1575862#15758621Answer by Pandincus for Accessing td property of a html table through javascript and css.Pandincus2009-10-16T00:33:18Z2009-10-16T00:33:18Z<p>Couple of things:</p>
<ol>
<li>I noticed <strong>yellowZone</strong> wasn't defined with a "dot" prefix to make it a class. Was this intentional?</li>
<li>You can use the id attribute to uniquely identify each td, instead of using a class.</li>
<li>If you do want to use a class, you don't need to define it in your css file if its only used for retrieving the element.</li>
<li>If you go with using an id, you should be able to use document.getElementById("id") to retrieve the appropriate table cell. For example:</li>
</ol>
<p>HTML:</p>
<pre><code><body>
<table>
<tr>
<td id="a01"></td>
</tr>
<tr>
<td id="a02"></td>
</tr>
</table>
</body>
</code></pre>
<p>Javascript:</p>
<pre><code>var tableData = document.getElementById("a01");
tableData.setAttribute("class", "yellowZone");
// Some versions of IE don't like the attribute "class"
tableData.setAttribute("className", "yellowZone");
</code></pre>
http://stackoverflow.com/questions/1570004/jquery-toggle-event-within-toggle-event-creates-unexpected-behavior/1570062#15700620Answer by Pandincus for jquery toggle event within toggle event creates unexpected behavior.Pandincus2009-10-15T02:52:32Z2009-10-15T02:52:32Z<p>I'm not exactly sure I understand what you're trying to do, but my advice is to never use the <strong>$('*')</strong> selector. Do you really, really want your 'effects' to operate on EVERY DOM element in the page? Remember, that includes your "turn off/turn on" button.</p>
<p>I constructed an example which I think does what you're trying to do:</p>
<pre><code><head>
<title>Test</title>
<style type="text/css">
.effectsOn {
border: 1px solid blue;
cursor: pointer;
}
</style>
<script src="jquery.js"></script>
<script type="text/javascript">
$(function() {
$("#btnToggle").toggle(function() {
// turn on effects for all elements clicked
$("li").addClass("effectsOn").toggle(function() {
// some nice effects when you click on elements
alert("test");
},
function() {
// nice effects disabled when you click again
$(this).removeClass("effectsOn").unbind();
});
},
function() {
// turn off all effects; aka unbind all click event
$("li").removeClass("effectsOn").unbind();
});
});
</script>
</head>
<body>
<input type="button" id="btnToggle" value="Toggle effects" />
<ul>
<li>This is like, you know, a test.</li>
<li>This is like, you know, a test.</li>
<li>This is like, you know, a test.</li>
<li>This is like, you know, a test.</li>
</ul>
</body>
</code></pre>
<p>The key here was in using the "this" keyword to refer to the object being toggled, and (to reiterate what I said above) NOT using the <strong>$('*')</strong> selector.</p>
<p>Is this what you meant?</p>
http://stackoverflow.com/questions/1564167/blockui-takes-too-long-to-block-jquery-dialog/1564214#15642141Answer by Pandincus for BlockUI takes too long to block jQuery dialogPandincus2009-10-14T04:19:12Z2009-10-14T04:19:12Z<p>To continue my comment above:</p>
<p>When you call $.blockUI(), it uses animations to fade-in the blocking div, and these animations are run asynchronously. The next line in your javascript code is your complex sorting, and this code blocks the browser until it's finished. As a result, the animations that have started running don't get to finish until after the sorting!</p>
<p>The BlockUI plugin doesn't seem to have a callback function option, which is a shame, but that's OK -- we can use Javascript's builtin setTimeout:</p>
<pre><code><head>
<title>Test</title>
<script src="jquery.js"></script>
<script src="jquery.blockUI.js"></script>
<script type="text/javascript">
$(function() {
$("#btnTest").click(function() {
$.blockUI();
setTimeout(doComplicatedStuff, 1000);
});
});
function doComplicatedStuff()
{
for(i = 0; i < 100000000; i++)
{
// ooh, complicated logic!
}
$.unblockUI();
}
</script>
</head>
<body>
<p><input type="button" id="btnTest" value="Test" /></p>
</body>
</code></pre>
<p>Although this isn't an exact science, we're basically guessing that delaying the complicated code for 1 second will give BlockUI enough time to display the overlay.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1558186/removed-the-option-from-select-base-on-the-option-value-in-jquery/1558209#15582091Answer by Pandincus for Removed the option from select base on the option value in jqueryPandincus2009-10-13T04:38:18Z2009-10-13T04:38:18Z<p>Sorry if I don't understand you completely, but you just want to remove an element on a button click?
In that case, you can do something like this:</p>
<p>HTML on your page:</p>
<pre><code><p>
<input type="button" id="btnRemoveA" value="Remove A" />
</p>
<select name="group_select">
<option value="a">A</option>
<option value="b">B</option>
<option value="c">C</option>
</select>
</code></pre>
<p>Javascript:</p>
<pre><code><script type="text/javascript">
$(function() {
$("#btnRemoveA").click(function() {
$("select[name=group_select] > option[value=a]").remove();
});
});
</script>
</code></pre>
<p>When your page loads, this will attach a click event to "btnRemoveA" that finds the select element with name "group_select" and then looks for a child option element with value "a". It then removes that option element.</p>
<p>The jQuery documentation page has a ton more information on the various selectors you can use: --> <a href="http://docs.jquery.com/Selectors" rel="nofollow">http://docs.jquery.com/Selectors</a></p>
http://stackoverflow.com/questions/1558156/why-would-you-not-use-https-on-your-public-facing-website/1558160#15581605Answer by Pandincus for Why would you not use https on your public facing website?Pandincus2009-10-13T04:16:29Z2009-10-13T04:16:29Z<p>I suppose one example would be that you don't need it (no authentication, for example) and you don't want to shell out the cash for an SSL Certificate?</p>
http://stackoverflow.com/questions/1546274/getting-a-comma-delimited-list-of-pks-for-duplicates-of-a-record-in-sql-server-2/1547168#15471680Answer by Pandincus for Getting a comma-delimited list of PK's for duplicates of a record in SQL Server 2005?Pandincus2009-10-10T05:47:34Z2009-10-10T05:47:34Z<p>You can create a function that, given a ReceiptID and the "current" ReceiptFolderID for that row, returns the other ReceiptFolderIDs as a concatenated, comma-delimited list. Example:</p>
<pre><code>CREATE FUNCTION [dbo].[GetOtherReceiptFolderIDs](@receiptID int, @receiptFolderID int)
RETURNS varchar(MAX) AS
BEGIN
DECLARE @returnValue varchar(MAX)
SELECT @returnValue = COALESCE(@returnValue + ', ', '') + COALESCE(CONVERT(varchar(MAX), ReceiptFolderID), '')
FROM tbl_ReceiptFolderLink AS FolderLink
WHERE FolderLink.ReceiptID = @receiptID
AND FolderLink.ReceiptFolderID <> @receiptFolderID
RETURN @returnValue
END
</code></pre>
<p>Then, you can run a query that uses this function to obtain your new column:</p>
<pre><code>SELECT Receipts.ReceiptID, ReceiptFolderID, dbo.GetOtherReceiptFolderIDs(Receipts.ReceiptID, ReceiptFolderID) AS NewColumn
FROM tbl_Receipt AS Receipts
INNER JOIN tbl_ReceiptFolderLink AS FolderLinks
ON Receipts.ReceiptID = FolderLinks.ReceiptID
</code></pre>
<p>I tested this and it produces the following results (if I got your schema correctly):</p>
<pre><code>ReceiptID ReceiptFolderID NewColumn
6 1 NULL
1 3 NULL
2 3 NULL
4 4 8, 9
5 4 NULL
3 7 8
3 8 7
4 8 4, 9
4 9 4, 8
</code></pre>
http://stackoverflow.com/questions/269366/what-access-does-apache-2-0-need-in-windows-server-2003-in-order-to-start-as-a-se1What access does Apache 2.0 need in Windows Server 2003 in order to start as a service?Pandincus2008-11-06T16:39:01Z2009-10-08T21:04:41Z
<p>Until this morning, I have had Apache 2.0 running as a service using a local account which was configured with appropriate permissions. Sometime yesterday, someone must have changed something, and now Apache 2.0 won't start as a service under this account.</p>
<p>I made the account an Administrator temporarily, and Apache 2.0 starts fine.</p>
<p>I tried following the access listed in the <a href="http://httpd.apache.org/docs/2.0/platform/windows.html" rel="nofollow">official documentation</a>, but it seems to require more access. <strong>Does anyone know what access Apache 2.0 needs to start as a service?</strong></p>
<p>I'm running Apache 2.0.63 with SVN 1.4.6 and mod_auth_sspi for windows domain authentication.</p>
<p>I also checked the syntax of the configuration file from command-line using the <strong>-t</strong> parameter, but I received the message <strong>Syntax OK</strong>.</p>
<p>Here's the error I get when starting as a service from command-line:</p>
<pre>
X:\>net start apache2
The Apache2 service is starting.
The Apache2 service could not be started.
A service specific error occurred: 1.
More help is available by typing NET HELPMSG 3547.
</pre>
http://stackoverflow.com/questions/1402698/binding-arrow-keys-in-js-jquery/1402744#14027441Answer by Pandincus for Binding arrow keys in JS/jQueryPandincus2009-09-09T23:51:21Z2009-09-09T23:51:21Z<p>Are you sure jQuery.HotKeys doesn't support the arrow keys? On the live demo page (<a href="http://jshotkeys.googlepages.com/test-static-01.html" rel="nofollow">http://jshotkeys.googlepages.com/test-static-01.html</a>) it has left, right, up, and down listed under the "special keys" section, and it works when I test it in IE7, Firefox 3.5.2, and Google Chrome 2.0.172...</p>
http://stackoverflow.com/questions/335524/using-net-framework-3-5-in-a-sql-server-2005-stored-procedure1Using .NET Framework 3.5 in a SQL Server 2005 Stored ProcedurePandincus2008-12-02T21:28:50Z2009-08-24T18:37:42Z
<p>I have an SQL Server 2005 server, and I'd like to run a .Net CLR stored procedure on it. However, I'd like to use .NET Framework 3.5.</p>
<p>If I try this right now, I get this error:</p>
<pre><code>Error: Assembly 'system.core, version=3.5.0.0, culture=neutral, publickeytoken=b77a5c561934e089.' was not found in the SQL catalog.
</code></pre>
<p>I'm told this is possible in SQL Server 2008, because SQL Server 2008 ships with .NET Framework 3.5. However, I'm wondering if there's a way to add .NET Framework 3.5 to my SQL Server 2005 installation, so that I can run .NET 3.5 stored procedures on it.</p>
http://stackoverflow.com/questions/1131981/in-c-net-is-there-a-reason-for-no-copy-constructor-for-stringdictionary1In C# .NET, is there a reason for no copy constructor for StringDictionary?Pandincus2009-07-15T15:05:02Z2009-07-15T17:50:36Z
<p>I apologize if this is a dumb question, but hear me out:</p>
<pre><code>Dictionary<string, string> genericDict = new Dictionary<string, string>;
genericDict.Add("blah", "bloop");
// Use the copy constructor to create a copy of this dictionary
return new Dictionary<string, string>(genericDict);
</code></pre>
<p>In the above code sample, I can create a copy of a generic dictionary.</p>
<p>Now suppose I'm using a System.Collections.Specialized.StringDictionary, because I don't feel like typing the "string" types everywhere. StringDictionary has no copy constructor! In fact, it only has the default constructor.</p>
<p>Sure, I can iterate through the StringDictionary and add each key/value pair manually, but I don't want to :-P</p>
<p>Why no copy constructor? Am I missing something here?</p>
http://stackoverflow.com/questions/997633/in-my-asp-net-app-registering-a-script-from-code-behind-before-a-page-has-loaded0In my ASP.NET app, registering a script from code-behind before a page has loaded throws an "operation aborted" error in IEPandincus2009-06-15T18:37:48Z2009-06-15T20:54:38Z
<p>I understand that in IE 5.5, 6, and 7, when you modify a DOM element before it is 'closed', it throws an "operation aborted" error (this article has more information: <a href="http://www.clientcide.com/code-snippets/manipulating-the-dom/ie-and-operation-aborted/" rel="nofollow">http://www.clientcide.com/code-snippets/manipulating-the-dom/ie-and-operation-aborted/</a>)</p>
<p>In my ASP.Net application, I am registering a client script block on the page during the page_load event. (I tried moving this code to the page_loadcomplete event or page_prerender event with no luck).</p>
<p>Here is my code (pretty basic):</p>
<pre><code>// Checks if the handler is a Page and that the script isn't already on the Page
if (page != null && !page.ClientScript.IsClientScriptBlockRegistered("blockUIAlert"))
{
ScriptManager.RegisterClientScriptBlock(page, typeof(ScriptUtilities),
"blockUIAlert", script, true);
}
</code></pre>
<p>I'm using this same code from other AJAX postbacks in my page without a problem. This error only occurs if this code is called when the page is being loaded.</p>
<p>What can I do to have this code be called after the DOM elements are closed? I don't want the user to have to initiate this action manually -- I want this code to be executed as soon as the page is loaded, provided certain server-side conditions are met.</p>
http://stackoverflow.com/questions/725043/dynamic-enum-in-c/792332#7923326Answer by Pandincus for dynamic enum in C#Pandincus2009-04-27T05:28:06Z2009-04-27T05:28:06Z<p>I'm doing this exact thing, but you <em>need</em> to do some kind of code generation for this to work.</p>
<p>In my solution, I added a project "EnumeratedTypes". This is a console application which gets all of the values from the database and constructs the enums from them. Then it saves all of the enums to an assembly.</p>
<p>The enum generation code is like this:</p>
<pre><code>// Get the current application domain for the current thread
AppDomain currentDomain = AppDomain.CurrentDomain;
// Create a dynamic assembly in the current application domain,
// and allow it to be executed and saved to disk.
AssemblyName name = new AssemblyName("MyEnums");
AssemblyBuilder assemblyBuilder = currentDomain.DefineDynamicAssembly(name,
AssemblyBuilderAccess.RunAndSave);
// Define a dynamic module in "MyEnums" assembly.
// For a single-module assembly, the module has the same name as the assembly.
ModuleBuilder moduleBuilder = assemblyBuilder.DefineDynamicModule(name.Name,
name.Name + ".dll");
// Define a public enumeration with the name "MyEnum" and an underlying type of Integer.
EnumBuilder myEnum = moduleBuilder.DefineEnum("EnumeratedTypes.MyEnum",
TypeAttributes.Public, typeof(int));
// Get data from database
MyDataAdapter someAdapter = new MyDataAdapter();
MyDataSet.MyDataTable myData = myDataAdapter.GetMyData();
foreach (MyDataSet.MyDataRow row in myData.Rows)
{
myEnum.DefineLiteral(row.Name, row.Key);
}
// Create the enum
myEnum.CreateType();
// Finally, save the assembly
assemblyBuilder.Save(name.Name + ".dll");
</code></pre>
<p>My other projects in the solution reference this generated assembly. As a result, I can then use the dynamic enums in code, complete with intellisense.</p>
<p>Then, I added a post-build event so that after this "EnumeratedTypes" project is built, it runs itself and generates the "MyEnums.dll" file.</p>
<p>By the way, it helps to change the <em>build order</em> of your project so that "EnumeratedTypes" is built first. Otherwise, once you start using your dynamically generated .dll, you won't be able to do a build if the .dll ever gets deleted. (Chicken and egg kind of problem -- your other projects in the solution need this .dll to build properly, and you can't create the .dll until you build your solution...)</p>
<p>I got most of the above code from <a href="http://msdn.microsoft.com/en-us/library/system.reflection.emit.enumbuilder.aspx" rel="nofollow">this msdn article</a>.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/184009/how-can-i-do-an-indexof-in-lotus-notes-formula-language-commands0How can I do an indexOf() in Lotus Notes Formula language (@ commands)?Pandincus2008-10-08T18:00:35Z2009-02-13T15:55:57Z
<p>I can't find this anywhere in the Domino Designer help. It seems so straightforward!</p>
<p>All I need to do is find the position of a character in a string.</p>
http://stackoverflow.com/questions/82881/in-c-net-2-0-whats-an-easy-way-to-do-a-foreach-in-reverse5In C# .NET 2.0, what's an easy way to do a foreach in reverse?Pandincus2008-09-17T13:00:40Z2008-12-10T03:43:37Z
<p>Lets say I have a Dictionary object:</p>
<pre><code>Dictionary myDictionary<int, SomeObject> = new Dictionary<string, SomeObject>();
</code></pre>
<p>Now I want to iterate through the dictionary in reverse order. I can't use a simple for loop because I don't know the keys of the dictionary. A <em>foreach</em> is easy:</p>
<pre><code>foreach (SomeObject object in myDictionary.Values)
{
// Do stuff to object
}
</code></pre>
<p>But how can I perform this in reverse?</p>
http://stackoverflow.com/questions/313344/crystal-reports-for-vs-2008-the-user-function-manager-dll-ufmanager-dll-coul/347043#3470430Answer by Pandincus for Crystal Reports for VS 2008 - "The user function manager DLL (ufmanager.dll) could not be found."Pandincus2008-12-07T00:36:12Z2008-12-07T00:36:12Z<p>My 'solution' (if you can call it that) was to <strong>not</strong> use <strong>Crystal Reports Basic for VS 2008</strong>. I switched to using <strong>Crystal Reports for .NET Framework 2.0</strong>, which comes bundled with VS 2005. I then installed this runtime on the server, and it worked fine.</p>
<p><img src="http://content.screencast.com/users/Pandincus/folders/Jing/media/8fa9f026-25a5-48ad-bb0b-fc7407eee6f2/2008-12-06_1931.png" alt="Image of CR for .NET Framework 2.0 references" /></p>
<p>Note the version # of <strong>10.2.3600.0</strong> instead of <strong>10.5.3700.0</strong>.</p>
<p>I don't know why I was experiencing this error with the newer version, but at least now I can get back to work.</p>
http://stackoverflow.com/questions/330978/proper-collection-to-use-to-obtain-items-in-o1-time-in-c-net6'Proper' collection to use to obtain items in O(1) time in C# .NET?Pandincus2008-12-01T14:19:50Z2008-12-02T03:10:33Z
<p>Something I do often if I'm storing a bunch of string values and I want to be able to find them in O(1) time later is:</p>
<pre><code>foreach (String value in someStringCollection)
{
someDictionary.Add(value, String.Empty);
}
</code></pre>
<p>This way, I can comfortably perform <strong>constant-time</strong> lookups on these string values later on, such as:</p>
<pre><code>if (someDictionary.containsKey(someKey))
{
// etc
}
</code></pre>
<p>However, I feel like I'm cheating by making the value <strong>String.Empty</strong>. Is there a more appropriate .NET Collection I should be using?</p>
http://stackoverflow.com/questions/70303/how-do-you-implement-gethashcode-for-this-structure/70375#70375Comment by Pandincus on How do you implement GetHashCode for this structure?Pandincus2009-10-28T20:05:16Z2009-10-28T20:05:16Z+1 for pointing out the importance of using a commutative operationhttp://stackoverflow.com/questions/1600462/favourite-features-of-vs-2010/1600527#1600527Comment by Pandincus on Favourite Features of VS 2010Pandincus2009-10-21T12:54:56Z2009-10-21T12:54:56ZI had no idea this was part of .NET 4 -- this looks great!http://stackoverflow.com/questions/1597866/c-net-string-object-is-really-by-reference/1597910#1597910Comment by Pandincus on C# .NET String object is really by reference?Pandincus2009-10-21T00:04:49Z2009-10-21T00:04:49ZIts not entirely irrelevant. If he would have passed in a mutable object, such as a StringBuilder, then it would have changed. He specifically asked about a string.http://stackoverflow.com/questions/1595231/remove-item-in-dropdownlist-via-javascript-by-indexComment by Pandincus on Remove Item in DropdownList via JavaScript by IndexPandincus2009-10-20T14:57:50Z2009-10-20T14:57:50ZYou probably meant day = document.getElementById('<%=ddlDay.ClientID %>'); right?http://stackoverflow.com/questions/1168342/visual-studio-2008-speed-up-add-reference/1168462#1168462Comment by Pandincus on Visual Studio 2008 - speed up Add ReferencePandincus2009-10-20T01:19:30Z2009-10-20T01:19:30Z+1 for funny, but really ... we're just browsing the GAC here. Why the slowness? (Not like I've ever written a program to browse and parse the GAC ... )http://stackoverflow.com/questions/1168342/visual-studio-2008-speed-up-add-referenceComment by Pandincus on Visual Studio 2008 - speed up Add ReferencePandincus2009-10-20T01:18:23Z2009-10-20T01:18:23ZOMG I feel your pain, the worst is to get into a coding groove and then click "Add Reference" and ... all ... productivity ... halts ...http://stackoverflow.com/questions/1580028/asp-net-ajax-using-jquery-blockui-in-two-places-can-i-unblock-a-specific-div/1580947#1580947Comment by Pandincus on ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?Pandincus2009-10-18T22:04:17Z2009-10-18T22:04:17ZThanks for the info! simplemodal looks very nice, and I might use it for future projects.
It turns out I was overcomplicating my problem, and I posted my 'solution' below.http://stackoverflow.com/questions/1585126/why-the-barcode-did-not-respond-to-image-capture-command/1585456#1585456Comment by Pandincus on Why the barcode did not respond to image capture CommandPandincus2009-10-18T20:43:24Z2009-10-18T20:43:24ZCould you edit your original question to include some sample code?
Are you sure that it didn't respond, beyond the light and beeping?
It says in the manual that by default the beep and LED is disabled by default when using IMGSNP.http://stackoverflow.com/questions/1585126/why-the-barcode-did-not-respond-to-image-capture-commandComment by Pandincus on Why the barcode did not respond to image capture CommandPandincus2009-10-18T16:58:42Z2009-10-18T16:58:42ZFound the documentation: <a href="http://lib.store.yahoo.net/lib/barcodescannersdiscount/4800pUG.pdf" rel="nofollow">lib.store.yahoo.net/lib/barcodescannersdiscount/…</a>http://stackoverflow.com/questions/1585126/why-the-barcode-did-not-respond-to-image-capture-commandComment by Pandincus on Why the barcode did not respond to image capture CommandPandincus2009-10-18T15:40:18Z2009-10-18T15:40:18ZCould you please supply a little more information about the barcode scanner -- perhaps a link to the PDF documentation?http://stackoverflow.com/questions/1580859/is-jquery-contains-selector-accepts-this-kind-of-value-banking-and-finance/1580901#1580901Comment by Pandincus on Is jquery ":contains" selector accepts this kind of value "Banking and Finance"?Pandincus2009-10-16T23:35:57Z2009-10-16T23:35:57ZOh yeah, didn't notice that samer was using a '#' in front of the selector. That and the quotes must be why its not working :-Phttp://stackoverflow.com/questions/1580859/is-jquery-contains-selector-accepts-this-kind-of-value-banking-and-financeComment by Pandincus on Is jquery ":contains" selector accepts this kind of value "Banking and Finance"?Pandincus2009-10-16T23:29:38Z2009-10-16T23:29:38Z@Aistina: I think you're right -- :contains doesn't have this problem for me. Dunno why the first example would work, though.http://stackoverflow.com/questions/1575831/accessing-td-property-of-a-html-table-through-javascript-and-css/1575862#1575862Comment by Pandincus on Accessing td property of a html table through javascript and css.Pandincus2009-10-16T18:43:24Z2009-10-16T18:43:24ZAh, well, in that case: $("#a01").attr("class", "yellowZone");http://stackoverflow.com/questions/1575831/accessing-td-property-of-a-html-table-through-javascript-and-css/1575862#1575862Comment by Pandincus on Accessing td property of a html table through javascript and css.Pandincus2009-10-16T12:28:47Z2009-10-16T12:28:47ZGood question -- I have no idea :-D. I don't usually use vanilla javascript DOM manipulation; I've been spoiled by jQuery, but I didn't want to give the OP an indirect answer of "Oh, just use jQuery."http://stackoverflow.com/questions/1564167/blockui-takes-too-long-to-block-jquery-dialog/1564209#1564209Comment by Pandincus on BlockUI takes too long to block jQuery dialogPandincus2009-10-14T04:19:41Z2009-10-14T04:19:41ZO noes! Beaten to the punch! :-D Good show, sir.