User Brian Boatright - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T11:16:55Zhttp://stackoverflow.com/feeds/user/3747http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36274/what-is-lazy-loading3What is Lazy Loading?Brian Boatright2008-08-30T19:20:04Z2009-11-03T21:31:38Z
<p>What is Lazy Loading?</p>
<p>[Edit after reading a few answers]
Why do people use this term so often? </p>
<p>Say you just use a ASP/ADO recordset and load it with data or ADO.NET Datasource for a gridview.</p>
<p>I guess I should have asked why people use the term Lazy Loading, what "other" types are their?</p>
http://stackoverflow.com/questions/554224/is-the-bookmarklet-password-generator-from-supergenpass-com-safe-to-use1Is the Bookmarklet Password Generator from SuperGenPass.com safe to use?Brian Boatright2009-02-16T19:08:48Z2009-10-24T20:25:13Z
<p>I reviewed the 981 lines of code for the current version of <a href="http://supergenpass.com" rel="nofollow">http://supergenpass.com</a> and did not find anything, however I could have missed something. I just want to confirm that it does not transmit anything so I can use it and suggest it to others. I already use KeePassX to store passwords and other information. And I like the theory behind using SuperGenPass (and the original script) because it creates a unique password for each site based on the domain and your master password. </p>
<p>Here is a link to the Javascript file:
<a href="http://supergenpass.com.nyud.net:8090/SGPv4.js" rel="nofollow">http://supergenpass.com.nyud.net:8090/SGPv4.js</a></p>
<p><strong>Is the Bookmarklet Password Generator from SuperGenPass.com safe to use?</strong></p>
http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery11How do I hide the middle of a table using jQuery?Brian Boatright2008-10-18T16:22:34Z2009-10-23T20:05:33Z
<p>I have a really long 3 column table. I would like to </p>
<pre><code><table>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>Start</td><td>Hiding</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>End</td><td>Hiding</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
<tr><td>Column1</td><td>Column2</td></tr>
</table>
</code></pre>
<p>This is the result I'm trying to obtain using jQuery.</p>
<pre><code>Column1 Column2
Column1 Column2
...Show Full Table...
Column1 Column2
Column1 Column2
</code></pre>
<p>I would like to use jQuery's show/hide feature to minimize the table but still show part of the top and bottom rows. The middle rows should be replace with text like "Show Full Table" and when clicked will expand to show the full table from start to finish.</p>
<p>What is the best way to do this in jQuery?</p>
<p>BTW I've already tried adding a class "Table_Middle" to some of the rows but it doesn't hide it completely the space it occupied is still there and I don't have the text to give the user a way to expand the table fully.</p>
<p><strong>[EDIT] Added Working Example HTML inspired by Parand's posted answer</strong></p>
<p><strong><em>The example below is a complete working example, you don't even need to download jquery. Just paste into a blank HTML file.</em></strong></p>
<p><em>It degrades nicely to show only the full table if Javascript is turned off. If Javascript is on then it hides the middle table rows and adds the show/hide links.</em></p>
<pre><code><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Example Show/Hide Middle rows of a table using jQuery</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#HiddenRowsNotice").html("<tr><td colspan='2'> <a href='#'>>> some rows hidden <<</a></td></tr>");
$("#ShowHide").html("<tr><td colspan='2'><a href='#'>show/hide middle rows</a></td></tr>");
$("#HiddenRows").hide();
$('#ShowHide,#HiddenRowsNotice').click( function() {
$('#HiddenRows').toggle();
$('#HiddenRowsNotice').toggle();
});
});
</script>
</head>
<body>
<table>
<tbody id="ShowHide"></tbody>
<tr><th>Month Name</th><th>Month</th></tr>
<tbody>
<tr><td>Jan</td><td>1</td></tr>
</tbody>
<tbody id="HiddenRowsNotice"></tbody>
<tbody id="HiddenRows">
<tr><td>Feb</td><td>2</td></tr>
<tr><td>Mar</td><td>3</td></tr>
<tr><td>Apr</td><td>4</td></tr>
</tbody>
<tbody>
<tr><td>May</td><td>5</td></tr>
</tbody>
</table>
</body>
</html>
</code></pre>
<p>[EDIT] Link my <a href="http://www.developerbuzz.com/2008/10/use-jquery-to-show-and-hide-part-of.html" rel="nofollow">blog post</a> and working example.</p>
http://stackoverflow.com/questions/196730/best-way-to-extract-the-second-level-domain-from-the-httphost-variable-in-vbscri1Best way to extract the second level domain from the HTTP_Host Variable in VBScriptBrian Boatright2008-10-13T04:42:11Z2009-10-15T10:13:29Z
<p>I need to extract only the 2nd level part of the domain from request.servervariables("HTTP_HOST") what is the best way to do this?</p>
http://stackoverflow.com/questions/168736/how-do-you-set-a-default-value-for-a-mysql-datetime-column10How do you set a default value for a MySQL Datetime column?Brian Boatright2008-10-03T20:24:30Z2009-10-12T05:02:12Z
<p>How do you set a default value for a MySQL Datetime column?</p>
<p>In SQL Server it's getdate(), what is the equivalant for MySQL? I'm using 5.x if that is a factor.</p>
http://stackoverflow.com/questions/146750/any-reason-to-have-sql-server-2005-and-2008-installed-on-same-machine1Any reason to have SQL Server 2005 and 2008 installed on same machine?Brian Boatright2008-09-28T21:12:35Z2009-09-12T19:21:46Z
<p>I'm setting up a new development server and want to install the latest version of SQL Server 2008 Express.</p>
<p>Will our existing sql2005 databases work with 2008 without modification?
If so is there any reason to install both versions on the same server?</p>
http://stackoverflow.com/questions/36093/subversion-or-adobe-version-cue-3-for-photoshop-illustrator-files2Subversion or Adobe Version CUE 3 for Photoshop/Illustrator FilesBrian Boatright2008-08-30T16:27:14Z2009-09-02T12:19:24Z
<p>This might seem like a stupid question I admit. But I'm in a small shop me plus two designers. Our backups are getting out of hand because they just copy/paste files if they need to make a change (version). </p>
<p>I was all set to try Subversion to handle all of our files my text (code) files and their photoshop/illustrator and asset files. That is until I noticed there was a new version of Adobe Version Cue v3. We've tried previously to use version cue but it got complicated and the designers quickly stopped using it.</p>
<p>Looking for anyone that has some experience with version 3 of Version Cue.</p>
<p>Thanks for the great feedback. Maybe I should have asked what's the best tool to use for Versioning Photoshop and related files. I did notice the binary file issue and was worried about trying to explain it and keep it "working". I signed up for the beta at Gridiron thanks for that!</p>
<p><a href="http://beta.stackoverflow.com/questions/36186/best-versioning-tools-to-use-for-photoshopillustrator-and-related-binary-files" rel="nofollow">Here</a> is the other question related to this one.</p>
http://stackoverflow.com/questions/273803/how-to-trace-a-asp-net-security-exception2How to trace a ASP.NET Security ExceptionBrian Boatright2008-11-07T22:08:58Z2009-07-09T10:25:29Z
<p>How can I figure out what is actually causing the following error? The page is the same as other pages but for some reason only this page is having this error. It also only happens on the ISP (GoDaddy) who has a trust level of Medium and I can't set a breakpoint and try to catch it.</p>
<p><code>
Server Error in '/' Application.
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
</code></p>
<p><code>
Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
</code></p>
<p><code>
Source Error:
</code></p>
<p><code>
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
</code></p>
<pre>
Stack Trace:
[SecurityException: Request for the permission of type 'System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
System.Security.CodeAccessPermission.Demand() +59
System.IO.Path.GetTempPath() +54
hh.a(Int32 A_0, Boolean A_1, Boolean A_2) +20
jg.b(c A_0, UInt64 A_1) +234
ei.b(c A_0, UInt64 A_1) +18
jg.a(c A_0, UInt64 A_1, Boolean A_2) +61
</pre>
<p><code>
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
</code></p>
<p>If you have had this issue or just know how I can fix or trace it please add your answer. Trust level of Medium is required by the ISP.</p>
http://stackoverflow.com/questions/1084317/best-way-to-preserve-line-breaks-in-asp-net/1084340#10843400Answer by Brian Boatright for Best way to preserve Line Breaks in ASP.NETBrian Boatright2009-07-05T16:16:26Z2009-07-05T16:16:26Z<p>@RubbleFord I don't have the points just yet to edit your question but I think you should change the title to "Best Way to Preserve Line Breaks" so it will better match your question and the answers provided.</p>
<p>To preservce whitespace or force it in HTML use <code>"&nbsp;"</code></p>
http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string1return only Digits 0-9 from a StringBrian Boatright2009-05-10T00:57:11Z2009-05-10T17:41:15Z
<p>I need a regular expression that I can use in VBScript and .NET that will return only the numbers that are found in a string. </p>
<p>For Example any of the following "strings" should return only <strong>1231231234</strong></p>
<ul>
<li>123 123 1234</li>
<li>(123) 123-1234</li>
<li>123-123-1234</li>
<li>(123)123-1234</li>
<li>123.123.1234</li>
<li>123 123 1234</li>
<li>1 2 3 1 2 3 1 2 3 4</li>
</ul>
<p>This will be used in an email parser to find telephone numbers that customers may provide in the email and do a database search.</p>
<p>I may have missed a similar regex but I did search on regexlib.com.</p>
<p>[EDIT] - Added code generated by <a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> after setting up musicfreak's answer</p>
<p><strong>VBScript Code</strong></p>
<pre><code>Dim myRegExp, ResultString
Set myRegExp = New RegExp
myRegExp.Global = True
myRegExp.Pattern = "[^\d]"
ResultString = myRegExp.Replace(SubjectString, "")
</code></pre>
<p><strong>VB.NET</strong></p>
<pre><code>Dim ResultString As String
Try
Dim RegexObj As New Regex("[^\d]")
ResultString = RegexObj.Replace(SubjectString, "")
Catch ex As ArgumentException
'Syntax error in the regular expression
End Try
</code></pre>
<p><strong>C#</strong></p>
<pre><code>string resultString = null;
try {
Regex regexObj = new Regex(@"[^\d]");
resultString = regexObj.Replace(subjectString, "");
} catch (ArgumentException ex) {
// Syntax error in the regular expression
}
</code></pre>
http://stackoverflow.com/questions/36001/sql-server-2005-auto-updated-datetime-column-lastupdated4SQL Server 2005 Auto Updated DateTime Column - LastUpdatedBrian Boatright2008-08-30T14:48:38Z2009-05-06T16:00:39Z
<p>I have a table defined (see code snippet below). How can I add a constraint or whatever so that the LastUpdate column is automatically updated anytime the row is changed?</p>
<pre><code>CREATE TABLE dbo.Profiles
(
UserName varchar(100) NOT NULL,
LastUpdate datetime NOT NULL CONSTRAINT DF_Profiles_LastUpdate DEFAULT (getdate()),
FullName varchar(50) NOT NULL,
Birthdate smalldatetime NULL,
PageSize int NOT NULL CONSTRAINT DF_Profiles_PageSize DEFAULT ((10)),
CONSTRAINT PK_Profiles PRIMARY KEY CLUSTERED (UserName ASC),
CONSTRAINT FK_Profils_Users FOREIGN KEY (UserName) REFERENCES dbo.Users (UserName) ON UPDATE CASCADE ON DELETE CASCADE
)
</code></pre>
http://stackoverflow.com/questions/825001/is-there-an-or-m-for-classic-asp5Is there an OR/M for Classic ASP?Brian Boatright2009-05-05T14:01:35Z2009-05-05T14:26:14Z
<p>Is there an OR/M (object relational mapper) that can be used in Classic ASP? Even a simplified class object would be a great help in handling simple CRUD tasks.</p>
<p>Yes I know ASP.NET has many and I use a few of them for ASP.NET sites. However this is a legacy e-commerce site that uses ASP/VBScript and a total rewrite it not a possibility.</p>
http://stackoverflow.com/questions/304616/another-security-exception-on-godaddy-after-login-attempt3Another Security Exception on GoDaddy after Login attemptBrian Boatright2008-11-20T08:11:13Z2009-05-04T17:46:15Z
<p>Host: GoDaddy Shared Hosting</p>
<p>Trust Level: Medium</p>
<p>The following happens after I submit a valid user/pass. The database has read/write permissions and when I remove the login requirement on an admin page that updates the database work as expected.</p>
<p>Has anyone else had this issue or know what the problem is?
Anyone?</p>
<pre><code>Server Error in '/' Application.
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
System.Security.CodeAccessPermission.Demand() +59
System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy) +684
System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share) +114
System.Configuration.Internal.InternalConfigHost.StaticOpenStreamForRead(String streamName) +80
System.Configuration.Internal.InternalConfigHost.System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(String streamName, Boolean assertPermissions) +115
System.Configuration.Internal.InternalConfigHost.System.Configuration.Internal.IInternalConfigHost.OpenStreamForRead(String streamName) +7
System.Configuration.Internal.DelegatingConfigHost.OpenStreamForRead(String streamName) +10
System.Configuration.UpdateConfigHost.OpenStreamForRead(String streamName) +42
System.Configuration.BaseConfigurationRecord.InitConfigFromFile() +437
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
</code></pre>
http://stackoverflow.com/questions/810068/remote-desktop-just-displays-desktop-background-color-nothing-else/810140#8101400Answer by Brian Boatright for Remote Desktop just displays desktop background color nothing elseBrian Boatright2009-05-01T04:07:52Z2009-05-01T04:07:52Z<p>try reducing the colors to 16 bit or lower and turn off all the extras in the Remote Desktop connection settings.</p>
http://stackoverflow.com/questions/222999/how-to-persist-variable-on-postback2How to Persist Variable on PostbackBrian Boatright2008-10-21T18:48:58Z2009-04-28T11:02:50Z
<p>I created a single page (with code behind .vb) and created Public intFileID As Integer</p>
<p>in the Page load I check for the querystring and assign it if available or set intFileID = 0.</p>
<pre><code>Public intFileID As Integer = 0
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
If Not Request.QueryString("fileid") Is Nothing Then
intFileID = CInt(Request.QueryString("fileid"))
End If
If intFileID > 0 Then
GetFile(intFileID)
End If
End If
End Sub
Private Sub GetFile()
'uses intFileID to retrieve the specific record from database and set's the various textbox.text
End Sub
</code></pre>
<p>There is a click event for the Submit button that inserts or updates a record based on the value of the intFileID variable. I need to be able to persist that value on postback for it all to work.</p>
<p>The page simply inserts or updates a record in a SQL database. I'm not using a gridview,formview,detailsview, or any other rad type object which persists the key value by itself and I don't want to use any of them.</p>
<p>How can I persist the value set in intFileID without creating something in the HTML which could possibly be changed.</p>
<p><strong>[EDIT] Changed Page_Load to use ViewState to persist the intFileID value</strong></p>
<pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
If Not Request.QueryString("fileid") Is Nothing Then
intFileID = CInt(Request.QueryString("fileid"))
End If
If intFileID > 0 Then
GetFile(intFileID)
End If
ViewState("intFileID") = intFileID
Else
intFileID = ViewState("intFileID")
End If
End Sub
</code></pre>
http://stackoverflow.com/questions/741247/website-to-sell-or-swap-programming-and-technical-books1Website to Sell or Swap Programming and Technical Books?Brian Boatright2009-04-12T03:58:16Z2009-04-12T04:40:47Z
<p>What website's are available to sell or swap programming and technical Books?</p>
<p>I've found <a href="http://www.SwapTree.com" rel="nofollow">SwapTree.com</a> and <a href="http://www.PaperBackSwap.com" rel="nofollow">PaperBackSwap.com</a> </p>
<p><strong>Are there any that are specific to technical books?</strong></p>
http://stackoverflow.com/questions/717416/attach-dll-to-asp-net-site/717440#7174400Answer by Brian Boatright for Attach DLL to ASP.NET SiteBrian Boatright2009-04-04T17:20:50Z2009-04-04T17:20:50Z<p>Using Visual Studio you should create a Solution that has your website as a project and the DLL (code) as another project. Make a reference in the Website project to the DLL project and it should update it automatically. </p>
<p>If you are not using the Web Application model and just the Website model you could just have your DLL project output to your website's /bin directory directly. That will update the DLL in the website/bin folder whenever you build your DLL project.</p>
<p>If I could suggest, because I still use it, go to <a href="http://LearnVisualStudio.com" rel="nofollow">LearnVisualStudio.com</a> and check out the free video's. </p>
http://stackoverflow.com/questions/235960/vistadb-connection-issue-programmatically-using-sqlconnection-and-connectionstrin0VistaDB Connection Issue Programmatically using SQLConnection and ConnectionStringBrian Boatright2008-10-25T05:39:13Z2009-04-03T21:51:21Z
<p>I'm getting an error connecting to a VistaDB using a connection string in the web.config file.</p>
<p>It works fine using a SQLDataSource AFTER I specified the ProviderName. On another page I'm only connecting in code and </p>
<p><em>Here is the code for the connection string:</em></p>
<p>Public Function CreateConnection() As SqlConnection
_connectionString = ConfigurationManager.ConnectionStrings("ConnectionString").ToString()
Return New SqlConnection(_connectionString)
End Function</p>
<p><em>Here is the error:</em></p>
<blockquote>
<p>A network-related or instance-specific
error occurred while establishing a
connection to SQL Server. The server
was not found or was not accessible.
Verify that the instance name is
correct and that SQL Server is
configured to allow remote
connections. (provider: SQL Network
Interfaces, error: 26 - Error Locating
Server/Instance Specified)</p>
</blockquote>
<p><strong>How can I resolve this error?</strong></p>
http://stackoverflow.com/questions/710435/how-do-you-copy-the-contents-of-a-cell-into-the-clipboard0How do you copy the contents of a Cell into the ClipboardBrian Boatright2009-04-02T16:12:34Z2009-04-02T17:34:20Z
<p>I'm trying to copy the cell contents into the clipboard.</p>
<p>I've read and tried the exact example provided in the Excel 2007 Help file. However for some reason the DataObject object is not valid. So the example:</p>
<pre><code>Dim MyData As DataObject
Private Sub CommandButton1_Click()
Set MyData = New DataObject
MyData.SetText TextBox1.Text
MyData.PutInClipboard
TextBox2.Paste
End Sub
Private Sub UserForm_Initialize()
TextBox1.Text = "Move this data to a " _
& "DataObject, to the Clipboard, then to " _
& "TextBox2!"
End Sub
</code></pre>
<p>Does not work in my case. I've searched for a good while now and I can not find an answer to why the DataObject object is not available.</p>
<p>Here is my code:</p>
<pre><code>Dim MyData As DataObject
Private Sub Worksheet_Change(ByVal Target As Range)
If ActiveCell.Column = 3 Then
Set MyData = New DataObject
MyData.SetText ActiveCell.Offset(-1, -1).Text
MyData.PutInclipboard
End If
End Sub
</code></pre>
<p>Error on Compile is: "User-Defined type not defined" and it highlights the "MyData As DataObject" line.</p>
<p><strong>Is there another method to simply copying the text in a cell to the clipboard?</strong></p>
http://stackoverflow.com/questions/96818/best-jquery-book-jquery-in-action-vs-learning-jquery3Best jQuery Book: jQuery in Action vs. Learning jQueryBrian Boatright2008-09-18T20:51:53Z2009-03-16T19:24:35Z
<p>So I started using jQuery the other day and upon many blogger recommendations I placed my order for jQuery in Action at Amazon. Only to find out a day later, when I expected it to arrive, that it was out of stock.</p>
<p>If you have read both could you please recommend one over the other. Currently jQuery in Action is out of stock with Amazon and I'm considering ordering Learning jQuery or getting the PDF instead of a physical copy.</p>
http://stackoverflow.com/questions/627248/how-to-simulate-the-print-function-in-a-mysql-stored-procedure0How to simulate the Print function in a MySQL Stored ProcedureBrian Boatright2009-03-09T17:35:59Z2009-03-09T18:26:16Z
<p>I'm creating a MySQL Stored Procedure with a few cursors. I want to make sure the Insert/Update statements it will ultimately generate are correct before making it live.</p>
<p>I searched and could not find a PRINT or similar method to have it just send output back to the client, in my case <a href="http://www.webyog.com/en/" rel="nofollow">SQLyog Enterprise</a>.</p>
<p>I tried declaring a variable as TEXT and concatenating inside the loop but that does not work, at least not the way I was trying to do it.</p>
<pre><code>DECLARE _output TEXT;
DECLARE _ID INT DEFAULT 0;
DECLARE cur1 CURSOR FOR SELECT ID FROM CodeID;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1;
OPEN cur1;
REPEAT
FETCH cur1 INTO _ID;
IF NOT done THEN
SET _output = _ID; /*SEE ALT BELOW*/
END IF;
UNTIL done END REPEAT;
CLOSE cur1;
SELECT _output;
</code></pre>
<p>I've tried:
<strong>SET _output = _output + _ID</strong>
and <strong>SET _output = CONCAT(_output,_ID)</strong>
but they both just return NULL</p>
<p>Trying <strong>SET _output = _ID;</strong> will give me the last fetched row. Which is helpful but not entirely what I wanted.</p>
<p><strong><em>So what's the best way to have each fetched row output to screen to reproduce the MSSQL Print function in a MySQL Stored Procedure ?</em></strong></p>
http://stackoverflow.com/questions/36186/best-versioning-tools-to-use-for-photoshop-illustrator-and-related-binary-files4Best Versioning Tools to use for Photoshop/Illustrator and related binary files?Brian Boatright2008-08-30T17:31:20Z2009-03-06T17:33:47Z
<p>I previously asked about Version Cue 3 vs Subversion. I think this is a better question and someone suggested <a href="http://www.gridironsoftware.com/Flow/" rel="nofollow">http://www.gridironsoftware.com/Flow/</a> I hope this question will allow others to join in and suggest other tools or give specific recommendation to using Version Que versus other tools.</p>
http://stackoverflow.com/questions/425908/built-in-character-casing-functions-in-net/527113#5271130Answer by Brian Boatright for Built-In Character Casing functions in .NetBrian Boatright2009-02-09T04:27:51Z2009-02-09T04:27:51Z<p>This works in VB.NET</p>
<p>StrConv(Input, VbStrConv.ProperCase)</p>
http://stackoverflow.com/questions/516625/is-there-a-bayesian-filter-library-for-net3Is there a Bayesian filter library for .NETBrian Boatright2009-02-05T16:22:47Z2009-02-05T19:39:23Z
<p>Is there a Bayesian filter library for .NET?</p>
<p>I would like to setup a group of folders and have emails automatically moved to those folders based on what has been previously moved to the folder.</p>
<p>If you are familiar with FogBugz auto-sort, that's exactly what I would like to do.</p>
http://stackoverflow.com/questions/52583/best-tool-for-synchronizing-mysql-databases/510964#5109641Answer by Brian Boatright for Best tool for synchronizing MySQL databasesBrian Boatright2009-02-04T11:35:22Z2009-02-04T12:36:10Z<p>I've been using SQLyog for years now. Recently they released v8.0 which includes an updated interface and two very cool features the Query Profiler and SQL Formatter. The formatter was the reason I upgraded this year.</p>
<p><a href="http://www.webyog.com/en/sqlyog_feature_list.php" rel="nofollow">http://www.webyog.com/en/sqlyog_feature_list.php</a></p>
<p>Blog post with video and animated gif of the SQL Formatter in action
<a href="http://www.webyog.com/blog/2009/02/02/profile-and-format-mysql-queries-with-the-new-sqlyog-80/" rel="nofollow">http://www.webyog.com/blog/2009/02/02/profile-and-format-mysql-queries-with-the-new-sqlyog-80/</a></p>
<p>A few years ago I tried Navicat and the mysql manager but decided on SQLyog. I'm sure both products have been updated since but I'm still happy with SQLyog which is updated regularly.</p>
<p>[Update] - Just downloaded and installed NaviCat 8 for MySQL and was not impressed</p>
<p>After I added this post I reviewed and downloaded v8 of NaviCat for MySQL. In comparison with user interface of SQLyog there is no comparison. SQLyog is better and more intuitive. Especially with the two latest features mentioned earlier. Immediately I noticed how SQLyog keeps you in one window when trying to view the data of a table, while Navicat spawns a new window. The report builder and viewer is the only thing that would put Navicat above SQLyog IMHO, and I already have other means to handle reports using ASP.NET. Try both products and I think you'll agree with me. </p>
http://stackoverflow.com/questions/505322/hashtable-insert-failed-load-factor-too-high-asp-net-2-02Hashtable insert failed. Load factor too high. - ASP.NET 2.0Brian Boatright2009-02-02T22:54:15Z2009-02-02T23:02:23Z
<p>I received the following error while trying to login to a secured directory. As far as I know there are no large hashtables in use. The user login information is in the web.config file. Notice this is happening in .NET 2.0. I've searched and found references to this occurring in .net 1.0 or 1.1 environments but I haven't found a solution for it happening in 2.0+.</p>
<p>I need to figure out why this happened so I can avoid it in the future. I could just reset the server and maybe it goes away but I would prefer to understand why it happened.</p>
<p>Here is the entire error page as shown:</p>
<blockquote>
<p>Server Error in '/' Application.</p>
<p>Hashtable insert failed. Load factor
too high.</p>
<p>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. </p>
<p>Exception Details:
System.InvalidOperationException:
Hashtable insert failed. Load factor
too high.</p>
<p>Source Error: </p>
<p>An unhandled exception was generated
during the execution of the current
web request. Information regarding the
origin and location of the exception
can be identified using the exception
stack trace below.</p>
<p>Stack Trace: </p>
<p>[InvalidOperationException: Hashtable
insert failed. Load factor too high.]
System.Collections.Hashtable.Insert(Object
key, Object nvalue, Boolean add)
+2903977 System.Collections.Hashtable.set_Item(Object
key, Object value) +11<br />
System.ComponentModel.ReflectTypeDescriptionProvider.ReflectGetAttributes(Type
type) +323<br />
System.ComponentModel.ReflectedTypeData.GetAttributes()
+36 System.ComponentModel.DefaultTypeDescriptor.System.ComponentModel.ICustomTypeDescriptor.GetAttributes()
+50 System.ComponentModel.TypeDescriptor.GetAttributes(Type
componentType) +26<br />
System.Web.UI.ThemeableAttribute.IsTypeThemeable(Type
type) +98<br />
System.Web.UI.Control.ApplySkin(Page
page) +49<br />
System.Web.UI.Control.InitRecursive(Control
namingContainer) +2120286<br />
System.Web.UI.Control.InitRecursive(Control
namingContainer) +198<br />
System.Web.UI.Control.InitRecursive(Control
namingContainer) +198<br />
System.Web.UI.Control.InitRecursive(Control
namingContainer) +198<br />
System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean
includeStagesAfterAsyncPoint) +834</p>
<p>Version Information: Microsoft .NET
Framework Version:2.0.50727.1433;
ASP.NET Version:2.0.50727.1433</p>
</blockquote>
http://stackoverflow.com/questions/176627/are-there-any-tools-or-techniques-to-help-determine-the-exact-cause-of-a-nonsecur1Are there any tools or techniques to help determine the exact cause of a nonsecure page element error?Brian Boatright2008-10-06T23:19:17Z2009-01-30T17:28:42Z
<p>I run into this quite often where a new page is supposedly "tested" and ready to go. But as soon as I change the page from http to https (secure) mode I get the "This page contains both secure and nonsecure items." error.</p>
<p>Usually I can find the problem and fix it pretty quick. Today is different. I've checked every image reference and every javascript reference and their source and haven't found anything that should be causing this error.</p>
<p>Are there any developer tools or techniques that can point out specifically what is causing this error?</p>
http://stackoverflow.com/questions/437738/possible-encoding-issue-reading-htm-file-using-net-streamreader0Possible Encoding Issue Reading HTM File using .Net StreamreaderBrian Boatright2009-01-13T01:56:40Z2009-01-13T06:31:00Z
<p>I have an HTML file with a ® (copyright) and ™ (trademark) symbol in the text. These are just two among many other symbols. When I read the html file into a literal control it converts the symbols to something else.</p>
<p>The copyright symbol converts to � (open box in ff)
The trademark symbol converts to ™ (as expected)</p>
<pre><code>If (System.IO.File.Exists(FullName)) Then
Dim StreamReader1 As New System.IO.StreamReader(FullName)
Contents.Text = StreamReader1.ReadToEnd()
StreamReader1.Close()
End If
</code></pre>
<p>Contents is a <code><asp:Literal runat="server" ID="Contents"></asp:Literal></code> and it's the only control in the aspx page.</p>
<p>From some research I think this is related to the encoding but I don't know why it would change how to fix it. </p>
<p>The html file does not contain any Content-Type settings in the head section.</p>
http://stackoverflow.com/questions/42550/extract-address-information-from-a-web-page0Extract Address Information from a Web PageBrian Boatright2008-09-03T20:49:26Z2009-01-06T10:16:44Z
<p>I need to take a web page and extract the address information from the page. Some are easier than others. I'm looking for a firefox plugin, windows app, or VB.NET code that will help me get this done.</p>
<p>Ideally I would like to have a web page on our admin (ASP.NET/VB.NET) where you enter a URL and it scraps the page and returns a Dataset that I can put in a Grid.</p>
http://stackoverflow.com/questions/390727/how-to-initiate-a-vonage-call-using-a-hyperlink0How to Initiate a Vonage call using a HyperlinkBrian Boatright2008-12-24T04:19:38Z2008-12-24T18:01:33Z
<p>I'm just finishing a web page for our sales guy to quickly go through a list of contacts. </p>
<p>Is it possible to initiate a call from our Vonage line via a Hyperlink?</p>
<p>They offer an application called "Click-2-Call" but I hope it's possible to initiate it using only a Hyperlink.</p>
http://stackoverflow.com/questions/734700/database-use-with-extendscript-for-adobe-illustrator/1148095#1148095Comment by Brian Boatright on database use with ExtendScript (for Adobe Illustrator)Brian Boatright2009-07-28T05:09:41Z2009-07-28T05:09:41Zdo you have any more information or links about your second method?http://stackoverflow.com/questions/338156/table-naming-dilemma-singular-vs-plural-names/338690#338690Comment by Brian Boatright on Table Naming Dilemma: Singular vs. Plural NamesBrian Boatright2009-07-13T03:03:42Z2009-07-13T03:03:42Zstill getting down votes even after 8 months... odd.http://stackoverflow.com/questions/53132/mouse-for-programmer/53280#53280Comment by Brian Boatright on Mouse for programmerBrian Boatright2009-05-12T23:58:31Z2009-05-12T23:58:31ZI hate the clicking so I turned it off completely via the Logitech Mouse control panel. It's great to just free ball it ;-)http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844808#844808Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T17:32:18Z2009-05-10T17:32:18Ztrue. I did add something after the regex that returned the entire string if it was 10 digits or right(string,10) if it was longer. you last suggestion is a good one and something I will add. thanks! +1http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844479#844479Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T01:45:15Z2009-05-10T01:45:15ZI actually needed VBScript to use in a Classic ASP page but I appreciate your answer.http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844464#844464Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T01:28:32Z2009-05-10T01:28:32Zyou answer only works for strings that already only contain numbers which is why people are down voting you answer. you should consider editing your answer or deleting it so you do not get any further down votes.http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844479#844479Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T01:26:12Z2009-05-10T01:26:12Zthat's very cool. http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844471#844471Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T01:09:35Z2009-05-10T01:09:35ZThanks! That's exactly what I was looking to do. I knew it had to be somewhat simple. I'm using RegExBuddy and will try to test it and then post the VBScript code. I believe VBScript will do a replace.http://stackoverflow.com/questions/844461/return-only-digits-0-9-from-a-string/844468#844468Comment by Brian Boatright on return only Digits 0-9 from a StringBrian Boatright2009-05-10T01:06:59Z2009-05-10T01:06:59Zthat is what's in place but I wanted to make it match a wider range of input string.http://stackoverflow.com/questions/825001/is-there-an-or-m-for-classic-asp/825026#825026Comment by Brian Boatright on Is there an OR/M for Classic ASP?Brian Boatright2009-05-05T14:13:54Z2009-05-05T14:13:54Zthanks! I appreciate the edits and links.http://stackoverflow.com/questions/825001/is-there-an-or-m-for-classic-asp/825037#825037Comment by Brian Boatright on Is there an OR/M for Classic ASP?Brian Boatright2009-05-05T14:13:13Z2009-05-05T14:13:13Zthanks for the tutorial links.http://stackoverflow.com/questions/240905/best-asp-net-mvc-book/686268#686268Comment by Brian Boatright on Best ASP.NET MVC book?Brian Boatright2009-04-24T01:02:46Z2009-04-24T01:02:46Zhow did/do you get a preview copy?http://stackoverflow.com/questions/741247/website-to-sell-or-swap-programming-and-technical-books/741251#741251Comment by Brian Boatright on Website to Sell or Swap Programming and Technical Books?Brian Boatright2009-04-12T04:21:13Z2009-04-12T04:21:13ZIt is a good place to sell them but the fees are really high. $.99 listing fee + 15% of price + $1.35 closing and shipping credit may or may not cover the actual shipping costs because these tech books are so large and heavy. http://stackoverflow.com/questions/741247/website-to-sell-or-swap-programming-and-technical-books/741251#741251Comment by Brian Boatright on Website to Sell or Swap Programming and Technical Books?Brian Boatright2009-04-12T04:09:51Z2009-04-12T04:09:51ZI tried that actually yesterday. but after all the fees there wasn't much left. Also Amazon does not allow you to set the shipping and the shipping "credits" are not always enough. For instance someone from Australia wanted one of my books but I was only given $12.49 for shipping, at it costs $21.http://stackoverflow.com/questions/712220/whats-your-choice-for-your-next-asp-net-project-webforms-or-mvc/712253#712253Comment by Brian Boatright on What's your choice for your next Asp.Net project: WebForms or MVC?Brian Boatright2009-04-04T17:23:59Z2009-04-04T17:23:59Zthere is a rule I read somewhere that for Microsoft you should always wait for 2.0. I was getting into the MVC hype until I remembered my own experiences with trying to move from ASP to .NET 1.0/1.1. I'll switch when MVC 2.0 is released in a year. IMHO