User Jesper Blad Jensen aka. Deldy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:13:46Zhttp://stackoverflow.com/feeds/user/11559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461361/asp-net-mvc-framework-automatically-send-e-mail/461399#4613990Answer by Jesper Blad Jensen aka. Deldy for asp.net mvc framework, automatically send e-mailJesper Blad Jensen aka. Deldy2009-01-20T14:03:03Z2009-11-20T09:26:48Z<p>Well its not really hard to send a Email using .NET. You can just send the mail from inside your action.</p>
<p>But, I think we talk little about logging here, and for logging there is a range of 3th party libraries. I know there is one called Log4Net.</p>
<p>Most of these logging frameworks makes it possible to config how logs are stored, and porsibly also a setting to send a email, when it logs something.</p>
<p>But in your scenario, it would just write a plain simple mail function, that sends the mail, when the user enters the action. You can make look at: <a href="http://www.developer.com/net/asp/article.php/3096831" rel="nofollow">http://www.developer.com/net/asp/article.php/3096831</a> - its a demo of sending a mail using .NET - webforms though, but the basic things still apply to MVC.</p>
http://stackoverflow.com/questions/751411/need-to-implement-expiration-date-for-beta-software-c/751545#7515457Answer by Jesper Blad Jensen aka. Deldy for Need to implement "expiration date" for beta software C#Jesper Blad Jensen aka. Deldy2009-04-15T12:52:07Z2009-04-15T13:15:06Z<p>No matter what you do - people will always be able to hack your software. If you at some point give them the key they will always be able to revert to the state where the key was still valid (for example ghosting). Then you are offline you cant use a outside enviroment automaticly to check for exspireration. The best thing you can do is to store a counter in two different logic places for example in the registry and on a special folder on disk. If only one exist or they dont match, take the most expired one, and save that back to the places. </p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744060#7440601Answer by Jesper Blad Jensen aka. Deldy for What Should Be in a 2D Game Engine?Jesper Blad Jensen aka. Deldy2009-04-13T14:28:47Z2009-04-15T11:47:54Z<ul>
<li>Animation framework so that you can say: take this sprite, move it in this direction, folowing this path using this speed, acceleration and such</li>
<li>Basic GUI system. Don't implement a whole Windows, but basic things like a pointer and a button, and such - keep it basic</li>
<li>Debugging component for displaying FPS, numbers of sprites and such</li>
</ul>
<p>Also a good thing is to make some games, and then you will quicky see what things you repeat doing for each game, and then look into how to can get that into the engine. </p>
http://stackoverflow.com/questions/647462/best-way-to-organize-dependant-projects/647472#6474721Answer by Jesper Blad Jensen aka. Deldy for Best way to organize dependant projects?Jesper Blad Jensen aka. Deldy2009-03-15T08:13:26Z2009-03-15T08:13:26Z<p>If you use Subversion as a Source Control system, you can use <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">SVN Externals</a> to do this.
That way they will automaticly pull the new versions of your utilities, when they do a root update of there folder. You can also give them the Source Control, in a read only way, so they can look at the utility code, but they dont have the right to commit changes.</p>
<p>We use this at work, and it works perfectly. But be aware, that sometimes you don't want to update your utilities every time you do an update, as you may be breaking something by using the new version. This is something that your company must have a way to handle. We have SVN Branches (or tags) for mayor versions of the utilities, so if we change something mayor, we make a new version, and people will then have to manually change their SVN External to point to the new version if they wish.</p>
http://stackoverflow.com/questions/621794/how-does-stackoverflow-escape-tag-names-in-urls/621820#6218200Answer by Jesper Blad Jensen aka. Deldy for How does Stackoverflow escape tag names in urlsJesper Blad Jensen aka. Deldy2009-03-07T13:09:29Z2009-03-07T13:09:29Z<p>If i recal correctly, then will actionlink automaticly encode the values on the url, so just remove the Html.Encode(tagName), and it should look nicely.</p>
http://stackoverflow.com/questions/550350/appropriate-vs-project-for-multiple-net-sites/550447#5504471Answer by Jesper Blad Jensen aka. Deldy for Appropriate VS Project for Multiple .Net SitesJesper Blad Jensen aka. Deldy2009-02-15T07:07:10Z2009-02-15T07:07:10Z<p>A whole other way to share the code between the websites is though webservices that run locally, and closed for outsiders to see. That way, you share functionality, but only have one update point for the logic - but then again, this make it hard to upgrade your code, as you need to make sure, that none of your websites will break, when chaning code, and fix bugs etc.</p>
<p>For multiple sites in one solution, then yes. You can have milions of website projects in the same solution. There are two website options: Website and Web Application.</p>
http://stackoverflow.com/questions/498597/linq-is-it-possible-with-dynamic-linq-to-dynamically-specify-the-from-clause/498642#4986420Answer by Jesper Blad Jensen aka. Deldy for LINQ - Is it possible with dynamic LINQ to dynamically specify the from clause?Jesper Blad Jensen aka. Deldy2009-01-31T10:58:30Z2009-01-31T10:58:30Z<p>I think you are porsible comming fresh from the SQL world (guess), and then yes, the first thing you want to do is to build the query from strings (i wanted that too). But in Linq we really dont like string anyware, so if you someway can send the type of table to query, instead of the string name, then Linq will be happy, and you have compiler time checking of your query works. Its a win-win situation :)</p>
<p>So yes, give os some exsample of why you really want the table name as a string :)</p>
http://stackoverflow.com/questions/73902/asp-net-mvc-components4ASP.NET MVC "Components"Jesper Blad Jensen aka. Deldy2008-09-16T15:57:52Z2009-01-18T09:23:19Z
<p>Is there someway to have a part of the page that renders like a little sub-page, like components. For example if I have a shopping cart on all my pages?</p>
<p>Thanks in advance :)</p>
http://stackoverflow.com/questions/454863/what-is-better-css-hacks-or-browser-detection/454867#4548672Answer by Jesper Blad Jensen aka. Deldy for What is better: CSS hacks or browser detection?Jesper Blad Jensen aka. Deldy2009-01-18T09:22:48Z2009-01-18T09:22:48Z<p>Well hacks are quicker for the browser, but browser detection gives better readablity in your CSS if you structure it right.
If you can make browser detection and at the same time can share the CSS between the browsers, and only have the different css in seperate files or whatever, then I would use browser detection - as this is something a newbie can understand, where CSS hacks is hard to understand if you don't know them</p>
http://stackoverflow.com/questions/453036/ui-composition-in-asp-net-mvc/454862#4548625Answer by Jesper Blad Jensen aka. Deldy for UI composition in ASP.NET MVCJesper Blad Jensen aka. Deldy2009-01-18T09:17:26Z2009-01-18T09:20:42Z<p>There is two ways you can do this:</p>
<p>One: Make a BaseController, that allways gets the data needed for these components, set the ViewData["loginbox"] = loginBoxData, and then you can pass it along like so.</p>
<pre><code><% foreach (var component in GetComponents()) {%>
<%= Html.RenderPartial(component.ViewName, ViewData[component.Name])%>
<%} %>
</code></pre>
<p>The problem about this method is that you need to have logic to say WHEN all these data needed for the components is going to be fetched, and when not to. </p>
<p>TWO:</p>
<p>There is a MVC Futures DLL that you can download from <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=18459" rel="nofollow">here</a>.</p>
<p>It you reference that, and remember to add its namespace to your web.config, then you should be able to say: <code>Html.RenderAction("blah")</code> - this method makes the full trip by contacting a controller, initiate the view, and returns the HTML.</p>
http://stackoverflow.com/questions/428870/what-are-the-possibly-situations-that-net-viewstate-could-stop-working/428898#4288981Answer by Jesper Blad Jensen aka. Deldy for What are the possibly situations that .net Viewstate could stop working?Jesper Blad Jensen aka. Deldy2009-01-09T17:12:55Z2009-01-09T17:12:55Z<p>Are you SURE that you make a postback?</p>
<p>Do it write "Viewstate is empty"? Or just nothing?</p>
http://stackoverflow.com/questions/427514/is-it-possible-to-hyperlink-mail-text-to-an-exe-residing-at-a-remote-system-in-th/427535#4275351Answer by Jesper Blad Jensen aka. Deldy for Is it possible to hyperlink mail text to an Exe residing at a remote system in through C# windows application (mail sent through SMTP server)?Jesper Blad Jensen aka. Deldy2009-01-09T09:46:45Z2009-01-09T09:54:22Z<p>Im not use about your question, but if you need to link to a EXE file on another computer like:</p>
<p>Computer A has a EXE file, computer A sends a email to Computer B, with a hyperlink to the EXE file
Computer B runs the EXE file on own computer, or make Computer A run the EXE file</p>
<p>Sorry, but that is not possible. If you need to make a EXE file run on a email, just must send it as a attachment, and the user must save the exe file, and run it - you can't do anything automatic like that.</p>
http://stackoverflow.com/questions/409616/screencasts-vs-articles-which-do-you-prefer/410076#4100761Answer by Jesper Blad Jensen aka. Deldy for Screencasts vs Articles - which do you prefer?Jesper Blad Jensen aka. Deldy2009-01-03T23:22:13Z2009-01-03T23:22:13Z<p>When i decide i think about how many screenshots a article should take. Is it more screenshots than text - make a short screencast else make an article. Screencasts should be short, and all relevant text and code must be downloadable.</p>
http://stackoverflow.com/questions/406431/visual-studio-html-editor-curly-bracket-annoyance/406551#4065511Answer by Jesper Blad Jensen aka. Deldy for Visual Studio HTML editor curly bracket annoyanceJesper Blad Jensen aka. Deldy2009-01-02T11:34:35Z2009-01-02T11:34:35Z<p>Well its not really a sollution, but what i do is that i hit Ctrl+x to undo, and it will undo the formatting - there is not another way that i know off, other that changed it in all C# documents.</p>
http://stackoverflow.com/questions/163562/wiki-style-text-formatting4Wiki style text formattingJesper Blad Jensen aka. Deldy2008-10-02T17:29:49Z2008-12-31T13:55:47Z
<p>Hi,</p>
<p>I'm looking for some kind of text-parser for ASP.NET that can make HTML from some style of text that uses a special format. Like in Wiki's there is some special syntax for headings and such. I have tried to look on google, but I did not found anything for .NET.</p>
<p>Do someone know about a library for .NET that can parse the text to HTML wiki-style? I't don't have to be the same syntax as a Wiki? If no, how whould be the best way to design such a system your self?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/371386/strange-caching-problem-with-asp-net-mvc/371407#3714070Answer by Jesper Blad Jensen aka. Deldy for Strange caching(?) problem with ASP.Net MVC.Jesper Blad Jensen aka. Deldy2008-12-16T14:12:54Z2008-12-16T14:12:54Z<p>I don't really know about what problem you are facing, but try to use TempData instead of Session.</p>
http://stackoverflow.com/questions/336329/moving-towards-ruby-on-rails-from-asp-net/336362#3363621Answer by Jesper Blad Jensen aka. Deldy for Moving towards Ruby on Rails from ASP.NETJesper Blad Jensen aka. Deldy2008-12-03T06:42:56Z2008-12-03T06:42:56Z<p>Well I dont know anything about the Scalability part, but personaly i started learning Ruby On Rails from ASP.NET a while ago. I really had a hard time finding some good documentation - the class documentation on Rails site was really poor in my eyes, and I had a simple question about what arguments you could put into an actionlink. But maybe it was just me who never found the right place. But personally i think that the ASP.NET documentation is better than rails - at least buy a book, i think thats a good way to go.</p>
<p>Number 3. Im pritty sure that there is very good Community Support for rails you just have to find the right forum or other media that suites your liking - maybe this what was I did wrong.</p>
<p>Number 4. There is alot of hosting solutions for Rails, but not as much as ASP.NET or PHP. I think you have to research this your self, and find out, if there is anything that suites your likeing.</p>
<p>Number 5. Ruby should be very easy to deploy, it has a notion of a development, test and production database. It uses migrations, so updates in the database schema is seamless - thats very cool. It is scripting, so it should be a matter of xcopy from the development computer to the production server.</p>
<p>The reason you should choose Ruby on Rails is if you like the MVC pattern. The MVC pattern is genius, and ruby is a great language when you learn it. Maybe take a dive into the ASP.NET MVC, and see what its like - then maybe move to Rails. Then you only have to learn a new language, and not a new arhitecture, framework and language at the same time.</p>
<p>Remmember this is from a ASP.NET Developer who sniffed to Rails, but gave up, doe to the lack of ability to find really good documentation, and there was always some strange errors, from the editor or Rails - but thats properbly a newbie thing :)</p>
<p>But if you have time, by all means learn it. Some developers say that we should learn one new language per year, and Ruby is a great candidate for that.</p>
http://stackoverflow.com/questions/148143/is-there-anyway-to-tell-visual-studio-not-to-open-all-the-documents-when-i-load-s15Is there anyway to tell Visual Studio not to open all the documents when I load solution?Jesper Blad Jensen aka. Deldy2008-09-29T09:56:29Z2008-11-13T16:33:58Z
<p>When you open a solution in Visual Studio 2008 (or ealier versions for that matter), it opens all the documents that you did not close before you closed Visual Studio. Is there anyway to turn this functionality off, or a plugin that fixes this behavior? It takes forever to load a solution with 50 files open?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110906#1109061Answer by Jesper Blad Jensen aka. Deldy for How do you code the "Hello World!" program in your favourite language?Jesper Blad Jensen aka. Deldy2008-09-21T12:31:46Z2008-10-25T08:12:05Z<p>Rich Text Format (.rtf):</p>
<p>{\rtf1\ansi\ansicpg1252\deff0\deflang1030{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
\viewkind4\uc1\pard\f0\fs20 Hello world!\par
}</p>
http://stackoverflow.com/questions/221595/how-do-i-get-a-button-that-is-inside-an-aspupdatepanel-to-update-the-whole-page/221717#2217175Answer by Jesper Blad Jensen aka. Deldy for How do I get a button that is inside an asp:UpdatePanel to update the whole page?Jesper Blad Jensen aka. Deldy2008-10-21T12:51:18Z2008-10-21T12:51:18Z<p>Try adding a PostBackTrigger to the first UpdatePanel, for the secound button. That will tell that update panel, that the button should make a full postback.</p>
http://stackoverflow.com/questions/221120/asp-net-mvc-ready-for-business-applications-integrating-3rd-party-controls-compo/221136#2211362Answer by Jesper Blad Jensen aka. Deldy for ASP.NET MVC ready for business applications (integrating 3rd party controls/components)?Jesper Blad Jensen aka. Deldy2008-10-21T08:18:05Z2008-10-21T08:18:05Z<p>If they use the ASP.NET Control Model (That will be about 99,9% of controls written by ASP.NET Control vendors), they have to rewrite their controls. How much work there is in that, is very different depending of there arhitecture of their controls - the more ajax they already use, the more posible it is that they easily can change it to MVC.</p>
<p>ASP.NET AJAX Control toolkit for exsample can work with MVC. You can see how to do this in a video on WWW.ASP.NET: <a href="http://www.asp.net/learn/mvc-videos/video-373.aspx" rel="nofollow">http://www.asp.net/learn/mvc-videos/video-373.aspx</a> </p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214828#2148285Answer by Jesper Blad Jensen aka. Deldy for Should I agree to ban the "using" directive from my c# projects?Jesper Blad Jensen aka. Deldy2008-10-18T09:45:50Z2008-10-18T09:45:50Z<p>Because we have the tool in C# for auto-setting the using statement, by pressing Ctrl+dot - I can't see any reason not to use it. The other "cool" thing here, is:</p>
<p>Think about you have a two namespaces:</p>
<p>ConsoleNamespace1</p>
<p>and</p>
<p>ConsoleNamespace2</p>
<p>Both have a Console class, now you can change all the refferences to ConsoleNamespace2, with just a single line of code - thats cool.</p>
<p>My adwice: Use using if you can, the full if you must. I don't think the fully one, if easier to read. Know your framework, and this will never be a problem.</p>
http://stackoverflow.com/questions/214818/what-software-to-use-for-virtual-machine-for-windows-development/214823#2148231Answer by Jesper Blad Jensen aka. Deldy for What software to use for virtual machine for Windows development?Jesper Blad Jensen aka. Deldy2008-10-18T09:38:32Z2008-10-18T09:38:32Z<p>Well. You have 4gig of ram in that MacBook, then Vista should be okay - and maybe even be faster in VS, if you give it about 2gig of your ram.</p>
<p>And about the version of Visual Studio, then the Express should be more fine. There is no GUI differences in the tools (that i know off, I only work in .NET, not in native)</p>
http://stackoverflow.com/questions/191084/linq-practice-exercises-or-puzzles/191095#1910952Answer by Jesper Blad Jensen aka. Deldy for LINQ practice exercises or puzzles?Jesper Blad Jensen aka. Deldy2008-10-10T12:49:39Z2008-10-10T12:49:39Z<p><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">101 Linq Samples</a> is a good one for refference. Not a puzzle though</p>
http://stackoverflow.com/questions/191057/architecture-tips-business-logic-data-access/191087#1910873Answer by Jesper Blad Jensen aka. Deldy for Architecture Tips: Business Logic / Data Access ...Jesper Blad Jensen aka. Deldy2008-10-10T12:48:33Z2008-10-10T12:48:33Z<p>Maybe look at <a href="http://www.lhotka.net/cslanet/" rel="nofollow">CSLA.NET</a>?</p>
<p>Its a framework that really builds around business objects. Buy the book and read it. Maybe its not the framework for you, but im sure it will give you some nice ideas about how to do it.</p>
http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161347#1613473Answer by Jesper Blad Jensen aka. Deldy for Most amazing piece of code you've ever seenJesper Blad Jensen aka. Deldy2008-10-02T08:29:06Z2008-10-02T08:29:06Z<p>Hello world in the first language i learned was the most amazing code. It was the code that amazed me the most because it worked! </p>
<p>I was so cool, i made my first program! :)</p>
http://stackoverflow.com/questions/16610/how-do-you-deal-with-transport-level-errors-in-sqlconnection/156401#1564010Answer by Jesper Blad Jensen aka. Deldy for How do you deal with transport-level errors in SqlConnection?Jesper Blad Jensen aka. Deldy2008-10-01T06:05:53Z2008-10-01T06:05:53Z<p>Hi Eric,</p>
<p>I had the same problem. I asked my network geek friends, and all said what people have replied here: Its the connection between the computer and the database server. In my case it was my Internet Service Provider, or there router that was the problem. After a Router update, the problem went away. But do you have any other drop-outs of internet connection from you're computer or server? I had...</p>
http://stackoverflow.com/questions/151873/what-is-a-good-extendable-blogging-application-for-asp-net/151881#1518811Answer by Jesper Blad Jensen aka. Deldy for What is a good extendable blogging application for asp.net?Jesper Blad Jensen aka. Deldy2008-09-30T05:39:48Z2008-09-30T05:39:48Z<p>There are two i know of: BlogEngine.NET and DasBlog</p>
<p>I'm using BlogEngine.NET. Very easy to extend as it uses the providers for membership and such. Can be configured to run on MSSQL, but default it will run using XML.</p>
<p>DasBlog should also be a great blog engine, although I have never really played with it.</p>
<p>Both are Open Source, and in C#</p>
http://stackoverflow.com/questions/148725/asp-net-mvc-input-validation/148890#1488905Answer by Jesper Blad Jensen aka. Deldy for ASP.NET MVC Input ValidationJesper Blad Jensen aka. Deldy2008-09-29T14:24:59Z2008-09-29T14:24:59Z<p>Scott Gu have written something about MVC Preview 5, and form posting: </p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx</a></p>
<p>Its a big post, but it walks you though a Form posting validation thingy. Remark that this is not the only way to do it, but it is a way.</p>
http://stackoverflow.com/questions/146505/can-someone-recommend-a-reliable-cvs-or-svn-hosting-service/146545#1465456Answer by Jesper Blad Jensen aka. Deldy for Can someone recommend a reliable CVS or SVN hosting service?Jesper Blad Jensen aka. Deldy2008-09-28T19:32:15Z2008-09-28T19:32:15Z<p><a href="http://unfuddle.com/" rel="nofollow">http://unfuddle.com/</a> has a free 200mb SVN, with project mangement and such. Take a look at that.</p>
http://stackoverflow.com/questions/949466/how-do-you-do-a-join-in-linqtosql/949475#949475Comment by Jesper Blad Jensen aka. Deldy on How do you do a join in LinqToSQL?Jesper Blad Jensen aka. Deldy2009-06-04T09:37:09Z2009-06-04T09:37:09ZMan I love Lambda's :) Very elegant solutionhttp://stackoverflow.com/questions/847395/asp-net-mvc-page-styling/847416#847416Comment by Jesper Blad Jensen aka. Deldy on ASP.Net MVC Page StylingJesper Blad Jensen aka. Deldy2009-05-11T16:21:15Z2009-05-11T16:21:15ZHave you tried ctrl+f5 to force refresh your browser. It may still have a cached version of the old csshttp://stackoverflow.com/questions/751411/need-to-implement-expiration-date-for-beta-software-cComment by Jesper Blad Jensen aka. Deldy on Need to implement "expiration date" for beta software C#Jesper Blad Jensen aka. Deldy2009-04-15T13:08:50Z2009-04-15T13:08:50ZContact the legal part where the isue is at, and get a agreement with them, that your protection method is secure enough, so they cant sue you. Just an idea :)http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/743952#743952Comment by Jesper Blad Jensen aka. Deldy on What Should Be in a 2D Game Engine?Jesper Blad Jensen aka. Deldy2009-04-13T14:05:43Z2009-04-13T14:05:43ZXna already use 3d acc. So this is automaticly build in. Really this just mean that it uses the gpu - in my understandinghttp://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102267#102267Comment by Jesper Blad Jensen aka. Deldy on Hidden Features of VB.NET?Jesper Blad Jensen aka. Deldy2009-02-01T11:43:27Z2009-02-01T11:43:27ZIm pritty sure that you can do something like this in C#. In VB.NET its just forced, and in C# its optional?http://stackoverflow.com/questions/495722/reasons-to-learn-linq/495769#495769Comment by Jesper Blad Jensen aka. Deldy on Reasons to Learn LINQJesper Blad Jensen aka. Deldy2009-01-30T15:53:51Z2009-01-30T15:53:51ZNot really LINQ, but what the heck :)http://stackoverflow.com/questions/189118/what-are-your-most-recommended-visual-studio-preferences/189127#189127Comment by Jesper Blad Jensen aka. Deldy on What are your most-recommended Visual Studio preferences?Jesper Blad Jensen aka. Deldy2009-01-27T18:12:02Z2009-01-27T18:12:02ZBouvard, remmember to check the "Show All Settings" button, at the buttom of the dialoghttp://stackoverflow.com/questions/428870/what-are-the-possibly-situations-that-net-viewstate-could-stop-workingComment by Jesper Blad Jensen aka. Deldy on What are the possibly situations that .net Viewstate could stop working?Jesper Blad Jensen aka. Deldy2009-01-09T17:15:09Z2009-01-09T17:15:09ZPlease reply to your own post, instead of editing you post, and mark you reply as answer. :) I just replied, and did not figure out that you have answered it your self :)http://stackoverflow.com/questions/214805/vb6-0-mdi-spell-checkerComment by Jesper Blad Jensen aka. Deldy on VB6.0 MDI Spell CheckerJesper Blad Jensen aka. Deldy2008-10-18T09:41:20Z2008-10-18T09:41:20ZI think you need to explain a bit more.http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware/179370#179370Comment by Jesper Blad Jensen aka. Deldy on What language or RAD IDE do you recommend for building shareware?Jesper Blad Jensen aka. Deldy2008-10-09T17:42:20Z2008-10-09T17:42:20ZOn a website you can even tell in the browser-string what .NET Version they have, then you can bundle a version of your application with the framework, or just point them where to download it. Its really not a problem anymore.http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware/179370#179370Comment by Jesper Blad Jensen aka. Deldy on What language or RAD IDE do you recommend for building shareware?Jesper Blad Jensen aka. Deldy2008-10-09T17:41:37Z2008-10-09T17:41:37ZYou can always choose to program .NET 2.0. Free versions of the IDE, that support .NET 2.0,3.0 and 3.5. Its very hard to find a XP without .NET 2.0 theese days. .NET 3.5 should be normal also, but im not sure if it is marked as a Important update yet.http://stackoverflow.com/questions/163562/wiki-style-text-formatting/163596#163596Comment by Jesper Blad Jensen aka. Deldy on Wiki style text formattingJesper Blad Jensen aka. Deldy2008-10-02T17:46:30Z2008-10-02T17:46:30ZThanks. Found that when i searched for a solution, but did not know there was a .NET Version of it. +1 :)http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161300#161300Comment by Jesper Blad Jensen aka. Deldy on Most amazing piece of code you've ever seenJesper Blad Jensen aka. Deldy2008-10-02T08:34:09Z2008-10-02T08:34:09ZThat book is amazing. Its the book that really learned me Design Patterns in a way that was fun enough to i can remember it.
The remote and the gum ball machine always reminds me of thoose patterns (I forgot the patterns names :))http://stackoverflow.com/questions/153776/how-can-i-call-a-javascript-function-from-inside-a-methodComment by Jesper Blad Jensen aka. Deldy on How can I call a javascript function from inside a method?Jesper Blad Jensen aka. Deldy2008-09-30T16:14:40Z2008-09-30T16:14:40ZCan you tell alittle more about what you whould like to do? You architecture and such? And what you whould like to accomplices on a higher level?http://stackoverflow.com/questions/148143/is-there-anyway-to-tell-visual-studio-not-to-open-all-the-documents-when-i-load-s/148628#148628Comment by Jesper Blad Jensen aka. Deldy on Is there anyway to tell Visual Studio not to open all the documents when I load solution?Jesper Blad Jensen aka. Deldy2008-09-29T13:41:36Z2008-09-29T13:41:36ZThank you so much! You are my new idol :)