active questions tagged c# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-07T18:30:00Z http://stackoverflow.com/feeds/tag/c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1684568/why-a-view-is-loading-very-slow-for-the-first-time-in-a-prism-composite-wpf-appli 0 Why a View is loading very slow for the first time in a Prism composite wpf application Raj 2009-11-06T00:14:23Z 2009-11-07T18:23:43Z <p>Displaying a View inside a Region is about 5-10 seconds <strong>slow</strong> for the first time, and UI freezes for that period in my Prism Composite WPF application. In subsequent times View is loaded relatively faster without any UI freezing. View is composed of a Devexpress WPF Grid control and data is fetched from a SQL database. I don't think its an issue with the Grid control / binding though, even if I remove bindings with the grid control, View takes almost same time to render itself into a Region.</p> <p>This is the code I use to load View into a Region defined inside the Shell: </p> <pre><code>public Action&lt;MenuModel&gt; LoadViewRequest { get; set; } public SyncController(IUnityContainer container, IEventAggregator eventAggregator, IRegionManager regionManager) { this.container = container; this.eventAggregator = eventAggregator; this.regionManager = regionManager; this.LoadViewRequest = (menuItem) =&gt; { LoadRequestedView(menuItem); }; this.eventAggregator.GetEvent&lt;ViewRequestedEvent&gt;().Subscribe(LoadViewRequest, ThreadOption.UIThread, true, i =&gt; i.Module == "Sync"); } private void LoadRequestedView(MenuModel menuItem) { try { IViewModel viewModel = this.container.Resolve&lt;SynchronizeViewModel&gt;(); this.regionManager.Regions["ViewRegion"].Add(viewModel.View); this.regionManager.Regions["ViewRegion"].Activate(viewModel.View); viewModel.DisplayName = menuItem.Description; this.eventAggregator.GetEvent&lt;ViewNotificationEvent&gt;().Publish(menuItem.Description); } catch (ResolutionFailedException) { } } </code></pre> <p>What could be the reason behind this behavior? Why View is getting loaded almost instantaneously when loaded for the second time? Does that mean even after removing View from the Region my application hold a reference to View?</p> http://stackoverflow.com/questions/1693608/banishing-the-command-prompt-window-winforms 2 Banishing the Command Prompt Window (WinForms) baeltazor 2009-11-07T16:37:57Z 2009-11-07T18:22:14Z <p>Hi All,</p> <p>I have a problem over here. You see, I wanted to create my own sample application in C# but without Visual Studio creating the files automatically for me. So I figured that I'd simply select "Empty Project" and then create the Program.cs file myself, and then manually add a Winfows Form from the Project menu. That went good.</p> <p>But then when I clicked the Debug button, to my surprise; The console Window sits behind my Applications Window. And if I try to close the console window, it closes my program's window, too. (This is NOT a Console-based application.)</p> <p>Can somebody please help me get rid of this console window?</p> <p>I've looked all over the place but have found <b>nothing</b> regarding this matter.</p> <p>Thank you</p> <p>Jason.</p> http://stackoverflow.com/questions/1693948/strange-problem-when-trying-to-read-data 0 Strange problem when trying to read data Alon 2009-11-07T18:21:25Z 2009-11-07T18:21:25Z <p>When I write:</p> <pre><code>var tagType = _reader.ReadByte(); while (tagType != 8) { var skip = ReadNext3Bytes() + 11; _reader.BaseStream.Position += skip; tagType = _reader.ReadByte(); } </code></pre> <p>...it's working, but when I write:</p> <pre><code>var tagType = _reader.ReadByte(); while (tagType != 8) { _reader.BaseStream.Position += ReadNext3Bytes() + 11; tagType = _reader.ReadByte(); } </code></pre> <p>...it is not working, and I can't understand why - I'm getting unexpected results. Heres the <code>ReadNext3Bytes</code> method:</p> <pre><code> private long ReadNext3Bytes() { try { return Math.Abs((_reader.ReadByte() &amp; 0xFF) * 256 * 256 + (_reader.ReadByte() &amp; 0xFF) * 256 + (_reader.ReadByte() &amp; 0xFF)); } catch { return 0; } } </code></pre> <p>Why is that, and how can I fix it?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1693875/c-can-i-remove-get-set 1 C#: Can I remove "{ get; set; }"? gdario 2009-11-07T17:57:53Z 2009-11-07T18:18:26Z <p>Is there a difference between:</p> <pre><code>public T RequestedValue { get; set; } </code></pre> <p>and </p> <pre><code>public T RequestedValue; </code></pre> <p>?</p> <p>Taken from this code:</p> <pre><code>public class PropertyChangeRequestEventArgs&lt;T&gt;:EventArgs { public PropertyChangeRequestEventArgs(T pRequestedValue) { RequestedValue = pRequestedValue; } public T RequestedValue { get; set; } } </code></pre> http://stackoverflow.com/questions/1693831/how-to-create-a-parser-for-search-queries 1 how to create a parser for search queries b0x0rz 2009-11-07T17:44:04Z 2009-11-07T18:13:59Z <p>for example i'd need to create something like google search query parser to parse such expressions as:</p> <blockquote> <p>flying hiking <strong>or</strong> swiming <strong>-"</strong>walking in boots <strong>"</strong> <strong>author:</strong>hamish <strong>author:</strong>reid</p> </blockquote> <p>or</p> <blockquote> <p>house <strong>in</strong> new york <strong>priced over</strong> $500000 <strong>with a</strong> swimming pool</p> </blockquote> <p>how would i even go about start building something like it? any good resources?</p> <p><strong>c# relevant</strong>, please (if possible)</p> <ul> <li>edit: this is something that i should somehow be able to translate to a sql query</li> </ul> http://stackoverflow.com/questions/1693849/terms-conditions-disclaimer-for-application 1 Terms Conditions Disclaimer for Application? baeltazor 2009-11-07T17:48:03Z 2009-11-07T18:02:25Z <p>Hi All,</p> <p>I was told that I need to have terms and conditions or disclaimer for my program that the user needs to accept before they can install it, is this true? And are there any places online that you may use to get them?</p> http://stackoverflow.com/questions/1693850/named-pipes-between-vc-6-0-and-c-visual-studio-2008 0 Named pipes between VC++ 6.0 and C# visual studio 2008. sreeni 2009-11-07T17:48:10Z 2009-11-07T18:01:15Z <p>hi,</p> <p>I am doing a project in which i am using VC++ and C# both. VC++ is for hardware interface (no other go, i must use VC++ only) and the application side i am using C# (micro soft visual studio 2008).</p> <p>For both the programs to communicate to each other i am using named pipes (this is also must).</p> <p>I am able to communicate between C# and VC++, but NOT VC++ to C#.</p> <p>I have given the code below which i am using in C#.</p> <pre><code>using (NamedPipeServerStream pipeStream = new NamedPipeServerStream("mytestpipe")) { pipeStream.WaitForConnection(); Console.WriteLine("[Server] Pipe connection established"); using (StreamReader sr = new StreamReader(pipeStream)) { while ((temp = sr.ReadLine()) != null) { MessageBox.Show(temp)); } } } </code></pre> <p>The problem here is the <code>sr.ReadLine()</code>. is not terminated at all. It should stop once it finds null, but the null value given by VC++ is not taken as NULL in C#.</p> <p>Now how should i go about?</p> http://stackoverflow.com/questions/1685985/is-4-5-years-the-midlife-crisis-for-a-programming-career 91 Is 4-5 years the “Midlife Crisis” for a programming career? Jeffrey 2009-11-06T07:26:18Z 2009-11-07T18:01:05Z <p>I’ve been programming C# professionally for a bit over 4 years now. For the past 4 years I’ve worked for a few small/medium companies ranging from “web/ads agencies”, small industry specific software shops to a small startup. I've been mainly doing "business apps" that involves using high-level programming languages (garbage collected) and my overall experience was that all of the works I’ve done could have been more professional. A lot of the things were done incorrectly (in a rush) mainly due to cost factor that people always wanted something “now” and with the smallest amount of spendable money. I kept on thinking maybe if I could work for a bigger companies or a company that’s better suited for programmers, or somewhere that's got the money and time to really build something longer term and more maintainable I may have enjoyed more in my career. I’ve never had a “mentor” that guided me through my 4 years career. I am pretty much blog / google / self taught programmer other than my bachelor IT degree. </p> <p>I’ve also observed another issue that most so called “senior” programmer in “my working environment” are really not that senior skill wise. They are “senior” only because they’ve been a long time programmer, but the code they write or the decisions they make are absolutely rubbish! They don't want to learn, they don't want to be better they just want to get paid and do what they've told to do which make sense and most of us are like that. Maybe that’s why they are where they are now. But I don’t want to become like them I want to be better. I’ve run into a mental state that I no longer intend to be a programmer for my future career. I started to think maybe there are better things out there to work on. The more blogs I read, the more “best practices” I’ve tried the more I feel I am drifting away from “my reality”. But I am not a great programmer otherwise I don't think I am where I am now. I think 4-5 years is a stage that can be a step forward career wise or a step out of where you are.</p> <p>I just wanted to hear what other have to say about what I’ve mentioned above and whether you’ve experienced similar situation in your past programming career and how you’ve dealt with it. Thanks.</p> http://stackoverflow.com/questions/1693737/when-do-we-go-for-multithreading-in-c 0 when do we go for multithreading in c#? Jebli 2009-11-07T17:12:53Z 2009-11-07T17:40:41Z <p>Hi, I know how to implement multithreading using c#. But I want to know how is it working like.</p> <ol> <li>will only one thread run at a time and when that thread is waiting will it execute the second thread?</li> <li>If the second thread is executing and the first thread is ready. What will happen?</li> <li>Which thread will be given the priority?</li> </ol> <p>I am confused in understanding the concept. I want to understand why do we go for multithreading and when do we use it .</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1690840/converting-an-rgb-image-to-hsv 0 Converting an rgb image to hsv Can Doralp 2009-11-06T22:13:32Z 2009-11-07T17:40:24Z <p>Hi,</p> <p>I'm trying to convert an rgb image to the equivalent hsv one in C#. I found several algorithms to do the conversion but couldn't find how to save these values of an image after calculating it.</p> <p>For example after the calculation h = 287, s = 0.5, v = 0.34 . Where should I save these values in the image file to convert it to the equivalent hsv image ?</p> http://stackoverflow.com/questions/1693814/where-can-i-find-a-library-to-read-write-analyze-v-7-5-images-in-c 0 Where can I find a library to read/write Analyze v 7.5 images in C#? mmr 2009-11-07T17:38:46Z 2009-11-07T17:38:46Z <p>As the question asks: I've to a bunch of images that I need to be able to both read and write using the <a href="http://en.wikipedia.org/wiki/Analyze%5F%28imaging%5Fsoftware%29" rel="nofollow">Analyze 7.5 image format</a>. Using search terms like 'analyze image' causes my google-fu to fail, hence asking here.</p> http://stackoverflow.com/questions/1693682/moving-emails-to-different-folders-using-imap 0 Moving emails to different folders using IMAP James 2009-11-07T16:55:27Z 2009-11-07T17:36:49Z <p>Hi,</p> <p>I am currently using Lumisofts <a href="http://www.lumisoft.ee/lsWWW/Download/Downloads/Net/" rel="nofollow">library</a> for connecting to exchange server using IMAP.</p> <p>When I call the <code>IMAP_Client.FetchMessages</code> this works perfectly fine and I retrieve all the emails in a particular folder. I am then able to move/delete emails to/from this folder using the <code>MoveMessages</code> and <code>DeleteMessages</code> methods.</p> <p>However, I noticed that if I move an email from a folder and then attempt to move the same email to another folder it doesn't seem to work.</p> <p>I keep track of the <code>IMAP_FetchItem.UID</code> and I use this when moving/deleting. After some research I found that this is the ID of the email when it is in that particular folder. Hence, when I move it to another folder and attempt to move it again using the same ID it doesn't work. If I use the <code>IMAP__FetchItem.Envelope.MessageID</code> this is indeed the global identifier (issued by exchange) however I don't know how I can re-fetch the email using this ID once I have moved it to another folder using <code>IMAP_Client</code>.</p> <p>Any idea's as to how I can resolve this issue?</p> http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines 3 TransactionScope automatically escalating to MSDTC on some machines? Yoopergeek 2009-11-06T22:24:33Z 2009-11-07T17:33:54Z <p>In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to <em>not</em> require the MSDTC service to be enabled on our end-user's machines. </p> <p>Trouble is, on half of our developers machines, we can run with MSDTC disabled. The other half must have it enabled or they get the <em>"MSDTC on [SERVER] is unavailable"</em> error message. </p> <p>It's really got me scratching my head and has me seriously considering rolling back to a home-spun TransactionScope-like solution based on ADO.NET transaction objects. It's seemingly insane - the same code that works (and does not escalate) on half of our developer's <strong>does</strong> escalate on the other developer's.</p> <p>I was hoping for a better answer to <a href="http://stackoverflow.com/questions/506733/">http://stackoverflow.com/questions/506733/</a> but unfortunately it doesn't. </p> <p>Here's a sample bit of code that will cause the trouble, on the machines that try to escalate, it tries to escalate on the second connection.Open() (and yes, there is no other connection open at the time.)</p> <pre><code>using (TransactionScope transactionScope = new TransactionScope() { using (SqlConnection connection = new SqlConnection(_ConStr)) { using (SqlCommand command = connection.CreateCommand()) { // prep the command connection.Open(); using (SqlDataReader reader = command.ExecuteReader()) { // use the reader connection.Close(); } } } // Do other stuff here that may or may not involve enlisting // in the ambient transaction using (SqlConnection connection = new SqlConnection(_ConStr)) { using (SqlCommand command = connection.CreateCommand()) { // prep the command connection.Open(); // Throws "MSDTC on [SERVER] is unavailable" on some... // gets here on only half of the developer machines. } connection.Close(); } transactionScope.Complete(); } </code></pre> <p>We've really dug in and tried to figure this out. Here's some info on the machines that it works on:</p> <ul> <li>Dev 1: Windows 7 x64 SQL2008 </li> <li>Dev 2: Windows 7 x86 SQL2008 </li> <li>Dev 3: Windows 7 x64, SQL2005</li> </ul> <p>Developers it doesn't work on:</p> <ul> <li>Dev 4: Windows 7 x64, SQL2008</li> <li>Dev 5: Windows Vista x86, SQL2005</li> <li>Dev 6: Windows XP X86, SQL2005</li> <li>My Home PC : Windows Vista Home Premium, x86, SQL2005</li> </ul> <p>I should add that all machines, in an effort to hunt down the problem, have been fully patched with everything that's available from Microsoft Update.</p> <p>Update 1:</p> <ul> <li><a href="http://social.msdn.microsoft.com/forums/en-US/windowstransactionsprogramming/thread/a5462509-8d6d-4828-aefa-a197456081d3/" rel="nofollow">http://social.msdn.microsoft.com/forums/en-US/windowstransactionsprogramming/thread/a5462509-8d6d-4828-aefa-a197456081d3/</a> describes a similar problem...back in 2006!</li> <li><a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope%28VS.80%29.aspx</a> - read that code sample, it clearly demonstrates a nested-second connection (to a second SQL server, actually) which will escalate to DTC. <em>We are not doing this in our code</em> - we're not using different SQL servers, nor different connection strings, nor do we have nested secondary connections opening - <em>there should not be escalation to DTC</em>.</li> <li><a href="http://davidhayden.com/blog/dave/archive/2005/12/09/2615.aspx" rel="nofollow">http://davidhayden.com/blog/dave/archive/2005/12/09/2615.aspx</a> (from 2005) talks about how escalation to DTC will always happen when connecting to SQL2000. We're using SQL2005/2008</li> <li><a href="http://msdn.microsoft.com/en-us/library/ms229978.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms229978.aspx</a> MSDN on transaction escalation. </li> </ul> <p>That MSDN transaction-escalation page states that the following conditions will cause a transaction to escalate to DTC:</p> <ol> <li>At least one durable resource that does not support single-phase notifications is enlisted in the transaction.</li> <li>At least two durable resources that support single-phase notifications are enlisted in the transaction. For example, enlisting a single connection with does not cause a transaction to be promoted. However, whenever you open a second connection to a database causing the database to enlist, the System.Transactions infrastructure detects that it is the second durable resource in the transaction, and escalates it to an MSDTC transaction.</li> <li>A request to "marshal" the transaction to a different application domain or different process is invoked. For example, the serialization of the transaction object across an application domain boundary. The transaction object is marshaled-by-value, meaning that any attempt to pass it across an application domain boundary (even in the same process) results in serialization of the transaction object. You can pass the transaction objects by making a call on a remote method that takes a Transaction as a parameter or you can try to access a remote transactional-serviced component. This serializes the transaction object and results in an escalation, as when a transaction is serialized across an application domain. It is being distributed and the local transaction manager is no longer adequate.</li> </ol> <p>We're not experiencing #3. #2 is not happening because there is only ever one connection at a time, and it's also to a single 'durable resource'. Is there any way that #1 could be happening? Some SQL2005/8 configuration that causes it to not support single-phase notifications?</p> http://stackoverflow.com/questions/1693524/what-or-mappers-allow-one-to-many-and-one-to-one-relationship-between-the-same-ta 2 What OR-mappers allow one-to-many AND One-to-one relationship between the same tables? andyp 2009-11-07T16:11:55Z 2009-11-07T17:29:41Z <p>Hi,</p> <p>I'm currently looking for an OR-mapper to use for a side project I'm about to start. Since we're using an inhouse developed OR-mapper at work I don't really know much about how other mappers work (and have a pretty incomplete picture of which exist). After some research it seems that NHibernate, Linq-to-SQL and Entity Framework are the most commonly used ones.</p> <p>So here's my question: is it possible in [insert your favorite ORM here] to map a one-to-many AND a one-to-one relation between the same tables <strong>and how is it done (elegantly)?</strong> A simple example for this is to store a list of items (one-to-many) and the selected item (one-to-one).</p> <p>The reason I chose this particular question is that it's a painpoint with our inhouse OR-mapper: it just doesn't allow more than one relation between two tables. What I want to gain from asking this is some insight from people who are working with those mappers to aid me in deciding which (existing!) OR-mapper to use for my side project. </p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1689554/telnet-server-backspace-delete-not-working 0 Telnet server -> backspace/delete not working Tom Frey 2009-11-06T18:53:38Z 2009-11-07T17:28:41Z <p>Hi,</p> <p>I'm implementing a simple proof of concept Telnet server in C# and telnet to it via the windows built in telnet client. I echo all non IAC data back to the client. However, I can't figure out how to get backspace/delete to work correctly. I tried several combinations acting on 'BS' from the telnet client: </p> <ul> <li>'BS' (moves cursor back by one but doesn't delete character)</li> <li>'BS''DEL' (same result as 'BS' only)</li> <li>'BS''DEL''ESC[3~' (same result)</li> </ul> <p>Can anyone please point me to what's the correct control sequence to backspace and remove the character from the screen?</p> <p>Thanks,</p> <p>Tom</p> http://stackoverflow.com/questions/1691575/what-orm-for-net-should-i-use 5 What ORM for .net should I use? eKek0 2009-11-07T01:28:08Z 2009-11-07T17:24:29Z <p>I'm relatively new to .NET and have being using Linq2Sql for a almost a year, but it lacks some of the features I'm looking for now. </p> <p>I'm going to start a new project in wich I want to use an ORM with the following characteristics:</p> <ul> <li>It has to be very productive, I don't want to be dealing with the access layer to save or retrieve objects from or to the database, but it should allows me to easily tweak any object before actually commit it to the database; also it should allows me to work easily with a changing database schema</li> <li>It should allows me to extend the objects mapped from the database, for example to add virtual attributes to them (virtual columns to a table)</li> <li>It has to be (at least allmost) database agnostic, it should allows me to work with different databases in a transparent way</li> <li>It has to have not so much configuration or must be based on conventions to make it work</li> <li>It should allows me to work with Linq</li> </ul> <p>So, do you know any ORM that I could use? Thank you for your help.</p> <p><strong>EDIT</strong> I know that an option is to use NHibernate. This appears as the facto standard for entreprise level applications, but also it seems that is not very productive because its deep learning curve. In other way, I have read in some other post here in SO that it doesn't integrate well with Linq. Is all of that true?</p> http://stackoverflow.com/questions/1480072/how-to-serialize-objects-in-flex-for-a-c-backend 1 How to serialize objects in flex for a c# backend Jorge 2009-09-26T00:25:44Z 2009-11-07T17:18:25Z <p>We are developing an app with a Flex frontend and a C# backend, connected through web services. We are using the FLex Builder 3's Web Service Manager to autogenerate the webservice classes. The problem araise when Flex serialize our objects, for example, when we have a Number property with no value, this is serialized as NaN, and our backend doesn't know about NaN. Another example is when we serialize a cyclic reference, we get a stack over flow exception. I know in java, for example, you can configure the way xstream work with cyclic reference... So, the question is, can we change the way Flex serialize the objects so C# can work with this frontend? Is there any issue we should know about how flex serialize objects? Thanks! Jorge</p> http://stackoverflow.com/questions/1681552/vsx-custom-packages-project-type-to-mimik-debug-start-action-start-exter 0 VSX: Custom Package's Project Type to mimik "Debug >> Start Action >> Start External Program" Jason 2009-11-05T16:03:22Z 2009-11-07T17:16:58Z <p>I have a custom project type based on the C# Class Library project type in a VSX Package (2008+). For this project type, even though the output is a class library, I want to be able to debug this app just by pressing F5 (etc). I have a prebuilt executable that takes an assembly path as a command-line argument and loads it for workbench testing.</p> <p>I can simulate this behavior manually by using the Project's "Debug >> Start Action >> Start External Program" in the property pages by providing the path to the executable and providing the relative path to the output dll as a command line argument. But this is too much setup. I would want the project type's package code to be able to grab the assembly of the active configuration and the installed location of the workbench executable automatically.</p> <p>The worst case scenario would be that after every successful build, the property pages for that project are updated programmatically with the correct values. I don't particularly like this solution because it seems messy, seems like it would be easy to get out of sync and expose those potential errors to the user.</p> <p>The best solution that I can imagine involved intercepting the Start Debugger event (only for this project type) before it craps out with "A project with an Output Type of Class Library cannot be started directly" and executes the workbench instead (debugger attached, of course). I don't know if VSX exposes the necessary parts. </p> <p>I would pay to have this simple (?) package (along with a few other requirements, mainly a project-level menu item, already partially implemented) written by someone with experience, but I haven't found any consultants that specialize in VSX packages. Recommendations are welcome.</p> <p>Am I taking the wrong approach? I'm assuming I need a package rather than an add-in.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1687811/manually-putting-together-parts-of-a-date 0 Manually putting together parts of a date coffeeaddict 2009-11-06T14:05:09Z 2009-11-07T16:59:28Z <p>Ok, I'm not quite sure how to go about this. Here's the scenario.</p> <p><strong>1)</strong> On a web form we have 3 dropdowns: Month, Day, and Year</p> <p><strong>2)</strong> Year is always optional (not required)</p> <p><strong>3)</strong> If the customer enters month and day, and not year, we want to default the year to 1900</p> <p><strong>4)</strong> If the customer does enter all 3, I need to piece together a DateTime to represent that. Either way, the year is going to have something...either a valid year or 1900 if the user did not select year.</p> <p>So in my code-behind, I'm not quite sure how to set all this up. Ultimately I need to form that date so I can update the SQL 2008 Date datatype once I send down the date to my DL update function. </p> <p>So I created a DataTime variable in my code-behind method that picks up the values that the user has selected in each dropdown. However I guess there's no setter on DateTime.Year and so fourth. So I can't just do DateTime.year = "1900" or something to that effect.</p> http://stackoverflow.com/questions/1693656/extract-audio-from-flv-stream-in-c 0 Extract Audio from FLV stream in C# Alon 2009-11-07T16:47:46Z 2009-11-07T16:58:15Z <p>I'd like to extract audio stream from a FLV stream in C#. I searched in Google and I found <a href="http://moitah.net/#FLVExtract" rel="nofollow">FLVExtract</a>, but it supports only extracting from FLV files, and not from streams.</p> <p>How can I do this?</p> http://stackoverflow.com/questions/1693664/using-method-attributes-to-eliminate-redundant-code 0 Using method attributes to eliminate redundant code Martin 2009-11-07T16:51:10Z 2009-11-07T16:56:07Z <p>I have the following method which prints lines to the console.</p> <pre><code>public void MyMethod() { try { Console.WriteLine("Hello!"); Console.WriteLine("My name is MyMethod"); } finally { Console.WriteLine("Bye."); } } </code></pre> <p>I have a few of these methods and they all do the same thing (i.e. try { "Hello"; Something; } finally { "Bye." }). To avoid redundancy and make my code clearer, I came up with the following:</p> <pre><code>public void SayHello(Action myName) { try { Console.WriteLine("Hello!"); myName(); } finally { Console.WriteLine("Bye."); } } public void MyMethod2() { SayHello(() =&gt; Console.WriteLine("My name is MyMethod")); } </code></pre> <p>I like this technique, but I think it could be even better by using an attribute. Here is what I would like to ultimately achieve:</p> <pre><code>[SayHello] public void MyMethod2() { Console.WriteLine("My name is MyMethod"); } </code></pre> <p>It would be great if I could simply add a method attribute to help me eliminate redundancy (i.e. try { "Hello"; Something; } finally { "Bye." }). Is it possible in C# to create such attribute?</p> http://stackoverflow.com/questions/1692473/c-trim-html-snippet-inside-webbrowser 0 C# - Trim HTML Snippet inside WebBrowser Nate Shoffner 2009-11-07T08:54:56Z 2009-11-07T16:51:43Z <p>I am loading a specific web page in a WebBrowser control. Is there a way to take the following HTML that would be located within this page and save it as a string and trim it down?</p> <p>Here's an example:</p> <p>HTML Snippet:</p> <pre><code>&lt;div class="alertText"&gt;26 friends joined&lt;/div&gt; </code></pre> <p>Trimmed:</p> <p>26</p> <p>I'm sorry for the very vague description, but I'm not really sure how to word this. Thank you.</p> http://stackoverflow.com/questions/1693612/how-do-i-keep-my-c-windows-form-responsive-while-it-churns-loops 2 How do I keep my C# Windows Form Responsive while it churns loops? Ryan 2009-11-07T16:38:23Z 2009-11-07T16:47:11Z <p>I have this massive nested loop scenario that is calling the DB and making HTTP requests to Basecamp API. At first it was a web app but it took much time to run the app so the user (billing department) would often quit out early or complain because it would take so long with no feedback and no way to cancel it. I wanted to make it more responsive and give it a Cancel button as well as a real time log, I also wanted to make it more controllable. I put it in forms so they could have control of every instance of it and have a cancel button and a real time log. However when I hooked it all up with form buttons, multi-line text box to replace the response and error log, I cannot get anything to work! I added checks in the loop to break out if Cancel becomes pressed. However I can't even click cancel and the multiline textbox will not live update when I .Text.Insert and then .Update() it. The whole app just sits there and spins... How do I get it to be responsive, accept button clicks during looping, and live update the multi-line text box??</p> <p>NOTE: The thing compiles fine and I can step through it and it writes to a log file just fine so I can tell it's working after the fact that my form freezes up by looking at that log file.</p> <p>Here is the code I am trying to update the multi-line textbox with:</p> <pre><code>TimeSyncLog.Text.Insert(TimeSyncLog.Text.Length, "(((" + clientCode + ")))\n"); </code></pre> <p>And here is the code for my loop breakout:</p> <pre><code> if(CancelPressed) { TimeSyncLog.Text.Insert(TimeSyncLog.Text.Length, "\n\nSYNC STOPPED BY USER."); break; } </code></pre> <p>But I can never click the Cancel button to toggle that boolean because the window says 'Not Responding'...</p> http://stackoverflow.com/questions/509723/iis-permissions-for-saving-word-documents 0 IIS Permissions for Saving Word Documents codeforestcode 2009-02-04T01:11:36Z 2009-11-07T16:37:56Z <p>Our ASP.NET/C# lets users edit and manage Word (OpenXML) documents that are hosted on a server. I am using client-side <code>VBScript</code> functions to handle some of the editing functions including saving the document to a folder on the server. For the save functionality, I am using the following function call :</p> <pre><code>Document.SaveAs "http://server/savefolder/savefile.docx" </code></pre> <p>I have given "Full Control" permissions on savefolder to both the <code>NETWORK SERVICE</code> and the <code>IUSR_MACHINE</code> users. Yet the above call fails. The error number returned is <code>5096</code>. The error message is some gibberish that doesn't make any sense. </p> <p>The server is Windows 2003 and the IIS version is 6.0. I have installed the OpenXML SDK 2.0 CTP on the server. </p> <p>I can successfully read and print documents. </p> <p>Does anyone tell me what I am doing wrong? or what additional settings need to be in place? </p> http://stackoverflow.com/questions/1693526/dynamic-linq-queries 0 Dynamic LINQ Queries. StevenzNPaul 2009-11-07T16:12:49Z 2009-11-07T16:26:50Z <p>Is it possible to create Linq Queries at runtime. Using an xml rule which can be translated to a Linq Query.</p> <p> </p> http://stackoverflow.com/questions/1688991/how-to-set-and-delete-cookies-from-webbrowser-control-for-arbitrary-domains 1 How to set and delete cookies from WebBrowser Control for arbitrary domains dr. evil 2009-11-06T17:12:57Z 2009-11-07T16:22:33Z <p>How can I set and delete cookies for a domain in webbrowser control without using Javascript (<em>which doesn't allow to set / delete cookies without navigating to the website first.</em>)</p> http://stackoverflow.com/questions/1687558/calling-unmanaged-function-from-c-should-i-pass-stringbuilder-or-use-unsafe-cod 2 Calling unmanaged function from C#: should I pass StringBuilder or use unsafe code? jmgant 2009-11-06T13:20:54Z 2009-11-07T16:15:16Z <p>I've got a C# program that needs to pass a char buffer to an unmanaged function. I've found two ways that seem to work reliably, but I'm not sure which I should choose.</p> <p>Here's the unmanaged function's signature.</p> <pre><code>extern "C" __declspec(dllexport) int getNextResponse(char *buffer); </code></pre> <p>The first option is to define the buffer as a StringBuilder, as follows.</p> <pre><code>//at class level... [DllImport("mydll.dll")] static extern int getNextResponse(StringBuilder buffer); //in main method body... StringBuilder sb = new StringBuilder(" ", 65536); int rc = getNextResponse(sb); </code></pre> <p>This is simple, and it works, and I think I basically understand why it works because the StringBuilder has a buffer behind the scenes, so (I assume) the interop layer is just marshalling the StringBuilder to a char *.</p> <p>The other option is using unsafe code.</p> <pre><code>//at class level... [DllImport("mydll.dll")] static extern int getNextResponse(byte* buffer); //separate method... private static unsafe int runGetNextResponse(byte[] buffer) { fixed (byte* p = buffer) { int rc = getNextResponse(p); return rc; } } //in main method body... byte[] b = new byte[65536]; int rc = runGetNextResponse(b); </code></pre> <p>The second approach is more code, but it's also more explicit about what's going on. </p> <p>Are these two approaches doing basically the same thing? Is there any reason to choose one over the other?</p> http://stackoverflow.com/questions/1660452/c-interpreter-without-compilation 4 C# Interpreter (without compilation) manitra 2009-11-02T10:23:21Z 2009-11-07T16:11:34Z <p>Hi,</p> <p>Is there a ready-to-use C# interpreter out there, that is does not rely on runtime compilation?</p> <p>My requirements are :</p> <ul> <li>A scripting engine</li> <li>Must Handle C# syntax</li> <li>Must work on medium-trust environments</li> <li>Must not use runtime compilation (CodeDomProvider ...) </li> <li>Open source (or at least free of charge both for personal and professional use)</li> </ul> <p>If this is not clear, I need something like Jint (<a href="http://jint.codeplex.com/" rel="nofollow">http://jint.codeplex.com/</a>), but which allows me to write C# scripts instead of JavaScript ones.</p> <p>Thanks for your help.</p> http://stackoverflow.com/questions/1152074/how-do-i-install-visual-c-express-it-says-i-have-old-version-of-visual-studio 0 How do I install Visual C# express?? It says I have old version of Visual Studio but I don't Ali 2009-07-20T07:12:55Z 2009-11-07T16:09:46Z <p>How do I stop Visual Studio Express SP1 install detecting old version that doesn’t exist? </p> <p>I haven't installed Visual Studio before on my computer. However when I try to install Visual Studio C# 2008 Express SP1 I get an error message:</p> <p>"Setup has detected that this computer does not meet the requirements to install this software. These requirements must be met before you can install Microsoft Visual C++ 2008 Express Edition with SP1 - ENU"</p> <p>Requirements and Software Prerequisites Visual Studios 2008 Service Pack 1 An earlier version of Microsoft Visual Studio 2008 has been detected on the system that must be updated to SP1 before installation can proceed. Please update all other versions of Visual Studio 2008 to SP1 by visiting Microsoft Update and then install Visual Studio 2008 Express SP1.</p> <p>I'm not sure why I get this message since I have not installed VS2008 before. I've tried to run the VS2008 Patch Removal Tool but it says "Visual Studio 2008 Service Pack Preparation does not apply". I've applied all the patches from Microsoft Update but still get the same error. Any ideas what could be wrong?</p> http://stackoverflow.com/questions/1693402/obfuscationreflection 1 Obfuscation+Reflection. StevenzNPaul 2009-11-07T15:25:52Z 2009-11-07T16:08:12Z <p>How can I get a PropertyInfo by name using GetType().GetProperty("MypropName") of a type which is obfuscated.</p>