User Bruno - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:24:14Zhttp://stackoverflow.com/feeds/user/17648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123085/bypass-net-v3-5-verification-when-installing-sql-server-2008-express1Bypass .Net v3.5 verification when installing SQL Server 2008 ExpressBruno2008-09-23T19:05:12Z2009-11-20T22:08:34Z
<p>For some reason, when I try to install SQL Server 2008 Express, I get an error saying that I need to have .Net Framework 3.5 installed first, but the thing is: I already have! So could anybody tell me if I can bypass this verification by updating a registry key or something? I have np with visual studio or any other thing... just when I try to install sql express.</p>
http://stackoverflow.com/questions/499872/ie6-bug-divs-height-increases-when-ahover-is-triggered2IE6 bug. Div's height increases when a:hover is triggeredBruno2009-02-01T00:23:58Z2009-10-01T12:31:14Z
<p>Hi,
I have a page that there is a list of "tags", just like here in SO, and when the mouse is over it, it gets darker.</p>
<p>It works great with Ie7, 8, FF, Chrome, Safari etc... but IE6 has a bug that when a:hover is triggered.</p>
<p>The bug is that the div that those (ul li a) are contained, gets a height's increase.</p>
<p>the css I have is:</p>
<pre><code>div.options ul.tags li a:hover
{
background-color: #D5E4A5;
}
</code></pre>
<p>if I delete this style or just comment "background-color: #D5E4A5;" it doesn't happen...</p>
<p>any idea of how to fix it?</p>
<p>thanks!</p>
<p>EDIT: Here's a screenshot of the bug:</p>
<p><img src="http://i38.tinypic.com/28bvhxf.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/594548/request-email-address-from-openid-provider3Request email address from OpenID providerBruno2009-02-27T12:27:04Z2009-09-20T02:32:29Z
<p>Hi,
I'm implementing OpenID and I would like to retrieve the user's email address and other information about the user, I'm doing this:</p>
<pre><code>var fetch = new FetchRequest();
fetch.AddAttribute(new AttributeRequest(WellKnownAttributes.Contact.Email));
request.AddExtension(fetch);
</code></pre>
<p>But the provider doesn't return anything. I'm using DotNetOpenID</p>
<p>What am I doing wrong?</p>
<p>thanks!</p>
<p>EDIT:</p>
<p>When I try to signup at <a href="http://www.plaxo.com/" rel="nofollow">http://www.plaxo.com/</a> using MyOpenID or Google, they both say plaxo is requesting additional information, but when I test my site they doesn't say anything...</p>
http://stackoverflow.com/questions/447413/get-inbox-message-from-exchange-server-using-net2Get inbox message from Exchange server using .netBruno2009-01-15T16:18:16Z2009-09-19T20:40:25Z
<p>Anybody knows how to do this?</p>
<p>I need to create a service that will connect to the exchange server and download the messages ever x minutes...</p>
<p>thanks!</p>
http://stackoverflow.com/questions/478639/catch-exceptions-in-jquery2Catch exceptions in jQueryBruno2009-01-26T01:23:10Z2009-09-11T17:18:45Z
<p>Hello, I have the following code:</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
$("#Save").click(function() {
$.post("url", {
"data": "data"
}, function(data) {
alert(data);
});
});
});
</script>
</code></pre>
<p>I'm testing this script, and one of the tests I'm making is, I just close the asp.net web development server, and click the button.</p>
<p>IE says "access denied" error, I want to catch any error that occurs here, and display a friendly message to the user in this case.</p>
<p>I trying to use try/catch but didn't work...</p>
<p>Any clue?</p>
http://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb4Avoiding upload of files larger than 10mbBruno2009-02-10T16:27:43Z2009-07-28T09:28:10Z
<p>Is there any way (probably a module) that can make IIS7 rejects a post with a file larger than 10mb?</p>
<p>My ASP.NET application has an upload page, and the file cannot be larger than 10mb, I believe that I can check the size of the file only after everything was already sent to the server.</p>
<p>An IIS7 module would be the right choice for this, anyone knows about one?</p>
http://stackoverflow.com/questions/511439/custom-date-format-with-jquery-validation-plugin1Custom date format with jQuery validation pluginBruno2009-02-04T13:50:07Z2009-06-23T17:34:03Z
<p>How can I specify a custom date formate to be validated with the <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">Validation Plugin</a> for jQuery?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/487430/validate-inputs-that-are-not-inside-a-form-with-jquery-validation-plugin0Validate inputs that are not inside a form with jQuery Validation pluginBruno2009-01-28T12:22:40Z2009-06-11T14:41:22Z
<p>How can I validate some inputs that are not inside a form tag?</p>
<p>All the samples I found have a form tag, but I want to validate some inputs that are not inside a form.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/902147/should-games-rely-on-frame-rate-only1Should games rely on frame rate only?Bruno2009-05-23T18:34:19Z2009-05-23T21:11:16Z
<p>Hello,
I would like your suggestion about this problem...</p>
<p>To make it simple, I'll consider only the x axis.</p>
<p>Image an object in position 10, and its width also 10 units, which is moving forward 100 units per second, and due to low frame, on each update it should move 80 units.</p>
<p>After the first update is called, its position is now 90 and there is another object of the same size in position 120.</p>
<p>The next update, will move the object to position 170. Considering that I need to implement collision detection, calculating the collision before or after Update, none will work.</p>
<p>Now comes a simple question...</p>
<p>What to do in this case?</p>
<p>Do something like:</p>
<pre><code>Position start = destinationPos - currentPos;
for (int i; i < start; i++)
if (IsColliding(movingObj.Position + i, staticObj))
//do the colliding stuff here
</code></pre>
<p>I don't like this solution, it may be okay for this case, but what if you have x, y, z and a lot of moving objects?</p>
<p>Another solution that I thought would be good, but I'm not sure if it's reliable, is to have another thread doing all this calculations in a loop.</p>
<p>This thread would be something like an infinite loop, and on each iteration I would calculate the <code>elapsedTime</code> which I believe would be very small and keep moving and calculation the collisions, and the rendering thread, which would be much more slower, would get the current state of the objects and just render it.</p>
<p>What you guys think?</p>
http://stackoverflow.com/questions/712295/how-to-implement-a-secured-download-system1How to implement a secured download system?Bruno2009-04-03T01:55:05Z2009-04-29T18:42:47Z
<p>What's the best way to implement a download system?</p>
<p>It needs to be integrated with an asp.net application.</p>
<p>I need the following features:</p>
<ol>
<li>Deliver files larger than 50mb</li>
<li>Only users authorized by an asp.net login page can download</li>
<li>Need to know if the user downloaded the whole file, or part of it</li>
<li>Once the file is downloaded or canceled, the same url will not be available again</li>
</ol>
<p>It's something similar to rapidshare I believe, but integrated with an asp.net application.</p>
<p>What would you guys suggest?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/720508/help-with-deadlock-in-sql-server-20081Help with deadlock in Sql Server 2008Bruno2009-04-06T07:39:14Z2009-04-14T01:26:18Z
<p>Hi,</p>
<p>My website doesn't seem to handle a high number of visitors, I believe it's because the server is too simple.</p>
<p>2 hours ago my website was getting a lot of hits and I noticed that 3 deadlock errors occured, the error is:</p>
<p><strong>System.Data.SqlClient.SqlException
:
Transaction (Process ID 58) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.</strong></p>
<p>I'm not sure why this happened... Looking at the stack trace, I could see that this happened with a select query.</p>
<p>Anyone knows what may be the cause of this error?</p>
<p>The server is running Windows 2008 and Sql Server 2008.</p>
http://stackoverflow.com/questions/166557/a-good-database-modeling-tool5A good database modeling tool?Bruno2008-10-03T12:23:13Z2009-03-22T11:02:51Z
<p>Could you guys recommend me a good db modeling tool? Mainly for SQL Server...</p>
<p>thanks!</p>
http://stackoverflow.com/questions/640225/google-chrome-doesnt-show-openid-selector0Google Chrome doesn't show openid-selectorBruno2009-03-12T19:57:08Z2009-03-12T20:35:15Z
<p>Hi,
does anybody have this problem?</p>
<p>I tested my page with IE6, IE7, IE8, FF, Safari, Opera... it works with them, but Chrome just doesn't render it...</p>
<p>any help?</p>
http://stackoverflow.com/questions/595434/how-can-i-change-the-returnurl-for-openid1How can I change the ReturnUrl for OpenID?Bruno2009-02-27T16:19:11Z2009-03-12T16:07:52Z
<p>When an user clicks a link in my site that requires authentication, the browser is redirected to the login page. The login page includes a returnUrl querystring parameter. The problem is that if the user authenticates using OpenID, the providers redirects the user back to the login page and doesn't include the returnUrl parameter, which is pretty boring because I redirect the user to the home page instead of the page that was tried.</p>
<p>I'm using DotNetOpenID, is there a way to fix this?</p>
http://stackoverflow.com/questions/567015/html-compressor-for-asp-net2Html Compressor for asp.netBruno2009-02-19T20:33:17Z2009-02-19T20:37:45Z
<p>Anyone knows a good way or tool to compress the html that is sent to the client?</p>
<p>I was thinking in compressing the html in the .aspx files in the production server only, so maybe a tool for doing this would be the right choice.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/495050/list-of-css-features-not-supported-by-ie69List of CSS features not supported by IE6Bruno2009-01-30T10:24:18Z2009-02-02T15:07:01Z
<p>Hello,
I just finished slicing and coding a very nice table-less css template for my website, all the time I was testing with IE7 and Chrome.</p>
<p>Then I just had the brilliant idea of testing this template with IE6, I installed Windows XP on a Virtual PC and then I opened my website on IE6.</p>
<p><strong>It looks extremely bad!</strong></p>
<p>The format of my page looked like garbage, nothing displaying correctly like in IE7 and Chrome. I knew that some things were not supported by IE6, but I didn't think that my page would render like it did.</p>
<p>So I would like to know if there is a place where I can see what is not supported by IE6 so I can fix my CSS or even create a new one only for IE6.</p>
<p>Any info will be very helpful!</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/499872/ie6-bug-divs-height-increases-when-ahover-is-triggered/500053#5000531Answer by Bruno for IE6 bug. Div's height increases when a:hover is triggeredBruno2009-02-01T02:38:08Z2009-02-01T02:38:08Z<p>Hi everybody,
just fixed it! :D</p>
<p>what I had before was:</p>
<pre><code><div class="options clearfix">
<!--content here-->
</div>
</code></pre>
<p>and I replaced for:</p>
<pre><code><div class="options">
<div class="clearfix">
<!--content here-->
</div>
</div>
</code></pre>
<p>Now IE6 is happy, and I'm happy as well...</p>
<p>Thank you everybody for your help!</p>
http://stackoverflow.com/questions/346263/how-to-intercept-connection-requests0How to Intercept connection requests?Bruno2008-12-06T13:21:38Z2009-01-16T11:42:57Z
<p>Hello,
I'm working on an app that needs to intercept when a program tries to connect to an specified IP address and redirects it to another IP.</p>
<p>Is this possible?</p>
<p>I'm using .net for this.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/360129/get-the-response-headers-from-a-webservice-call0Get the response headers from a WebService call?Bruno2008-12-11T17:08:55Z2009-01-05T20:38:23Z
<p>Is there a way to get the responde headers from a web service call on .net?</p>
http://stackoverflow.com/questions/346390/default-action-gets-404-for-only-one-page-asp-net-mvc/346398#3463982Answer by Bruno for Default action gets 404 for only one page (asp.net mvc)Bruno2008-12-06T15:35:45Z2008-12-06T15:35:45Z<p>if you could post your routings we could help you better, but for now I'd suggest you to debug it using the <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">Routing Debugger</a>.</p>
http://stackoverflow.com/questions/334535/debug-asp-pages-with-visual-studio-20050Debug .asp pages with visual studio 2005Bruno2008-12-02T16:19:22Z2008-12-05T18:03:59Z
<p>I'm migrating a website made in classic asp to asp.net, but the asp.net dev server doesn't handle .asp pages.</p>
<p>Is it possible to make it run .asp pages? Maybe a custom httphandler for .asp?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/343466/does-dot-net-have-an-interface-like-ienumerable-with-a-count-property/343474#3434742Answer by Bruno for Does dot net have an interface like IEnumerable with a Count property?Bruno2008-12-05T10:50:35Z2008-12-05T10:50:35Z<p>Since it's an interface, you would have to implement the Count property yourself, why don't you create a new interface that inherits IEnumerator and add a Count property?</p>
http://stackoverflow.com/questions/343450/job-change-to-get-more-time-programming/343455#3434553Answer by Bruno for Job change, to get more time programmingBruno2008-12-05T10:42:05Z2008-12-05T10:42:05Z<p>I was in a similar situation that ended when I decided to make it clear that "I have a life as well". My boss got pissed off but I'm still here.</p>
http://stackoverflow.com/questions/328914/how-to-check-if-my-isp-blocks-port-25/328916#3289164Answer by Bruno for How to check if my ISP blocks port 25?Bruno2008-11-30T14:48:04Z2008-11-30T14:48:04Z<p>Hi, have a look:</p>
<p><a href="http://www.canyouseeme.org/" rel="nofollow">http://www.canyouseeme.org/</a></p>
http://stackoverflow.com/questions/326262/how-to-make-a-folder-in-windows-explorer-activate-an-external-application0How to make a folder in windows explorer activate an external application?Bruno2008-11-28T17:23:04Z2008-11-28T17:35:30Z
<p>Hello,</p>
<p>I need to create an application that when a user copies a file into an specific folder, my application will be activated and the file will be changed, also, when the user reads back any file in the folder, changes will also be made to the file.</p>
<p>Is it possible?</p>
<p>I'll use .net for this.</p>
<p>I think the folder C:\WINDOWS\assembly is somehow like this?</p>
<p>Any help will be appreciated!
Thanks!</p>
http://stackoverflow.com/questions/287581/crystal-reports-problem0Crystal Reports problemBruno2008-11-13T17:23:07Z2008-11-13T21:26:59Z
<p>Hi,
I'm having problem in the following line:</p>
<pre><code>rd.PrintOptions.PaperSize = PaperSize.PaperFanfoldStdGerman;
</code></pre>
<p>it throws an exception saying HRESULT: 0x8002000B (DISP_E_BADINDEX)) </p>
<p>if I skip this line, the same error eccurs here:</p>
<pre><code>rd.PrintOptions.ApplyPageMargins(config)
</code></pre>
<p>Did anyone have this problem before?
thanks!</p>
http://stackoverflow.com/questions/287581/crystal-reports-problem/288391#2883910Answer by Bruno for Crystal Reports problemBruno2008-11-13T21:26:59Z2008-11-13T21:26:59Z<p>Fixed!</p>
<p>The problem was a field that did not exist in the DataSet.</p>
http://stackoverflow.com/questions/211758/set-a-sp-return-value-to-a-variable-in-sql-server0Set a SP return value to a variable in SQL ServerBruno2008-10-17T11:11:04Z2008-10-17T12:06:40Z
<p>Hi,
I have a sproc that returns a single line and column with a text, I need to set this text to a variable, something like:</p>
<pre><code>declare @bla varchar(100)
select @bla = sp_Name 9999, 99989999, 'A', 'S', null
</code></pre>
<p>but of course, this code doesn't work...</p>
<p>thanks!</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/210367#2103671Answer by Bruno for Best tools for creating website wireframesBruno2008-10-16T21:24:03Z2008-10-16T21:24:03Z<p><a href="http://www.axure.com/" rel="nofollow">Axure</a> is a good one, not free tho...</p>
http://stackoverflow.com/questions/197362/select-products-where-the-category-belongs-to-any-category-in-the-hierarchy5Select products where the category belongs to any category in the hierarchyBruno2008-10-13T12:10:41Z2008-10-15T22:08:24Z
<p>I have a products table that contains a FK for a category, the Categories table is created in a way that each category can have a parent category, example:</p>
<pre><code>Computers
Processors
Intel
Pentium
Core 2 Duo
AMD
Athlon
</code></pre>
<p>I need to make a select query that if the selected category is Processors, it will return products that is in Intel, Pentium, Core 2 Duo, Amd, etc...</p>
<p>I thought about creating some sort of "cache" that will store all the categories in the hierarchy for every category in the db and include the "IN" in the where clause. Is this the best solution?</p>
http://stackoverflow.com/questions/712295/how-to-implement-a-secured-download-system/712312#712312Comment by Bruno on How to implement a secured download system?Bruno2009-04-03T02:05:12Z2009-04-03T02:05:12Znever heard of lighttpd... I'll look for more info, thanks!http://stackoverflow.com/questions/595434/how-can-i-change-the-returnurl-for-openid/595618#595618Comment by Bruno on How can I change the ReturnUrl for OpenID?Bruno2009-02-27T17:05:51Z2009-02-27T17:05:51ZI made it similar to yours, but the problem is that when the provider redirects the user back to my authenticate action, the returnUrl parameter is gone... so RedirectFromLoginPage doesn't work...http://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb/533052#533052Comment by Bruno on Avoiding upload of files larger than 10mbBruno2009-02-10T16:31:36Z2009-02-10T16:31:36Zbut will it avoid the file to be uploaded first and then the size checked? i.e. throws an exception right after the headers are sent?http://stackoverflow.com/questions/495050/list-of-css-features-not-supported-by-ie6/503078#503078Comment by Bruno on List of CSS features not supported by IE6Bruno2009-02-02T13:03:29Z2009-02-02T13:03:29ZI'm using "XHTML 1.0 Strict", is it ok?http://stackoverflow.com/questions/499872/ie6-bug-divs-height-increases-when-ahover-is-triggeredComment by Bruno on IE6 bug. Div's height increases when a:hover is triggeredBruno2009-02-01T02:16:31Z2009-02-01T02:16:31Zok, still a lot left to do, I'll upload the .html + css files and update this question as soon as I do... thanks!http://stackoverflow.com/questions/499872/ie6-bug-divs-height-increases-when-ahover-is-triggered/499957#499957Comment by Bruno on IE6 bug. Div's height increases when a:hover is triggeredBruno2009-02-01T01:52:07Z2009-02-01T01:52:07Zdidn't work..... tried zoom:1 everywhere and also position:relative.... thanks for trying!!http://stackoverflow.com/questions/487430/validate-inputs-that-are-not-inside-a-form-with-jquery-validation-plugin/487481#487481Comment by Bruno on Validate inputs that are not inside a form with jQuery Validation pluginBruno2009-01-28T12:54:57Z2009-01-28T12:54:57ZI tried using a div but didn't work... thanks!http://stackoverflow.com/questions/343115/regexp-for-finding-everything-between-a-and-a-tags/343464#343464Comment by Bruno on regexp for finding everything between <a> and </a> tagsBruno2008-12-05T10:46:38Z2008-12-05T10:46:38ZVery nice tool...http://stackoverflow.com/questions/334535/debug-asp-pages-with-visual-studio-2005/334570#334570Comment by Bruno on Debug .asp pages with visual studio 2005Bruno2008-12-02T16:30:04Z2008-12-02T16:30:04ZI just tried with vwd2008, doesn't handle .asp page... says file type is not servedhttp://stackoverflow.com/questions/320268/html-actionlink-doesnt-render-properlyComment by Bruno on Html.ActionLink doesn’t render # properlyBruno2008-11-26T12:29:15Z2008-11-26T12:29:15Zhappens to me as well...http://stackoverflow.com/questions/287581/crystal-reports-problem/287608#287608Comment by Bruno on Crystal Reports problemBruno2008-11-13T17:30:29Z2008-11-13T17:30:29Zhi, the line before is rd.SetDataSource(dsReport); but what would be wrong with this?http://stackoverflow.com/questions/211758/set-a-sp-return-value-to-a-variable-in-sql-server/211778#211778Comment by Bruno on Set a SP return value to a variable in SQL ServerBruno2008-10-17T11:21:16Z2008-10-17T11:21:16Zthe problem is that I can't change the procedure's code...http://stackoverflow.com/questions/197362/select-products-where-the-category-belongs-to-any-category-in-the-hierarchy/197403#197403Comment by Bruno on Select products where the category belongs to any category in the hierarchyBruno2008-10-13T12:49:49Z2008-10-13T12:49:49Zright, but there is no limit in the category depth in my db schema... maybe the "cache" solution is the best option for now.. thanks anyway!http://stackoverflow.com/questions/180684/map-domain-com-to-a-single-addressComment by Bruno on Map *.domain.com to a single addressBruno2008-10-07T22:26:48Z2008-10-07T22:26:48Zit was already closed... thanks anyway!http://stackoverflow.com/questions/166557/a-good-database-modeling-tool/166606#166606Comment by Bruno on A good database modeling tool?Bruno2008-10-03T15:07:40Z2008-10-03T15:07:40ZCase Studio is good, now it's not really good anymore after it became TDM...