User typemismatch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T13:13:39Zhttp://stackoverflow.com/feeds/user/13714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1370595/dnn-5-module-programming/1408445#14084450Answer by typemismatch for dnn 5 module programmingtypemismatch2009-09-11T00:32:52Z2009-09-11T00:32:52Z<p>Try this and if it fails, please post the module definition. (.dnn file)</p>
<p>I did my first dnn 5 module last week - I created the new module definition directly from the dnn host admin area and didn't add any controls. Once I added the controls, my module still didn't appear because all my controls had a "key" defined.</p>
<p>You need to make sure that 1 control in your module definition is added "without" a key - this is the default view (ascx) that will load for you.</p>
http://stackoverflow.com/questions/216812/embed-a-website-page-into-silverlight4Embed a website/page into Silverlighttypemismatch2008-10-19T19:09:45Z2009-06-09T15:04:42Z
<p>Yes that sounds backwards. I want to create an area or frame in my Silverlight app to host another page from my site. I've seen it done before but I can't seem to find any examples.</p>
<p>This way I can control the entire page layout using SL but still use existing aspx pages.</p>
<p>thanks</p>
http://stackoverflow.com/questions/958273/cdata-in-xml-using-c0CDATA in XML using C#typemismatch2009-06-05T21:42:31Z2009-06-05T22:06:44Z
<p>This is an unusual situation. We are forced to interface with a 3rd party who requires certain values in the xml response to be wrapped with even if it is just a string value.</p>
<pre><code>Example: <Property name="someName" type="String"><![CDATA[someValue]]></Property>
</code></pre>
<p>We are adding these property nodes to the document as follows:</p>
<pre><code>XPathExpression query = xPathNavigator.Compile(xpath);
XPathNavigator node = xPathNavigator.SelectSingleNode(query.Expression, xmlNamespaceManager);
string property = "<Property name='someName' type='String'><![CDATA[someValue]]></Property>";
node.AppendChild(property);
</code></pre>
<p>The problem is, the resulting xml looks like this</p>
<pre><code><Property name="someName" type="String">someValue</Property>
</code></pre>
<p>The CDATA keeps getting stripped out.</p>
http://stackoverflow.com/questions/822066/native-c-or-net-for-business-app/822076#8220760Answer by typemismatch for Native C++ or .NET for Business App?typemismatch2009-05-04T21:09:56Z2009-05-04T21:09:56Z<p>I'd look to see if Mono (<a href="http://www.mono-project.com" rel="nofollow">mono-project</a>) works for you. i.e. runs on win2k - if it does it would allow you to port your app to MS .NET and later OS versions should the need arise later in the project. Any .NET is going to be easier than C++ IMHO :)</p>
http://stackoverflow.com/questions/821251/how-to-configure-ruby-on-rails-with-no-database/821269#8212693Answer by typemismatch for How to configure Ruby on Rails with no database?typemismatch2009-05-04T18:17:21Z2009-05-04T18:17:21Z<p>Uncomment this line in the environment.rb</p>
<p>config.frameworks -= [ :active_record, :active_resource, :action_mailer]</p>
http://stackoverflow.com/questions/821206/enabling-formsauthentication-for-multiple-subfolders-in-a-site/821262#8212620Answer by typemismatch for Enabling FormsAuthentication for multiple subfolders in a sitetypemismatch2009-05-04T18:15:57Z2009-05-04T18:15:57Z<p>I'm not sure what you're trying to do but how about Roles for each of these customer types? Limit access by a role for each sub folder but you'd still have 1 membership provider and 1 role provider.</p>
http://stackoverflow.com/questions/817971/jruby-on-rails-without-a-database1JRuby on Rails without a databasetypemismatch2009-05-03T20:50:43Z2009-05-04T05:49:48Z
<p>I'm kicking off a new Rails project in NetBeans using JRuby (v1.2.0) which uses Rails (2.3.2). I don't need a database, all my data comes from the cloud.</p>
<p>I've uncommented this line in my environment</p>
<p>config.frameworks -= [ :active_record, :active_resource, :action_mailer]</p>
<p>However, I still get the following errors just trying to call an action. Hosting on GlassFish.</p>
<p>java.net.SocketException: java.net.ConnectException: Connection refused: connect
at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:156)
at com.mysql.jdbc.MysqlIO.(MysqlIO.java:276)
at com.mysql.jdbc.Connection.createNewIO(Connection.java:2666)
at com.mysql.jdbc.Connection.(Connection.java:1531)</p>
<p>Any ideas where else I might need changes to not use a database?
thanks</p>
http://stackoverflow.com/questions/779906/authorization-problem-formsauth-and-asp-net-mvc0Authorization problem, FormsAuth and ASP.NET MVCtypemismatch2009-04-23T01:02:06Z2009-04-24T14:01:46Z
<p>I have a pretty simple ASP.NET MVC Site Application. (MVC 1.0)</p>
<p>I have NO authorization sections in my web.config because I use the [Authoize] attribute on my controllers. </p>
<p>The default web.config for the server allows * for forms authentication, as expected.</p>
<p>I have 2 existing Windows 2008 dedicated (hosted) servers. The site works well.</p>
<p>I have a new dedicated server, seems identical except the site just won't work. Every resource, even images/javascript is redirecting to the login page.</p>
<p>I tried adding explicit authorization rules to allow * and location rules, same result. I checked the .NET Trust level, Internal/Full Trust. Everything runs perfectly on two servers, just this one is ignoring all rules for authorization.</p>
<p>Any ideas?
thanks</p>
http://stackoverflow.com/questions/779906/authorization-problem-formsauth-and-asp-net-mvc/785968#7859680Answer by typemismatch for Authorization problem, FormsAuth and ASP.NET MVCtypemismatch2009-04-24T14:01:46Z2009-04-24T14:01:46Z<p>I found the issue :) Unless something has changed in Windows 2008 I would have expected this to show as an error but as stated above, it was being hidden by Forms Authentication.</p>
<p>The issue was the hosting company now adds data drives to all servers for your websites/storage. There were no permissions set to allow IIS to read the files. The reason I couldn't find it was I already added permission for the application pool user, in my case I just went ahead and added ASPNET, Network Service, IIS Anon User etc to have full permissions.</p>
<p>I needed to allow Everyone to have at least Read to the website folders and then IIS showed the non-secured content. I still think it is odd that forms auth. was kicking in and ignoring all web.config rules but anyway.</p>
<p>I found the error by turning off Forms Auth support in the IIS 7 manager. Then I got the process failure error because of file permissions.</p>
http://stackoverflow.com/questions/779929/id-id-or-id/779938#7799380Answer by typemismatch for ID, id, or Id?typemismatch2009-04-23T01:17:39Z2009-04-23T01:17:39Z<p>I prefer to use Id and in our company the standard is also Id over ID. I don't think there is a problem using ID if you find it easier to read. The compiler doesn't care :) I use the same convention in my schema Id columns.</p>
http://stackoverflow.com/questions/683228/stop-linq2sql-using-named-pipes0Stop Linq2SQL using Named Pipes?typemismatch2009-03-25T20:05:38Z2009-04-22T17:53:13Z
<p>I have a nice little Linq2SQL project however when deployed the database is on another server. I keep getting a named pipe error that the remote server doesn't exist - yet it does, it has Named Pipes enabled (protocol + surface) SQL 2005. TCP connections work fine.</p>
<p>I've tried setting the library in the connection string to a TCP one, I tried forcing TCP in the server name however Linq is always and only using Named Pipes and just won't work.</p>
<p>Any idea how to force Linq2SQL to use TCP/IP only, if possible?</p>
<p>thanks</p>
http://stackoverflow.com/questions/726392/parsing-search-queries-for-sql-2008-fts0Parsing search queries for SQL 2008 FTS.typemismatch2009-04-07T15:41:31Z2009-04-08T06:31:10Z
<p>We want to use SQL SERVER 2008 Full Text Search and seem to run into a lot of problems handling the search query.</p>
<p>If the user types in "blue dog" it just crashes sql unless we parse the search terms to include the "" around the words but that makes it a phrase instead of keywords.</p>
<p>I want results where blue or dog are included but that means replacing spaces with or(s) and so on. Unfortunately there seem to be far too many combination a user might type.</p>
<p>Are there any libraries out there (for .net) that can already parse a search string into something FT understands?</p>
<p>We'd like a Google like syntax :)</p>
<p>thanks</p>
http://stackoverflow.com/questions/726392/parsing-search-queries-for-sql-2008-fts/726510#7265101Answer by typemismatch for Parsing search queries for SQL 2008 FTS.typemismatch2009-04-07T16:12:15Z2009-04-07T16:12:15Z<p>I was looking for the "FREETEXT" option and was using the "CONTAINS" keyword instead, my bad. Freetext is giving me the results I wanted.</p>
http://stackoverflow.com/questions/726406/i-need-help-configuring-asp-net-profiles/726452#7264523Answer by typemismatch for I need help configuring ASP.net Profiles typemismatch2009-04-07T15:55:55Z2009-04-07T15:55:55Z<p>When you add the profile you've called it SqlProvider instead of SqlServices. (the default profile provider name you used above)</p>
http://stackoverflow.com/questions/488976/file-access-denied-c-console-application-error0File access denied, c# console application error.typemismatch2009-01-28T19:26:16Z2009-01-30T23:45:50Z
<p>This is a really odd security issue with a C# (3.0) Console application.</p>
<p>The application creates a folder and copies a bunch of files into that folder, it then also generates some files and saves them into the same folder. File streams are always closed. The copied files are done using File.Copy. Once the files are there, I don't seem to be able to access them again - later in the code, if I want to delete or open an existing file I get a access denied error yet I just created or copied the file there so I know I have permission!</p>
<p>Visual Studio 2008, Windows 7 (beta) - tried running as administrator but it didn't help. I also gave the parent folder permissions so that "Everyone" had write access and its under my logged in user documents folder.</p>
<p>Thanks!</p>
<p>update: I tried this on XP and had the same result so its not Win 7 :)</p>
http://stackoverflow.com/questions/216664/creating-an-mjpeg-video-stream-in-c7Creating an MJPEG video stream in c#typemismatch2008-10-19T16:58:38Z2009-01-16T16:12:04Z
<p>I have images being sent to my database from a remote video source at about 5 frames per second as JPEG images. I am trying to figure out how to get those images into a video format so I can stream a live video feed to Silverlight.</p>
<p>It seems to make sense to create a MJPEG stream but I'm having a few problems. Firstly I was trying to stream via an HTTP request so I didn't have a deal with sockets but maybe this is breaking my code.</p>
<p>If I try surf to my stream from QT I get a video error, Media player shows the first frame image and Silverlight crashes :)</p>
<p>Here is the code that streams - since I content type used this way can only be sent once I know that it isn't ideal and might be the root cause. All images are coming in via a LINQ2SQL object.</p>
<p>I did already try simply updating the image source of an image control in Silverlight but the flicker isn't acceptable. If Silverlight doesn't support MJPEG then no point even continuing but it looks like it does. I do have access to the h.264 frames coming in but that seemed more complicated via MP4.</p>
<pre><code> Response.Clear();
Response.ContentType = "multipart/x-mixed-replace; boundary=--myboundary";
ASCIIEncoding ae = new ASCIIEncoding();
HCData data = new HCData();
var videos = (from v in data.Videos
select v).Take(50); // sample the first 50 frames
foreach (Video frame in videos)
{
byte[] boundary = ae.GetBytes("\r\n--myboundary\r\nContent-Type: image/jpeg\r\nContent-Length:" + frame.VideoData.ToArray().Length + "\r\n\r\n");
var mem = new MemoryStream(boundary);
mem.WriteTo(Response.OutputStream);
mem = new MemoryStream(frame.VideoData.ToArray());
mem.WriteTo(Response.OutputStream);
Response.Flush();
Thread.Sleep(200);
}
</code></pre>
<p>Thanks!</p>
<p>EDIT: I have the stream working in firefox so if I surf to the page I see video! but nothing else accepts the format. Not IE, SL, Media player - nothing.</p>
http://stackoverflow.com/questions/217424/create-csv-file-for-user-in-php/217435#2174350Answer by typemismatch for create .CSV File for user in PHPtypemismatch2008-10-20T03:16:29Z2008-10-20T03:16:29Z<p>Create your file then return a reference to it with the correct header to trigger the Save As - edit the following as needed. Put your CSV data into $csvdata.</p>
<pre><code>$fname = 'myCSV.csv';
$fp = fopen($fname,'w');
fwrite($fp,$csvdata);
fclose($fp);
header('Content-type: application/csv');
header("Content-Disposition: inline; filename=".$fname);
readfile($fname);
</code></pre>
http://stackoverflow.com/questions/217256/exception-when-creating-new-dispatchertimer/217417#2174170Answer by typemismatch for Exception when creating new DispatcherTimer()typemismatch2008-10-20T03:06:17Z2008-10-20T03:06:17Z<p>Can you post your code? Here is what I use ...</p>
<pre><code>System.Windows.Threading.DispatcherTimer pageTimer = new System.Windows.Threading.DispatcherTimer();
pageTimer.Interval = new TimeSpan(0, 0, 0, 0, 100); // milliseconds
pageTimer.Tick += new EventHandler(Each_Tick);
pageTimer.Start();
</code></pre>
<p>Make sure you have the event handler defined too.</p>
http://stackoverflow.com/questions/216671/how-can-a-software-developer-become-location-independent/216681#2166810Answer by typemismatch for How can a software developer become location independent?typemismatch2008-10-19T17:11:02Z2008-10-19T17:11:02Z<p>You could also develop software products and online services where business is done via your website and you might never need to leave a sunny beach somewhere. Granted it will take more time to get established but its a nice way to do things.</p>
http://stackoverflow.com/questions/108301/is-do-not-load-this-page-directly-really-necessary-in-php/108317#1083170Answer by typemismatch for Is "do not load this page directly" really necessary in PHP?typemismatch2008-09-20T14:33:47Z2008-09-20T14:33:47Z<p>It also isn't just a security feature in php but more of how many MVC based PHP sites function. If for example in SugarCRM you were to call a module file directly the page load would fail because the controller, view and model were not previously loaded and you'd have no db config/connection information either, so to make sure all dependencies are loaded the users is forced through a known entry point - i.e. index.php</p>
http://stackoverflow.com/questions/101574/how-to-open-an-external-file-from-html/101590#1015900Answer by typemismatch for How to open an external file from HTMLtypemismatch2008-09-19T12:50:37Z2008-09-19T12:50:37Z<p>Your first idea used to be the way but I've also noticed issues doing this using Firefox, try a straight http:// to the file - href='<a href="http://server/directory/file.xlsx" rel="nofollow">http://server/directory/file.xlsx</a>'</p>
http://stackoverflow.com/questions/95525/why-is-my-program-asking-for-permission-to-run-on-vista/95614#956140Answer by typemismatch for Why is my program asking for permission to run on Vista?typemismatch2008-09-18T18:50:00Z2008-09-18T18:50:00Z<p>The MVP was talking about having your code and project run from your user folder for example c:\users\yourname\appdata or something under that path.</p>
<p>Do not disable UAC to fix this problem otherwise your application will not run on another machine unless it to has UAC turned off. It is a very bad practice. Your application, in a perfect world, should request elevated permissions from the user.</p>
http://stackoverflow.com/questions/95377/good-ways-to-motivate-and-inspire-high-school-students-regarding-software-develop/95424#954241Answer by typemismatch for Good ways to motivate and inspire high school students regarding software development?typemismatch2008-09-18T18:35:36Z2008-09-18T18:35:36Z<p>I'd try get them into games, I don't think its necessarily the best long term career but all kids want to write games and it will get them learning. Here are some great places to start - imagine letting them know they could write a game for their xbox 360!</p>
<p><a href="http://msdn.microsoft.com/en-us/xna/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/xna/default.aspx</a></p>
<p><a href="http://blogs.msdn.com/coding4fun/" rel="nofollow">http://blogs.msdn.com/coding4fun/</a></p>
http://stackoverflow.com/questions/95235/whats-the-best-way-to-send-a-file-over-a-network-using-c/95313#953132Answer by typemismatch for What's the best way to send a file over a network using C#?typemismatch2008-09-18T18:26:41Z2008-09-18T18:26:41Z<p>This depends what you mean by network - if you're copying on a local network you can just use the file copy operations inside System.IO. If you're wanting to send to remote servers I do this using web services. I compress byte arrays and send them over and decompress on the remote side. The byte array is super easy to write back to disk using streams.</p>
<p>I know some people prefer base 64 strings instead of the byte[]. not sure if it matters.</p>
http://stackoverflow.com/questions/68456/is-anyone-using-the-asp-net-mvc-framework-on-live-sites/95200#952001Answer by typemismatch for Is anyone using the ASP.NET MVC Framework on live sites?typemismatch2008-09-18T18:16:37Z2008-09-18T18:16:37Z<p>Remember that asp.net MVC is built on top of a solid asp.net/.net foundation which is already well proven and you can mix the technologies if you choose. I've used it without any problems besides the learning curve.</p>
<p>My only note is that currently, 3rd party control vendors like Telerik, ComponentArt etc don't really work well with MVC.</p>
http://stackoverflow.com/questions/95120/where-is-the-best-place-to-store-user-related-data-in-asp-net/95157#951574Answer by typemismatch for Where is the best place to store user related data in asp.net?typemismatch2008-09-18T18:13:18Z2008-09-18T18:13:18Z<p>As already suggested, the profile system is super easy.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/2y3fs9xs.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/2y3fs9xs.aspx</a></p>
http://stackoverflow.com/questions/95005/simplest-way-to-update-a-client-side-javascript-array-variable-during-a-asp-net-a/95081#950810Answer by typemismatch for Simplest way to update a client-side javascript array variable during a ASP.NET AJAX postback in an UpdatePanel?typemismatch2008-09-18T18:07:09Z2008-09-18T18:07:09Z<p>You could also update a hidden label inside the update panel which allows you to write out any javascript you like. I would suggest though using web services or even page methods to fetch the data you need instead of using update panels.</p>
<p>Example: myLabel.Text = "...."; ... put your logic in this or you can add [WebMethod] to any public static page method and return data directly.</p>
http://stackoverflow.com/questions/89067/does-scrum-work-in-offshoring1Does "scrum" work in offshoring?typemismatch2008-09-18T01:00:20Z2008-09-18T02:00:14Z
<p>I do a lot of work as an architect with offshore teams and some of these teams use Scrum development practices in their purest form.</p>
<p>I'm finding problems when developers are spread so far apart with pure scrum and wondered if anyone has solutions. 80% development is remote but some team members are US side.</p>
<p>The biggest issue is a lack of documentation - I'm no big believer in lots of docs but I like use cases or something that resembles a spec even if small. The remote developers just don't get a clear enough understanding of what is required even with all the meetings. New developers to the projects don't stand any chance of being productive.</p>
<p>Personally I'm pushing some teams back to just agile. Thanks!</p>
http://stackoverflow.com/questions/87513/what-is-the-best-resource-for-learning-scrum/89050#890500Answer by typemismatch for What is the best resource for learning Scrum?typemismatch2008-09-18T00:55:22Z2008-09-18T00:55:22Z<p>Just my 2c and a warning - I don't think it is ever a good idea to adopt a development methodology exactly as a book might explain it, not saying you're doing that but just remember to adapt these things to suit your needs.</p>
<p>I prefer just an agile approach over pure "anything". </p>
http://stackoverflow.com/questions/88971/asynchronous-file-io-in-net/89034#890340Answer by typemismatch for Asynchronous file IO in .Nettypemismatch2008-09-18T00:52:14Z2008-09-18T00:52:14Z<p>What if you loaded the resource (file data or whatever) into memory first and then shared it across threads? Since it is a small db. - you won't have as many issues to deal with.</p>
http://stackoverflow.com/questions/1090861/creating-a-separate-module-in-mvc-like-you-can-do-in-dotnetnuke/1091031#1091031Comment by typemismatch on Creating a separate module in MVC like you can do in DotNetNuketypemismatch2009-09-11T02:25:30Z2009-09-11T02:25:30ZTrue but why not just stick to DNN then, the MVC doesn't provide out the box plug+play module support.http://stackoverflow.com/questions/958273/cdata-in-xml-using-c/958370#958370Comment by typemismatch on CDATA in XML using C#typemismatch2009-06-05T22:35:53Z2009-06-05T22:35:53ZI did try, no go but other post got it, thanks.http://stackoverflow.com/questions/958273/cdata-in-xml-using-c/958373#958373Comment by typemismatch on CDATA in XML using C#typemismatch2009-06-05T22:35:30Z2009-06-05T22:35:30ZTHANKS!!!! great example, worked like a charm.I left your beer over here (b) http://stackoverflow.com/questions/821353/linqtosql-retreiving-a-table-according-to-the-values-of-another-table-where-it-haComment by typemismatch on LINQtoSQL Retreiving a table according to the values of another table where it has a many to many relationship withtypemismatch2009-05-04T18:47:24Z2009-05-04T18:47:24ZDo you have foreign keys defined? can you post the dbml diagram?http://stackoverflow.com/questions/821206/enabling-formsauthentication-for-multiple-subfolders-in-a-siteComment by typemismatch on Enabling FormsAuthentication for multiple subfolders in a sitetypemismatch2009-05-04T18:14:12Z2009-05-04T18:14:12ZYou are only allowed one membership provider - it is loaded and cached on app init. What is different with each provider that you need to do this?http://stackoverflow.com/questions/817971/jruby-on-rails-without-a-database/818910#818910Comment by typemismatch on JRuby on Rails without a databasetypemismatch2009-05-04T17:02:07Z2009-05-04T17:02:07ZThis actually works, the difference is I was using GlassFish from inside NetBeans - if I run it outside using webrick as you did, then it works fine. This poses a problem however, when/if I put it into production on GlassFish then it would break again :(http://stackoverflow.com/questions/683228/stop-linq2sql-using-named-pipes/683286#683286Comment by typemismatch on Stop Linq2SQL using Named Pipes?typemismatch2009-03-25T20:59:01Z2009-03-25T20:59:01ZYou are right, we won't set it to none - we need it in there and it is just a connection string from the app.config file.http://stackoverflow.com/questions/683228/stop-linq2sql-using-named-pipesComment by typemismatch on Stop Linq2SQL using Named Pipes?typemismatch2009-03-25T20:10:51Z2009-03-25T20:10:51ZI can't tell - I added some debug info to fetch the connection string and display it and that was correct but the data context object might be doing something funky.http://stackoverflow.com/questions/488976/file-access-denied-c-console-application-error/489256#489256Comment by typemismatch on File access denied, c# console application error.typemismatch2009-01-28T20:49:47Z2009-01-28T20:49:47Zyou nailed it! some files were copied from an old VSS controlled folder and had read only attributes. thanks :)http://stackoverflow.com/questions/488976/file-access-denied-c-console-application-error/489043#489043Comment by typemismatch on File access denied, c# console application error.typemismatch2009-01-28T20:11:30Z2009-01-28T20:11:30ZFor streams yes but for File.Copy/Move/Delete operations there is no need and these fail too. I think its a Win 7 bug.http://stackoverflow.com/questions/488976/file-access-denied-c-console-application-errorComment by typemismatch on File access denied, c# console application error.typemismatch2009-01-28T19:45:35Z2009-01-28T19:45:35Zno, the application is local and since I create the files I know I have permissions - here is an example piece of code:
foreach (string file in Directory.GetFiles(OutputPath)) File.Delete(file);
Output path is \users\me\documents\project\temp*http://stackoverflow.com/questions/216664/creating-an-mjpeg-video-stream-in-c/216682#216682Comment by typemismatch on Creating an MJPEG video stream in c#typemismatch2008-10-20T23:46:05Z2008-10-20T23:46:05ZYes - I also have it working in Firefox and I can see perfect video but yes, I've also written the images as single jpg files to disk and they are fine.http://stackoverflow.com/questions/216812/embed-a-website-page-into-silverlight/216962#216962Comment by typemismatch on Embed a website/page into Silverlighttypemismatch2008-10-20T02:56:53Z2008-10-20T02:56:53ZIt would help the community if you post more details here as well as your blog, thanks.http://stackoverflow.com/questions/216664/creating-an-mjpeg-video-stream-in-c/216682#216682Comment by typemismatch on Creating an MJPEG video stream in c#typemismatch2008-10-19T17:12:50Z2008-10-19T17:12:50ZYes I have done that - the images get used for other things independent of the Video so I can view them and they look good.http://stackoverflow.com/questions/95525/why-is-my-program-asking-for-permission-to-run-on-vistaComment by typemismatch on Why is my program asking for permission to run on Vista?typemismatch2008-09-18T18:55:00Z2008-09-18T18:55:00ZI thought but may be wrong that VS 2008 SP1 fixed this issue and will prompt for permission when loading.