User StingyJack - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T23:12:32Zhttp://stackoverflow.com/feeds/user/16391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902391/trying-to-use-dictionarydictionaryint-int-dictionaryint-int-advice-pleas/1902412#19024120Answer by StingyJack for Trying to use Dictionary<Dictionary<int, int>, Dictionary<int, int>> advice pleaseStingyJack2009-12-14T17:53:12Z2009-12-14T17:53:12Z<p>Just use a datatable. Sure you may duplicate some of the key information but its only ints, and will save you a good amount of headache in tracking the kvp's. </p>
http://stackoverflow.com/questions/424531/sqlclient-calls-causing-thread-was-being-aborted-at-sninativemethodwrapper-snipa1SqlClient calls causing "Thread was being aborted at SNINativeMethodWrapper.SNIPacketGetConnection(IntPtr packet)"StingyJack2009-01-08T14:57:45Z2009-11-12T14:03:23Z
<p>I would really appreciate any suggestions, no matter how simple or complex, to help me get this issue isolated and resolved. </p>
<p>I have a bit of code that generates small report files. For each file in the collection, a stored proc is executed to get the data via XML reader (its a pretty big result set). When I created all this, and stepped through it, all is well. Files are generated, no errors. </p>
<p>This library is called via remoting, and is hosted via IIS. When I deploy the compiled library and call it, its able to generate some of the reports, but then throws a Thread Abort Exception. If I attach the debugger to the asp worker process, and step through the code, I have no problems.</p>
<p>Seeing as this failure is pretty consistent, I looked for similarities and found that the failure happens on different reports, but seems to happen at about the same chronological point.</p>
<p>This lead me to think that it was a timeout setting that the debugger is overriding, I did some rough timings of the overall process (not the single piece of failing code) and it seems to fail at just after about 200 seconds. The web.config executionTimeout is set for 600 minutes (plenty high enough). There are other parts to this server application that require COM+ transactions (2 minute timeout), but this is not one of them. I am at a loss as to what timeout it could be hitting (at about the 200 second mark).</p>
<p>The SQL Connection timeout is left at default (the connection opens successfully), the command timeout is 300 seconds (it takes only 12-15 to exec the command). </p>
<ul>
<li>Is there any other timeout that I could be missing?</li>
</ul>
<p>I ran SQL profiler, and it shows that the result is returned correctly (all statements and RPC completed - no errors). Executing the code via SSMS provides perfect results.</p>
<p>Using reflector, I drilled into the SNINativeMethodWrapper, and its a wrapper for unmanaged code and I cant see what its trying to actually do. I can only assume (perhaps wrongly) that the code has received the TDS from the SQL server and the wrapper is trying to get the connection associated with the packet and it cannot.</p>
<ul>
<li>Does anyone know what this wrapper is supposed to do?</li>
<li>Is there any way to trace / debug this code to find out what is causing the failure?</li>
</ul>
<p>I tried using different methods (ExecScalar, DataAdapter), but they all use ExecuteReader internally. </p>
<p>I tried disabling connection pooling and forcing the client to use the same packet size as the server.</p>
<ul>
<li>Does anybody have any ideas as to what causes this, or what I can do to isolate and try to correct the problem?</li>
</ul>
<h2>This is the calling code where the exception is generated.</h2>
<pre><code>Private Function GetDataAsXmlDoc(ByVal cmd As SqlClient.SqlCommand) As XmlDocument
Dim _xmlDoc As XmlDocument
Using _connection As New SqlClient.SqlConnection(GetConnectionString())
Logging.DebugEvent.Raise(Me.GetType.Namespace, Reflection.MethodBase.GetCurrentMethod().Name, _
"No cached data found or used. Getting data for report from the database using SQL connection.")
Dim _xmlReader As XmlReader
'DataAdapter,ExecuteScalar, ExecuteXmlReader all use ExecuteReader internally and suffer the same problem.'
'If you dont believe me, reflect it or look at one of the blowed up stack traces. '
'_connection.ConnectionString += ";Pooling=false;"' 'This has no effect on the ThreadAbort.'
cmd.Connection = _connection
cmd.CommandTimeout = 300
_connection.Open()
Logging.DebugEvent.Log(String.Format("Connection opened, using packet size of {0}.", _connection.PacketSize))
_xmlReader = cmd.ExecuteXmlReader() 'Thread aborts in here'
Logging.DebugEvent.Raise(Me.GetType.Namespace, Reflection.MethodBase.GetCurrentMethod().Name, _
"Report data recieved from database")
_xmlDoc = New XmlDocument()
_xmlDoc.Load(_xmlReader)
_xmlReader.Close()
End Using
Return _xmlDoc
End Function
</code></pre>
<h2>Stack</h2>
<p>*Exception String - System.Threading.ThreadAbortException: Thread was being aborted.
at SNINativeMethodWrapper.SNIPacketGetConnection(IntPtr packet)
at System.Data.SqlClient.TdsParserStateObject.ProcessSniPacket(IntPtr packet, UInt32 error)
at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
at System.Data.SqlClient.TdsParserStateObject.ReadByte()
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
at System.Data.SqlClient.SqlDataReader.get_MetaData()
at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
at System.Data.SqlClient.SqlCommand.ExecuteXmlReader()...*</p>
http://stackoverflow.com/questions/302486/what-is-the-operator-in-vb-net-or-what-is-it-good-for6What is the " := " operator in (VB).NET or what is it good for?StingyJack2008-11-19T16:29:17Z2009-11-05T23:42:35Z
<p>I see this from time to time and want to know what it is. I did try google, but its filtering out the characters from the search. I have a few books that don't reference it either. </p>
<p>FWIW, I remember in pascal that is was the assignment operator. </p>
<p>Can anybody point me to the MSDN or similar page?</p>
http://stackoverflow.com/questions/1454180/caching-large-datasets/1454197#14541972Answer by StingyJack for Caching Large DatasetsStingyJack2009-09-21T12:07:20Z2009-09-21T12:07:20Z<p>It is pretty straight forward, but you may want to keep an eye on what is actually cached. Rick Strahl has an <a href="http://www.west-wind.com/weblog/posts/11379.aspx" rel="nofollow">interesting post</a> on how the cache was actually empty due to memory pressures. </p>
http://stackoverflow.com/questions/1434369/tfs-merging-back-into-main-branch/1434455#14344550Answer by StingyJack for TFS: Merging back into main branchStingyJack2009-09-16T17:40:20Z2009-09-17T15:03:10Z<p>You probably have lines like this before you start the merge...</p>
<ul>
<li>Main branch - Contains code A, B, C</li>
<li>Current branch - Contains code A, B, C, D, E </li>
<li>Experimental branch - Contains code A, B, C, D, F, G, H</li>
</ul>
<p>When you push from Current to Exp, you are merging feature E into the experimental branch. </p>
<p>When you then push from Exp to Current, you still have to merge F, G, and H. This is where your conflicts are likely rooted. </p>
<p>----Response to 1st comment----
Do you auto merge, or use the merge tool?
What is an example of something that is "in conflict"?</p>
http://stackoverflow.com/questions/1378593/get-a-list-of-dates-between-two-dates-using-a-function/1378866#13788660Answer by StingyJack for Get a list of dates between two dates using a functionStingyJack2009-09-04T12:13:31Z2009-09-04T15:36:19Z<p>Definately a numbers table, though tyou may want to use Mark Redman's idea of a CLR proc/assembly if you really need the performance. </p>
<p>How to create the table of dates (and a super fast way to create a numbers table)</p>
<pre><code>/*Gets a list of integers into a temp table (Jeff Moden's idea from SqlServerCentral.com)*/
SELECT TOP 10950 /*30 years of days*/
IDENTITY(INT,1,1) as N
INTO #Numbers
FROM Master.dbo.SysColumns sc1,
Master.dbo.SysColumns sc2
/*Create the dates table*/
CREATE TABLE [TableOfDates](
[fld_date] [datetime] NOT NULL,
CONSTRAINT [PK_TableOfDates] PRIMARY KEY CLUSTERED
(
[fld_date] ASC
)WITH FILLFACTOR = 99 ON [PRIMARY]
) ON [PRIMARY]
/*fill the table with dates*/
DECLARE @daysFromFirstDateInTheTable int
DECLARE @firstDateInTheTable DATETIME
SET @firstDateInTheTable = '01/01/1998'
SET @daysFromFirstDateInTheTable = (SELECT (DATEDIFF(dd, @firstDateInTheTable ,GETDATE()) + 1))
INSERT INTO
TableOfDates
SELECT
DATEADD(dd,nums.n - @daysFromFirstDateInTheTable, CAST(FLOOR(CAST(GETDATE() as FLOAT)) as DateTime)) as FLD_Date
FROM #Numbers nums
</code></pre>
<p>Now that you have a table of dates, you can use a function (NOT A PROC) like KM's to get the table of them. </p>
<pre><code>CREATE FUNCTION dbo.ListDates
(
@StartDate DATETIME
,@EndDate DATETIME
)
RETURNS
@DateList table
(
Date datetime
)
AS
BEGIN
/*add some validation logic of your own to make sure that the inputs are sound.Adjust the rest as needed*/
INSERT INTO
@DateList
SELECT FLD_Date FROM TableOfDates (NOLOCK) WHERE FLD_Date >= @StartDate AND FLD_Date <= @EndDate
RETURN
END
</code></pre>
http://stackoverflow.com/questions/1378861/asp-net-development-server-not-serving-everything-all-the-time/1378886#13788860Answer by StingyJack for ASP .NET Development Server not serving everything all the timeStingyJack2009-09-04T12:18:50Z2009-09-04T12:18:50Z<p>Check the page in Firefox/Firebug or with IE8 and see if the paths to the files/scripts/images is correct or not. A common problem when switching between the local dev webserver and IIS hosted pages is that the paths may not resolve the same. You can fix this sometimes by using the "~" character before a path in the asp code.</p>
http://stackoverflow.com/questions/1378767/wait-for-all-worker-threads-to-end/1378789#13787891Answer by StingyJack for Wait for all worker threads to endStingyJack2009-09-04T11:52:14Z2009-09-04T11:52:14Z<p>Switch them around. Make your main thread the one that monitors, and spawn the worker threads (write from Q to file) from there. </p>
<p>Or have the main thread startup threads for monitor and work, and then have the main thread spin and wait (loop until it gets abort/complete notifications from the other threads)</p>
http://stackoverflow.com/questions/1364663/are-globals-still-bad/1364683#13646839Answer by StingyJack for Are globals still bad?StingyJack2009-09-01T21:10:02Z2009-09-01T21:10:02Z<p>I dont think thats really a "global". Its just a member level field. That is perfectly acceptable in most cases (but not really for flow control - it looks like what you really need there is some class redesign).</p>
http://stackoverflow.com/questions/1364645/why-do-i-get-a-thrown-exception-when-i-run-response-redirect/1364656#13646561Answer by StingyJack for Why do I get a thrown exception when I run Response.Redirect()?StingyJack2009-09-01T21:05:33Z2009-09-01T21:05:33Z<p>I believe you need to follow the instrucitons in this KB article. Response.Redirect calls Response.End(), unless you used the overload specifically made to avoid this behavior. Once the response has been ended, no further operations can happen hence the TA exc. </p>
<p><a href="http://support.microsoft.com/kb/312629" rel="nofollow">http://support.microsoft.com/kb/312629</a></p>
http://stackoverflow.com/questions/1271497/asp-net-permissions-to-root-certificate-store/1271530#12715301Answer by StingyJack for ASP.net permissions to root certificate storeStingyJack2009-08-13T11:56:04Z2009-08-31T11:51:31Z<p>Generally you give permissions to <strong>A</strong> certificate. I use a method like this to find the custom made cert and grant permissions. If you are using a cert issued by a public entity like Verisign, Thawte, etc, this is probably unnecessary.</p>
<pre><code>FindPrivateKey.exe My LocalMachine –n "CN=<certificate issuer>"
</code></pre>
<p>...will find certificates on the local machine in the personal store for a particular issuer. </p>
<p><em>Note: If FindPrivateKey is not on your local machine,
download the WCF samples, including the FindPrivateKey tool, at
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2611A6FF-FD2D-4F5B-A672-C002F1C09CCD&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=2611A6FF-FD2D-4F5B-A672-C002F1C09CCD&displaylang=en </a></em></p>
<p>FindPrivateKey returns the location of the private key for the certificate, similar to </p>
<pre><code>"C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\Machinekeys\4d657b73466481beba7b0e1b5781db81_c225a308-d2ad-4e58-91a8-6e87f354b030".
</code></pre>
<p>Run the following command line to assign read only access permissions to the process identity of the ASP.NET/WCF Service</p>
<pre><code>cacls.exe "C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\Machinekeys\4d657b73466481beba7b0e1b5781db81_c225a308-d2ad-4e58-91a8-6e87f354b030" /E /G "NT AUTHORITY\NETWORK SERVICE":R
</code></pre>
<p>NOTE: If you are running Microsoft Windows® XP, give the certificate permissions for the ASPNET identity instead of the NT Authority\Network Service identity, because the IIS process runs under the ASPNET account in Windows XP.</p>
<p>Certificates are viewable from the MMC snap in for Certificates. Open MMC, choose File --> Add/Remove Snap in, click the add button and choose certificates. From here you will need to choose the appropriate store (usually Computer Account - Local Computer for ASP.NET items) to manage and then you can view/admin the certs. </p>
<p>Please take a good hard look at the different command line options, and make sure that you have a clear understanding of what certificates are and how they work before granting any permissions.</p>
http://stackoverflow.com/questions/1343646/creating-your-own-component-in-vb-net-2008/1343684#13436840Answer by StingyJack for Creating your own component in vb.net 2008StingyJack2009-08-27T20:52:49Z2009-08-28T11:58:11Z<p>OK... This is a really abbreviated example. You should start by basing yous off of an existing .net component.</p>
<pre><code>Public Class MyControl
Inherits DataGridView
'...add your properties/functionality...'
End Class
</code></pre>
<p>Then compile the DLL, and add it as a reference to whatever project you are working on. Once added, you can add the controls in the DLL into your toolbox. </p>
<p><a href="http://ondotnet.com/pub/a/dotnet/2002/03/18/customcontrols.html" rel="nofollow">This</a> has more instructions on how to modify a UserControl (slightly different from the one above, but it explains well. <a href="http://www.akadia.com/services/dotnet%5Fuser%5Fcontrols.html" rel="nofollow">This</a> is a general explanation. </p>
<p>@comments -
<a href="http://stackoverflow.com/questions/37830/how-do-i-implement-a-chromeless-window-with-wpf">Yes</a>, <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/68d8990a-5414-44e8-94e6-70554fa7391b" rel="nofollow">there</a>, <a href="http://www.google.com/search?q=chromeless+winform+.net" rel="nofollow">are</a> things that will do what you want. Start with a class that inherits Form instead of DataGridView in the example I gave you, and the changes described in the links provided. </p>
<p>"Your properties and functionality" is whatever you want to do that the base control does not do. </p>
http://stackoverflow.com/questions/1323531/confused-about-base-class-libary-and-framework-class-library/1323548#13235483Answer by StingyJack for Confused about Base class libary and Framework Class LibraryStingyJack2009-08-24T16:59:09Z2009-08-24T17:16:39Z<p>In kind of the order you asked, </p>
<ul>
<li>No, database connectivity and the entity framework are seperate from the standard stuff String/Stream/File/etc in the <a href="http://msdn.microsoft.com/en-us/netframework/aa569603.aspx" rel="nofollow">BCL</a>.</li>
<li>FCL is everything in the figure you linked to. The whole deal. </li>
</ul>
<p>@Scott -
From the text you posted </p>
<blockquote>
<p>"The Base Class Libraries (BCL) serve
as the standard runtime for any .NET
language and provide types that
represent the intrinsic CLR rtpes,
collections, streams, string
manipulation, basic file access, etc.</p>
<p>The <strong>remaining classes in the FCL</strong> are
focused on specific functional areas,
such as provding database access."</p>
</blockquote>
<p>To me this means that the FCL is the whole, and the BCL is part of it, but maybe you read that differently. </p>
http://stackoverflow.com/questions/1322703/tfs-2008-how-to-make-source-control-explorer-show-add-operations-for-other-us1TFS 2008 : How to make Source Control Explorer show "ADD" operations for other users?StingyJack2009-08-24T14:19:26Z2009-08-24T14:35:05Z
<p>In the visual studio Source Control Explorer window, I can see my own "add" operations, but do not see the "add" operations for other users. I can see all other operations (rename, edit, etc), but cannot see any add's. </p>
<p>Anyone know how to turn this on, or how to view add's otherwise?</p>
http://stackoverflow.com/questions/1311593/initializing-system-array/1311610#13116101Answer by StingyJack for Initializing System.Array?StingyJack2009-08-21T12:17:17Z2009-08-21T12:17:17Z<p>Why not </p>
<pre><code>Dim finalArray as New ArrayList()
</code></pre>
<p>Really, if you are only storing a certain type of object, you should be using generics. </p>
<pre><code>Dim finalArray as New List(Of Integer)
Dim finalArray as New List(Of String)
Dim finalArray as New List(Of YourFavoriteObject)
</code></pre>
<p>(And dont be a sloppy VB6 programmer... add those perens for constructors and other methods calls.)</p>
http://stackoverflow.com/questions/1311450/sqlite-sort-by-price-doesnt-work/1311591#13115912Answer by StingyJack for SQLite sort by price doesn't workStingyJack2009-08-21T12:13:04Z2009-08-21T12:13:04Z<p>Mehmet, Ideally you should be storing the prices as a currency/decimal/numeric data type and appending the "$" on the UI. Eric's solution will work for your immediate problem, but as your system grows, the performance of these selects will get worse and worse. </p>
http://stackoverflow.com/questions/1295324/similar-classes-with-different-signatures/1295337#12953370Answer by StingyJack for Similar classes with different signaturesStingyJack2009-08-18T17:25:01Z2009-08-18T17:25:01Z<p>Eh.. probably not. They are different enough that you cant even Interface them.</p>
http://stackoverflow.com/questions/1288403/is-it-possible-to-set-session-variables-from-javascript/1288431#12884311Answer by StingyJack for Is it possible to set session variables from javascript? StingyJack2009-08-17T14:54:45Z2009-08-17T14:54:45Z<p>yes, if you use an ajax call to a server handler. Its probably not a safe thing to do. Why do you need to?</p>
http://stackoverflow.com/questions/1256311/incorrect-syntax-near-in-sql/1256326#12563265Answer by StingyJack for incorrect syntax near ':' in SQL StingyJack2009-08-10T18:04:23Z2009-08-10T18:48:15Z<p>use TSQL.... </p>
<pre><code>DECLARE @databaseName VARCHAR(7)
SET @databaseName = 'USHR1.2'
</code></pre>
http://stackoverflow.com/questions/1239051/net-fastest-way-to-sum-a-collection-of-numeric-values2.Net - Fastest way to sum a collection of numeric valuesStingyJack2009-08-06T13:58:31Z2009-08-06T17:11:53Z
<p>I have a method which summarizes a collection of decimal values using a method similar to this...</p>
<pre><code>Dim _amountCollection as New List(Of Decimal)
_amountCollection.Add(145.12D)
_amountCollection.Add(11.32D)
_amountCollection.Add(6547.07D)
Dim _totalAmount as Decimal
For Each _individualAmount as Decimal in _amountCollection
_totalAmount += _individualAmount
Next
</code></pre>
<p>In the actual code, there are usually more members in the amount collection, and there are at least 50 individual amount collections that need to be summed in a total operation. </p>
<p>This recalculation of total amount gets called often (at least once, and then again for each collection content change), and is showing up in profile traces as consuming between 2-5% of the total operation time. I am looking to see if anyone has an idea of how to speed this summation operation up, or if this is just the fastest its going to get. </p>
<p>Caching is not realistic in this case, because the amounts <strong>must</strong> be recalculated. </p>
<p><strong>**EDIT</strong>
For Ravadre and Joel - The total amount is stored at the class level (each amount collection and sum are contained in a class instance)</p>
<p>Any ideas? </p>
http://stackoverflow.com/questions/1089059/linq-query-has-an-implicit-cast-error-for-datagridviewrow-when-option-strict-is-e0Linq query has an implicit cast error for DataGridViewRow when option strict is enabledStingyJack2009-07-06T20:26:57Z2009-07-07T17:08:03Z
<p>I have a DataGridView that is bound to a list of objects called "BaseChange". The BaseChange objects are made up of 4 properties...</p>
<ul>
<li>ChangeType</li>
<li>ChangeStatus</li>
<li>ChangeDescription</li>
<li>LastChangeDate</li>
</ul>
<p>The datagridview has columns for all 4 values as well as a 5th (a checkbox column called "colIsSelected"). There is no problem binding the list to the grid and displaying the items. </p>
<p>The problem is that the query that gets the selected items in the grid is giving me an implicit cast error when option strict is enabled. </p>
<p>This is the query... </p>
<pre><code>Dim _changes As List(Of BaseChange)
_changes = (From _row As DataGridViewRow In dgvChanges.Rows() _
Where Convert.ToBoolean(_row.Cells(NAME_COLUMN_IS_SELECTED).Value) = True _
Select DirectCast(_row.DataBoundItem, BaseChange)).ToList()
</code></pre>
<p>...and it produces the correct results with option strict off. The implicit cast squiggle is on the "<em>row As DataGridViewRow" code, and the full message is "</em>Implicit conversion from 'Object' to 'System.Windows.Forms.DataGridViewRow'*". </p>
<p>If I exclude the "As DataGridViewRow" from the query, I get a late binding error on the _row.Cells and _row.DataBoundItem and this also fails option strict.</p>
<p>I need this to work with Option Strict enabled, and in VB. Am I missing something here? Anyone have suggestions?</p>
http://stackoverflow.com/questions/187018/can-i-add-asp-net-ajax-extentions-to-a-page-programmatically-server-side0Can I add ASP.NET AJAX Extentions to a page programmatically (server side)?StingyJack2008-10-09T12:24:42Z2009-06-18T16:53:54Z
<p>In a page, on the load event, I am dynamically creating controls for display on the page. This is all working properly. the trouble I am having is when adding extenders from the AJAX control toolkit, specifically I am trying to add rounded corners to a button control. No errors are thrown, but the AJAX Extension functionality does not appear in the displayed page.</p>
<p>Does anyone have any ideas on what I am not doing correctly, or if its even possible?</p>
<pre><code>Dim container As HtmlGenericControl
Dim edit As Button
Dim editRoundedCorners As AjaxControlToolkit.RoundedCornersExtender
For each item in items
container = New HtmlGenericControl("div")
container.ID = "container_" & item.code
edit = New Button()
edit.ID = "edit_" & item.code
edit.Text = "Edit"
edit.Style("padding") = "0 0 0 4px"
edit.SkinID = "smallEditButton"
editRoundedCorners = New AjaxControlToolkit.RoundedCornersExtender()
editRoundedCorners.BorderColor = edit.BorderColor
editRoundedCorners.ID = edit.ID & "_RoundedCorners"
editRoundedCorners.Corners = AjaxControlToolkit.BoxCorners.All
editRoundedCorners.Radius = 3
editRoundedCorners.TargetControlID = edit.ID
container.Controls.Add(editRoundedCorners)
container.Controls.Add(edit)
pageContainer.Controls.Add(container)
Next
</code></pre>
<p>(pageContainer is a div on the page)</p>
http://stackoverflow.com/questions/483429/how-to-find-similar-patterns-in-lists-arrays-of-strings5How to find similar patterns in lists/arrays of stringsStingyJack2009-01-27T13:44:17Z2009-05-28T06:56:20Z
<p>I am looking for ways to find matching patterns in lists or arrays of strings, specifically in .NET, but algorithms or logic from other languages would be helpful. </p>
<p>Say I have 3 arrays (or in this specific case List(Of String)) </p>
<pre><code>Array1
"Do"
"Re"
"Mi"
"Fa"
"So"
"La"
"Ti"
Array2
"Mi"
"Fa"
"Jim"
"Bob"
"So"
Array3
"Jim"
"Bob"
"So"
"La"
"Ti"
</code></pre>
<p>I want to report on the occurrences of the matches of </p>
<pre><code>("Mi", "Fa") In Arrays (1,2)
("So") In Arrays (1,2,3)
("Jim", "Bob") in Arrays (2,3)
("So", "La", "Ti") in Arrays (1, 3)
</code></pre>
<p>...and any others. </p>
<p>I am using this to troubleshoot an issue, not to make a commercial product of it specifically, and would rather not do it by hand (there are 110 lists of about 100-200 items). </p>
<p>Are there any algorithms, existing code, or ideas that will help me accomplish finding the results described? </p>
http://stackoverflow.com/questions/129382/anybody-know-where-i-can-get-docs-or-tutorials-on-vss-2005-integration-via-net0Anybody know where I can get docs or tutorials on VSS 2005 Integration via .net. StingyJack2008-09-24T19:38:03Z2009-03-29T04:02:02Z
<p>I know that I can add the SourceSafeTypeLib to a project and can explore it in object browser and find obvious things (GetLatest, etc), but I am looking for some more thorough documentation or specific tutorials on things like "undo another user's checkout" or"determine who has a file checked out. </p>
<p>If anyone knows where to find this material, how to do advanced or non-obvious tasks with VSS, or knows how to disassemble a COM api (so I can engineer my own api) it would be much appreciated. </p>
http://stackoverflow.com/questions/685814/how-to-prevent-antagonism-between-dbas-and-developers/685846#6858460Answer by StingyJack for How to prevent antagonism between DBAs and developersStingyJack2009-03-26T13:42:24Z2009-03-26T13:42:24Z<p>Instead of both sides dictating what needs to happen in the others domain, have each side explain what they need and allow the other to implement as they best see fit.</p>
<p>Developer to DBA:</p>
<p>"I need to store the following tidbits of data, and I need to retrieve it to fill this business need."</p>
<p>DBA to Developer:</p>
<p>"Here is the table schema that we have come up with, and here are the efficient and secure ways to get the data"</p>
<p>This works great, and avoids the problem altogether. </p>
http://stackoverflow.com/questions/667111/some-advanced-questions-on-the-using-statement/667127#6671270Answer by StingyJack for Some advanced questions on the using statementStingyJack2009-03-20T17:23:11Z2009-03-20T17:23:11Z<p>No, IDisposable does not require Close(), but the object implementing IDispose may be nice enough to include it in the Dispose() method.</p>
<p>You should dispose it as soon as you have the piece of data you are getting from the DB. Don't leave a reader open any longer than you need. If you are doing any <em>real</em> work with the data, use a dataAdapter/dataset instead of reader.</p>
<p>No Idea. Check the Generated IL</p>
http://stackoverflow.com/questions/662637/asp-net-website-structure-question/662663#6626631Answer by StingyJack for Asp.Net Website Structure QuestionStingyJack2009-03-19T15:32:34Z2009-03-19T15:32:34Z<p>The question you should be constantly asking yourself is "Am I making this as easy to maintain as I can?".</p>
<p>If you keep that in mind (and the answer is yes) you should be fine. I am sure you will get many opinions on how to structure your site (more usercontrols, more masterpages, MVC, etc), and while some of them may be valid, the solution has to work for you since you are the one living with it. </p>
<p>There is nothing wrong with taking the simple/plain approach if it serves your needs. </p>
http://stackoverflow.com/questions/650233/is-there-any-way-to-deal-with-paramarray-values-as-byref-so-they-can-be-updated0Is there any way to deal with ParamArray values as byRef so they can be updated?StingyJack2009-03-16T12:34:15Z2009-03-16T12:38:12Z
<p>Sounds simple enough, but its not working. In this example, I want to set the values of 3 fields to equal a 4th. I could do something like this....</p>
<pre><code>Dim str1 As String = "1"
Dim str2 As String = "2"
Dim str3 As String = "3"
Dim str4 As String = "4"
str2 = str1
str3 = str1
str4 = str1
</code></pre>
<p>... but that's kind of wordy (yeah, I know, vb is wordy in most cases). I would like to have something I can use to reduce this to a single line call, so I made this extension method. </p>
<pre><code>Module Module1
Sub Main()
Dim str1 As String = "1"
Dim str2 As String = "2"
Dim str3 As String = "3"
Dim str4 As String = "4"
Console.WriteLine("Extension method return value = {0}", str1.SetEqual(str2, str3, str4))
Console.WriteLine("String 1 = {0}", str1)
Console.WriteLine("String 2 = {0}", str2)
Console.WriteLine("String 3 = {0}", str3)
Console.WriteLine("String 4 = {0}", str4)
Console.ReadKey()
End Sub
<System.Runtime.CompilerServices.Extension()> _
Public Function SetEqual(Of T)(ByVal source As T, _
ByVal ParamArray targets() As T) _
As T
For _index = 0 To targets.Length - 1
targets(_index) = source
Console.WriteLine("Target Value {0} = {1}", _index, targets(_index))
Next
Return source
End Function
End Module
</code></pre>
<p>Seems straightforward enough, right? Well, the output is this...</p>
<pre><code>Target Value 0 = 1
Target Value 1 = 1
Target Value 2 = 1
Extension method return value = 1
String 1 = 1
String 2 = 2
String 3 = 3
String 4 = 4
</code></pre>
<p>Values in the param array did not get updated in the return! I was expecting to have all of the final values now be "1", like they are in the Function. </p>
<p>Is there any way to get an update-able ParamArray collection like this? ParamArray must be declared ByVal, but with a reference type like String, shouldn't that only make a copy of the pointer and allow me to change the underlying value? </p>
<p>Is there a better way to get what I want? (C# is not an option for this).</p>
http://stackoverflow.com/questions/642318/how-do-i-force-sql-server-to-execute-a-query-in-a-particular-order/642340#6423402Answer by StingyJack for How do I force SQL Server to execute a query in a particular orderStingyJack2009-03-13T12:00:03Z2009-03-13T12:00:03Z<p>The problem that you have when using inline functions is that they can be re-evaluated for each row returned in the SELECT. This means, that if the SELECT statement returns 100 rows, then the function can be executed 100 times. </p>
<p>You should really follow Sambo99's advice and extract it to a table variable (or a temp table if you think it needs indexes). </p>
http://stackoverflow.com/questions/638332/how-do-i-join-two-tables-on-a-column-that-has-the-same-name-in-both-tables/638340#6383408Answer by StingyJack for How do I join two tables ON a column, that has the same name in both tables?StingyJack2009-03-12T12:08:50Z2009-03-12T12:08:50Z<p>Use an Alias for the table names is the shortest.</p>
<pre><code>SELECT a.*, b.*
FROM table1 as 'a'
INNER JOIN table2 as 'b'
ON a.col1 = b.col1
</code></pre>
<p>You can also specify the full table names. </p>
<pre><code>SELECT table1.*, table2.*
FROM table1
INNER JOIN table2
ON table1.col1 = table2.col1
</code></pre>
http://stackoverflow.com/questions/473354/quote-needed-preprocessor-usage-is-bad-oo-practice/473510#473510Comment by StingyJack on Quote needed: Preprocessor usage is bad OO practiceStingyJack2009-12-02T22:06:40Z2009-12-02T22:06:40ZOOHHH I made "magic" =)
http://stackoverflow.com/questions/1673648/connection-time-out-expireComment by StingyJack on Connection Time out ExpireStingyJack2009-11-04T13:09:52Z2009-11-04T13:09:52ZPlease be more specific. Post the error message and any other specific details.http://stackoverflow.com/questions/1561617/edited-why-does-object-tostring-exist/1561632#1561632Comment by StingyJack on EDITED: Why does object.ToString() exist?StingyJack2009-10-13T18:20:11Z2009-10-13T18:20:11Z@itay... You are basically advocating a TryCast every time you want to output the value of an object. All of that casting is not necessary, because with .TOString() the instance is guaranteed to produce output. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282973#282973Comment by StingyJack on What are five things you hate about your favorite language?StingyJack2009-10-13T12:11:39Z2009-10-13T12:11:39ZWhat about "On Error Resume Next"... thats like saying "this code is F**KED, but lets keep running it anyway. =)http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286856#286856Comment by StingyJack on What are five things you hate about your favorite language?StingyJack2009-10-13T12:01:57Z2009-10-13T12:01:57Z@wefwfwefwe - I have, but I just see it abused too much. http://stackoverflow.com/questions/1497287/fast-lightweight-net-client-encryption-server-decryption/1497305#1497305Comment by StingyJack on Fast Lightweight .NET Client Encryption -> Server DecryptionStingyJack2009-09-30T12:18:58Z2009-09-30T12:18:58ZRe: Googling for a solution... Yes, but make sure you dont copy a bad one =) (<a href="http://www.codinghorror.com/blog/archives/001268.html" rel="nofollow">codinghorror.com/blog/archives/…</a>)http://stackoverflow.com/questions/1497287/fast-lightweight-net-client-encryption-server-decryptionComment by StingyJack on Fast Lightweight .NET Client Encryption -> Server DecryptionStingyJack2009-09-30T12:16:31Z2009-09-30T12:16:31ZWinforms or Web app?http://stackoverflow.com/questions/191335/windows-equivalent-of-dev-random/191346#191346Comment by StingyJack on Windows equivalent of /dev/randomStingyJack2009-09-30T12:13:38Z2009-09-30T12:13:38ZSo I give a crypto friendly answer, and advice to look into the PL's rand functions to see if there is an equivalent (would you blindly trust one MS has supplied?) and thats bad?http://stackoverflow.com/questions/147557/error-logging-in-c/147597#147597Comment by StingyJack on Error logging in C#StingyJack2009-09-28T20:12:11Z2009-09-28T20:12:11ZEL can even send out emails as part of the logging. Very handy when reporting prod errors. http://stackoverflow.com/questions/1479098/firefox-css-against-meComment by StingyJack on Firefox CSS Against me? ? StingyJack2009-09-25T19:23:03Z2009-09-25T19:23:03Zspamming buttholehttp://stackoverflow.com/questions/1061537/distributed-transaction-completed-either-enlist-this-session-in-a-new-transactioComment by StingyJack on Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction.StingyJack2009-09-25T13:57:40Z2009-09-25T13:57:40ZDid you find anything out about this? I get it when inserting larger datasets (> 10K rows). http://stackoverflow.com/questions/1477332/is-css-sprite-a-good-technique/1477349#1477349Comment by StingyJack on Is css-sprite a good technique? StingyJack2009-09-25T13:50:31Z2009-09-25T13:50:31ZYou could change the filename (version it?) to defeat that caching problem. http://stackoverflow.com/questions/1456192/comparing-a-column-to-a-list-of-values-in-t-sql/1456277#1456277Comment by StingyJack on comparing a column to a list of values in t-sqlStingyJack2009-09-21T19:20:38Z2009-09-21T19:20:38ZErland to the rescue! <a href="http://www.sommarskog.se/arrays-in-sql.html#iterative" rel="nofollow">sommarskog.se/arrays-in-sql.html#iterative/…</a>. The functions on his page are very popular for doing what you are looking to do. http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matterComment by StingyJack on Which is the fastest javascript engine, and does it really matter?StingyJack2009-09-21T12:10:06Z2009-09-21T12:10:06ZDoes it matter to you?http://stackoverflow.com/questions/1454180/caching-large-datasets/1454189#1454189Comment by StingyJack on Caching Large DatasetsStingyJack2009-09-21T12:09:35Z2009-09-21T12:09:35ZThis is good if you have application code that is shared between several platforms (ASP.NET / winforms / class libraries).