User Mats Fredriksson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T00:08:01Z http://stackoverflow.com/feeds/user/2973 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1729973/filter-sql-queries-on-the-xml-column-using-xpath-xquery 1 Filter SQL queries on the XML column using XPath/XQuery Mats Fredriksson 2009-11-13T15:33:51Z 2009-11-13T16:53:24Z <p>I'm having a table with one XML column. I'd like to filter out the rows where a specific attribute in the XML match a string, essentially doing a WHERE or HAVING.</p> <p>The table looks something like this</p> <pre><code>| id | xml | </code></pre> <p>And the XML something similar to </p> <pre><code>&lt;xml&gt; &lt;info name="Foo"&gt; &lt;data .../&gt; &lt;/info&gt; &lt;xml&gt; </code></pre> <p>I want to get all ids where the @name attribute matched a value.</p> <p>I have been able to do the following:</p> <pre><code>SELECT id, xml.query('data(/xml/info/@name)') as Value FROM Table1 WHERE CAST(xml.query('data(/xml/info/@name)') as varchar(1024)) = @match </code></pre> <p>But it's incredibly slow.</p> <p>There must be a better way of filtering on the output of the query.</p> http://stackoverflow.com/questions/1729973/filter-sql-queries-on-the-xml-column-using-xpath-xquery/1730135#1730135 2 Answer by Mats Fredriksson for Filter SQL queries on the XML column using XPath/XQuery Mats Fredriksson 2009-11-13T15:59:23Z 2009-11-13T16:53:24Z <p>Found it. Instead of using query() I should be using <a href="http://msdn.microsoft.com/en-us/library/ms189869.aspx" rel="nofollow">exist()</a>.</p> <p>My query would then be</p> <pre><code>SELECT id, xml.query('data(/xml/info/@name)') as Value FROM Table1 WHERE xml.exist('/xml/info/[@name=sql:variable("@match")]') = 1 </code></pre> http://stackoverflow.com/questions/1679876/atexit-exit-delegate-in-c 0 atexit, exit delegate in c# Mats Fredriksson 2009-11-05T11:16:46Z 2009-11-05T11:46:05Z <p>In c++ there is a function called <a href="http://www.cplusplus.com/reference/clibrary/cstdlib/atexit/" rel="nofollow">atexit</a> where you can register functions which should be run when the system exits. Are there any similar events in C#?</p> <p>UPDATE: The AppDomain.ProcessExit doesn't seem to catch Ctrl-C or Ctrl-Break. Anyone knows anything about that?</p> http://stackoverflow.com/questions/1571426/multithreaded-syncronised-listt/1571468#1571468 3 Answer by Mats Fredriksson for Multithreaded Syncronised List<T> Mats Fredriksson 2009-10-15T10:16:56Z 2009-10-15T10:34:14Z <p>There are a couple of thread issues here.</p> <p>1. I think the GetEnumerator functions exposes a thread issue here. They give away a reference to the innerCache that is not controlled by your locks.</p> <p>Example where it may break down is if you have a thread doing a foreach over the list while another thread is removing or inserting elements. </p> <p>The solution would be to copy the list and return an enumerator on that newly cloned list instead. The draw back would be memory issues if the list is long.</p> <p>2. The Contains() and IndexOf() functions are more or less useless unless you have another locking method outside of the synchronised list.</p> <p>Example: Thread A gets index of object, Thread B inserts/removed/updates that object, Thread A index is now stale.</p> <p><hr /></p> <p>I don't think this is a great idea really with a fully synchronised list. Write a customised version instead with limited functionality.</p> <p>If you only need a queue or stack, implement that one with only the two or three necessary methods that are fully synchronised. If you need more functionality than that, use a List and have the different threads do the synchronisation.</p> http://stackoverflow.com/questions/154749/communicating-with-a-flash-server-using-rtmp-without-flash 2 Communicating with a flash server using rtmp without Flash Mats Fredriksson 2008-09-30T20:06:34Z 2009-09-30T07:53:24Z <p>I want to talk to a flash server which uses RTMP, but I don't want to use Flash, but rather c# or java.</p> <p>I was looking at Red5 but their client API seems to be a bit wobbly.</p> <p>Does anyone have any other ideas?</p> http://stackoverflow.com/questions/1404169/store-timestamp-in-gridview 0 Store Timestamp in GridView Mats Fredriksson 2009-09-10T08:57:43Z 2009-09-10T16:15:12Z <p>I have a table with three columns that I need to display on a ASP.NET page. (SQL Server 2005, ASP.NET 2.0)</p> <pre><code>id int value varchar(50) tstamp timestamp </code></pre> <p>I use the <a href="http://msdn.microsoft.com/en-us/library/ms182776%28SQL.90%29.aspx" rel="nofollow">timestamp</a> field to handle concurrency validation so it's for internal use only and will never be displayed to the end user. But I need to store it somewhere in order to do proper updates.</p> <p>Here's my update sproc.</p> <pre><code>UPDATE ValueTable SET value = @value WHERE (id = @id) AND (tstamp = @tstamp) SELECT @tstamp=tstamp FROM ValueTable WHERE id=@id </code></pre> <p>I use a SqlDataSource to connect to my database and the schema has all three columns. My grid view will only display two fields since the timestamp field is hidden (Visible=False)</p> <p>When I profile my asp page it looks like it doesn't store the timestamp anywhere even though I have a "hidden" field in the table.</p> <p>How would you store a timestamp value in general on a web page? It should never be displayed, but it is needed for any updates.</p> http://stackoverflow.com/questions/1404169/store-timestamp-in-gridview/1406254#1406254 0 Answer by Mats Fredriksson for Store Timestamp in GridView Mats Fredriksson 2009-09-10T16:15:12Z 2009-09-10T16:15:12Z <p>After a lot of playing around I think I found a half-decent solution.</p> <p>The problem seems to be that fields that are "Visible=false" are not included or bound in any update or delete commands.</p> <p>The HiddenField works fine for Update commands, so if you are not doing any Delete commands you should be fine by including a hidden field which is bound (Bind(TStamp)) to the timestamp column in a templated field.</p> <p>The problem is that if you are doing Deletes as well it doesn't look at any bound, hidden fields.</p> <p>What I came up with was to add the timestamp to the data keys of the grid view. That way it will be considered a composite key together with the ID.</p> <p>So, in short, add the timestamp to the DataKeyNames of the GridView/DetailsView etc, and remove any visible fields. That seemed to do the trick.</p> http://stackoverflow.com/questions/1119799/method-chaining-in-c/1119812#1119812 1 Answer by Mats Fredriksson for Method-Chaining in C# Mats Fredriksson 2009-07-13T14:35:24Z 2009-07-13T14:35:24Z <p>Something like this?</p> <pre><code>class MyCollection { public MyCollection AddItem(Object item) { // do stuff return this; } } </code></pre> http://stackoverflow.com/questions/1043766/convert-byte-buffer-0-255-to-float-buffer-0-0-1-0/1043827#1043827 2 Answer by Mats Fredriksson for Convert BYTE buffer (0-255) to float buffer (0.0-1.0) Mats Fredriksson 2009-06-25T13:12:05Z 2009-06-25T13:12:05Z <p>Use a static lookup table for this. When I worked in a computer graphics company we ended up having a hard coded lookup table for this that we linked in with the project.</p> http://stackoverflow.com/questions/1013367/changing-angle-when-ball-hits-paddle/1013538#1013538 4 Answer by Mats Fredriksson for Changing angle when ball hits paddle Mats Fredriksson 2009-06-18T15:56:40Z 2009-06-19T09:36:17Z <p>Well, nothing realistic but you could do something so that the outbound angle is only dependent on where on the paddle it hits.</p> <p>I have never done any iPhone or objective C coding so I'll just write up something in pseudo/C code.</p> <p>First I'd calculate the speed, which is the length of the speed vector, or:</p> <pre><code>double speed = sqrt(velX * velX + velY * velY); // trigonometry, a^2 + o^2 = h^2 </code></pre> <p>Then we want to calculate the new angle based on where we hit the paddle. I'm going to assume that you store the X collision in impactX and the length of the paddle in paddleLength. That way we can calculate an outbound angle. First let's figure out how to calculate the range so that we get a value between -1 and 1.</p> <pre><code>double proportionOfPaddle = impactX / (double) paddleLength; // between 0 and 1 double impactRange = proportionOfPaddle * 2 - 1; // adjust to -1 and 1 </code></pre> <p>Let's assume that we do not want to deflect the ball completely to the side, or 90 degrees, since that would be pretty hard to recover from. Since I'm going to use the impactRange as the new velY, I'm going to scale it down to say -0.9 to 0.9.</p> <pre><code>impactRange = impactRange * 0.9; </code></pre> <p>Now we need to calculate the velX so that the speed is constant.</p> <pre><code>double newVelX = impactRange; double newVelY = sqrt(speed * speed - newVelX * newVelX); // trigonometry again </code></pre> <p>Now you return the newVelX and newVelY and you have an impact and speed dependent bounce.</p> <p>Good luck!</p> <p>(Might very well be bugs in here, and I might have inverted the X or Y, but I hope you get the general idea).</p> <p><em>EDIT</em>: Adding some thoughts about getting the impactX.</p> <p>Let's assume you have the ball.center.x and the paddle.center.x (don't know what you call it, but let's assume that paddle.center.x will give us the center of the paddle) we should be able to calculate the impactRange from that.</p> <p>We also need the ball radius (I'll assume ball.width as the diameter) and the paddle size (paddle.width?).</p> <pre><code>int ballPaddleDiff = paddle.center.x - ball.center.x; int totalRange = paddle.width + ball.width; </code></pre> <p>The smallest value for ballPaddleDiff would be when the ball is just touching the side of the paddle. That ballPaddleDiff would then be paddle.width/2 + ball.width/2. So, the new impactRange would therefore be</p> <pre><code>double impactRange = ballPaddleDiff / (double) totalRange / 2; </code></pre> <p>You should probably check the impactRange so that it actually is between -1 and 1 so that the ball doesn't shoot off into the stars or something.</p> http://stackoverflow.com/questions/852771/synchronisation-c/852810#852810 10 Answer by Mats Fredriksson for Synchronisation c# Mats Fredriksson 2009-05-12T13:31:51Z 2009-05-12T15:28:49Z <p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.aspx" rel="nofollow">AutoResetEvent</a> and <a href="http://msdn.microsoft.com/en-us/library/system.threading.manualresetevent.aspx" rel="nofollow">ManualResetEvent</a>. They are signals that makes synchronisation between threads possible.</p> <p>The first thread that needs to wait for something to get done will do myEvent.<a href="http://msdn.microsoft.com/en-us/library/58195swd.aspx" rel="nofollow">WaitOne</a>(), which blocks until the other thread calls myEvent.<a href="http://msdn.microsoft.com/en-us/library/system.threading.eventwaithandle.set.aspx" rel="nofollow">Set</a>().</p> <p>Let's say we have two threads, where one of them needs to do some kind of initialisation before the other thread can continue. You then share a AutoResetEvent between the two, let's call it myEvent.</p> <pre><code>// Signal example using System; using System.Threading; class MySync { private readonly AutoResetEvent _myEvent; public MySync(AutoResetEvent myEvent) { _myEvent = myEvent; } public void ThreadMain(object state) { Console.WriteLine("Starting thread MySync"); _myEvent.WaitOne(); Console.WriteLine("Finishing thread MySync"); } } class Program { static void Main(string[] args) { AutoResetEvent myEvent = new AutoResetEvent(false); MySync mySync = new MySync(myEvent); ThreadPool.QueueUserWorkItem(mySync.ThreadMain); Console.WriteLine("Press enter to continue..."); Console.ReadLine(); myEvent.Set(); Console.WriteLine("Press enter to continue..."); Console.ReadLine(); Console.WriteLine("Finishing"); } } </code></pre> <p>Don't confuse this with a shared resource where the access order doesn't matter. For example, if you have a shared list or a shared dictionary you need to wrap it in a mutex in order to guarantee that they execute correctly.</p> <pre><code>// Mutex example object mySync = new object(); Dictionary&lt;int, int&gt; myDict = new Dictionary&lt;int, int&gt;(); void threadMainA() { lock(mySync) { mySync[foo] = bar; } } void threadMainB() { lock(mySync) { mySync[bar] = foo; } } </code></pre> http://stackoverflow.com/questions/851662/monitor-wait-pulse-race-condition-in-a-multithreaded-server/852084#852084 4 Answer by Mats Fredriksson for Monitor.Wait/Pulse race condition in a multithreaded server Mats Fredriksson 2009-05-12T10:13:19Z 2009-05-12T10:18:58Z <p>The problem is that you are using Pulse/Wait as a signal. A proper signal, such as a AutoResetEvent has a state such that it stays signalled until a thread has called WaitOne(). Calling Pulse without any threads waiting on it will become a noop.</p> <p>This is combined with the fact that a lock can be taken many times by the same thread. Since you are using Async programming the Accept callback can be called by the same thread that did the BeginAcceptTcpClient. </p> <p>Let me illustrate. I commented out the second server, and changed some code on your server.</p> <pre><code>void ThreadStart() { if (!running) { listener.Start(); running = true; lock (sync) { while (running) { try { Console.WriteLine("BeginAccept [{0}]", Thread.CurrentThread.ManagedThreadId); listener.BeginAcceptTcpClient(new AsyncCallback(Accept), listener); Console.WriteLine("Wait [{0}]", Thread.CurrentThread.ManagedThreadId); Monitor.Wait(sync); // Release lock and wait for a pulse } catch (Exception e) { Console.WriteLine(e.Message); } } } } } void Accept(IAsyncResult result) { // Let the server continue listening lock (sync) { Console.WriteLine("Pulse [{0}]", Thread.CurrentThread.ManagedThreadId); Monitor.Pulse(sync); } if (running) { TcpListener localListener = (TcpListener)result.AsyncState; using (TcpClient client = localListener.EndAcceptTcpClient(result)) { handler.Handle(client.GetStream()); } } } </code></pre> <p>The output from my run shown below. If you run this code yourself the values will differ, but it will be the same in general. </p> <pre><code>Press return to test... BeginAccept [3] Wait [3] Press return to terminate... Pulse [5] BeginAccept [3] Pulse [3] Echo Handler: Test1 Echo Handler: Test3 Wait [3] </code></pre> <p>As you can see there are two Pulse's called, one from a separate thread (the Pulse [5]) which wakes up the first Wait. Thread 3 then does another BeginAccept, but having Pending incoming connections that thread decides to call the Accept callback immediately. Since the Accept is called by the same thread, the Lock(sync) doesn't block but Pulse [3] immediately on an empty thread queue.</p> <p>Two handlers are invoked and handles the two messages.</p> <p>Everything is fine, and the ThreadStart start to run again and goes to Wait indefinitely.</p> <p>Now, the underlying issue here is that you are trying to use a monitor as a signal. Since it doesn't remember the state the second Pulse get's lost.</p> <p>But there is an easy solution for this. Use AutoResetEvents, which is a proper signal and it will remember its state.</p> <pre><code>public Server(IHandler handler, int port) { this.handler = handler; IPAddress address = Dns.GetHostEntry(Dns.GetHostName()).AddressList[0]; listener = new TcpListener(address, port); running = false; _event = new AutoResetEvent(false); } public void Start() { Thread thread = new Thread(ThreadStart); thread.Start(); } public void Stop() { listener.Stop(); running = false; _event.Set(); } void ThreadStart() { if (!running) { listener.Start(); running = true; while (running) { try { listener.BeginAcceptTcpClient(new AsyncCallback(Accept), listener); _event.WaitOne(); } catch (Exception e) { Console.WriteLine(e.Message); } } } } void Accept(IAsyncResult result) { // Let the server continue listening _event.Set(); if (running) { TcpListener localListener = (TcpListener) result.AsyncState; using (TcpClient client = localListener.EndAcceptTcpClient(result)) { handler.Handle(client.GetStream()); } } } </code></pre> http://stackoverflow.com/questions/776624/whats-faster-iterating-an-stl-vector-with-vectoriterator-or-with-at/776793#776793 2 Answer by Mats Fredriksson for What's faster, iterating an STL vector with vector::iterator or with at()? Mats Fredriksson 2009-04-22T11:39:06Z 2009-04-22T11:39:06Z <p>As everyone else here is saying, do benchmarks.</p> <p>Having said that, I would argue that the iterator is faster since at() does range checking as well, i.e. it throws an out_of_range exception if the index is out of bounds. That check itself propbably incurrs some overhead.</p> http://stackoverflow.com/questions/751681/meaning-of-const-last-in-a-c-method-declaration/751783#751783 2 Answer by Mats Fredriksson for Meaning of "const" last in a C++ method declaration? Mats Fredriksson 2009-04-15T13:49:27Z 2009-04-15T13:49:27Z <p>When you add the <code>const</code> keyword to a method the <code>this</code> pointer will become const, and you can therefore not change any member code. (Unless you use <code>mutable</code>, more on that later).</p> <p>The <code>const</code> keyword is part of the functions signature which means that you can implement two similar methods, one which is called when the object is const, and one that isn't.</p> <pre><code>#include &lt;iostream&gt; class ConstClass { private: int counter = 0; public: void Foo() { std::cout &lt;&lt; "Foo" &lt;&lt; std::endl; } void Foo() const { std::cout &lt;&lt; "Foo const" &lt;&lt; std::endl; } }; int main(void) { ConstClass* cc = new ConstClass(); const ConstClass* ccc = cc; cc-&gt;Foo(); ccc-&gt;Foo(); delete cc; ccc = null; return 0; } </code></pre> <p>This will output</p> <pre><code>Foo Foo const </code></pre> <p>In the non-const method you can change the instance members, which you cannot do in the const version. If you change the method declaration in the above example to the code below you will get some errors.</p> <pre><code>void Foo() { counter++; //this works std::cout &lt;&lt; "Foo" &lt;&lt; std::endl; } void Foo() const { counter++; //this will not compile std::cout &lt;&lt; "Foo const" &lt;&lt; std::endl; } </code></pre> <p>This is not completely true, because you can mark a member as 'mutable' and a const method can then change it. It's mostly used for internal counters and stuff. The solution for that would be the below code.</p> <pre><code>#include &lt;iostream&gt; class ConstClass { private: mutable int counter; public: ConstClass() : counter(0) {} void Foo() { counter++; std::cout &lt;&lt; "Foo" &lt;&lt; std::endl; } void Foo() const { counter++; std::cout &lt;&lt; "Foo const" &lt;&lt; std::endl; } int GetInvocations() const { return counter; } }; int main(void) { ConstClass* cc = new ConstClass(); const ConstClass* ccc = cc; cc-&gt;Foo(); ccc-&gt;Foo(); printf("The ConstClass instance has been invoked %d times\n", ccc-&gt;GetInvocations()); delete cc; ccc = NULL; return 0; } </code></pre> <p>which would output</p> <pre><code>Foo Foo const The ConstClass instance has been invoked 2 times </code></pre> http://stackoverflow.com/questions/676731/c-threads-for-file-manipulation/676962#676962 2 Answer by Mats Fredriksson for C# threads for file manipulation Mats Fredriksson 2009-03-24T11:16:40Z 2009-03-24T11:16:40Z <p>I would recommend doing Asynchronous I/O. It's a little bit easier to set up and doesn't require you to create new threads yourself.</p> <p>Asynchronous programming is where you have, for example, a file stream you want to write to but does not want to wait for it to finish. You might want to be notified when it's finished but you don't want to wait.</p> <p>What you do is using the <a href="http://msdn.microsoft.com/en-us/library/system.io.stream.beginwrite%28VS.80%29.aspx" rel="nofollow">BeginWrite</a>/<a href="http://msdn.microsoft.com/en-us/library/system.io.stream.beginread%28VS.80%29.aspx" rel="nofollow">BeginRead</a> and <a href="http://msdn.microsoft.com/en-us/library/system.io.stream.endwrite%28VS.80%29.aspx" rel="nofollow">EndWrite</a>/<a href="http://msdn.microsoft.com/en-us/library/system.io.stream.endread%28VS.80%29.aspx" rel="nofollow">EndRead</a> functions that are available on the Stream class.</p> <p>In your method you start by calling BeginWrite with all the data you want to write and also pass in a callback function. This function will be called when BeginWrite has finished.</p> <p>Inside the callback function you call EndWrite and clean up the stream and check for errors.</p> <p>BeginWrite will not block which means that if it's called from within an event handler that thread can finish that handler and continue processing more event (such as other GUI events).</p> <pre><code>using System; using System.IO; using System.Text; class Program { private static FileStream stream; static void Main(string[] args) { stream = new FileStream("foo.txt", FileMode.Create, FileAccess.Write); const string mystring = "Foobarlalala"; ASCIIEncoding encoding = new ASCIIEncoding(); byte[] data = encoding.GetBytes(mystring); Console.WriteLine("Started writing"); stream.BeginWrite(data, 0, data.Length, callback, null); Console.WriteLine("Writing dispatched, sleeping 5 secs"); System.Threading.Thread.Sleep(5000); } public static void callback(IAsyncResult ia) { stream.EndWrite(ia); Console.WriteLine("Finished writing"); } } } </code></pre> <p>The sleeping is pretty important because the thread that's writing stuff will be killed if the main thread is killed off. This is not an issue in a GUI application, only here in this small example.</p> <p>MSDN has a <a href="http://msdn.microsoft.com/en-us/library/kztecsys%28VS.80%29.aspx" rel="nofollow">pretty good overview</a> on how to write this stuff, and also some <a href="http://msdn.microsoft.com/en-us/library/ms228969%28VS.80%29.aspx" rel="nofollow">good articles</a> on Asynch programming in general in case you go for the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker%28VS.80%29.aspx" rel="nofollow">backgroundworker</a> or <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx" rel="nofollow">ThreadPool</a>.</p> http://stackoverflow.com/questions/589451/how-to-get-the-data-source-information-from-a-ssrs-report-using-net/590655#590655 1 Answer by Mats Fredriksson for How to get the data source information from a SSRS report, using .NET Mats Fredriksson 2009-02-26T13:59:27Z 2009-02-27T08:56:09Z <p>You can use the ReportingService2005 API to get the datasource used by a particular report.</p> <p>You need the full path of the report (which I assume you have), and then use it to query the reporting service for its data source (<a href="http://msdn.microsoft.com/en-us/library/microsoft.wssux.reportingserviceswebservice.rsmanagementservice2005.reportingservice2005.getitemdatasources%28SQL.90%29.aspx" rel="nofollow">API</a>).</p> <pre><code>// rs = ReportingService2005 that you need to set up. DataSource ds; DataSources dataSources = rs.GetItemDataSources(item); // item is a string containing the full path to the report. dataSources = rs.GetItemDataSources(item); ds = dataSources[0]; </code></pre> <p>The ds in the code above is either a <a href="http://msdn.microsoft.com/en-us/library/microsoft.wssux.reportingserviceswebservice.rsmanagementservice2005.datasourcedefinition.connectstring%28SQL.90%29.aspx" rel="nofollow">DataSourceDefinition</a> or a <a href="http://msdn.microsoft.com/en-us/library/microsoft.wssux.reportingserviceswebservice.rsmanagementservice2005.datasourcereference%28SQL.90%29.aspx" rel="nofollow">DataSourceReference</a>. If it's a definition you can just cast it into that type and then get the connection string using the following code.</p> <pre><code>DataSourceDefinition dsd = ds as DataSourceDefinition(); if(dsd == null) throw new Exception(); String connectionString = dsd.ConnectString; </code></pre> <p>If it's a datasourcereference you need to check out the <a href="http://msdn.microsoft.com/en-us/library/ms159728%28SQL.90%29.aspx" rel="nofollow">API</a>.</p> http://stackoverflow.com/questions/506898/what-are-the-common-misuse-of-using-stl-container-with-iterators/506952#506952 7 Answer by Mats Fredriksson for What are the common misuse of using stl container with iterators? Mats Fredriksson 2009-02-03T12:47:25Z 2009-02-03T15:09:39Z <p>The end range check should be using != and not &lt; since the order of the pointers isn't guaranteed.</p> <p>Example:</p> <pre><code>for(it = list.begin(); it != list.end(); ++it) { // do stuff } </code></pre> http://stackoverflow.com/questions/464902/how-to-open-excel-file-in-c/465628#465628 0 Answer by Mats Fredriksson for How to open excel file in c#? Mats Fredriksson 2009-01-21T14:57:21Z 2009-01-21T14:57:21Z <p>It's easier to help you if you say what's wrong as well, or what fails when you run it.</p> <p>But from a quick glance you've confused a few things.</p> <p>The following doesn't work because of a couple of issues.</p> <pre><code>if (Directory("C:\\csharp\\error report1.xls") = "") </code></pre> <p>What you are trying to do is creating a new Directory object that should point to a file and then check if there was any errors. </p> <p>What you are actually doing is trying to call a function named Directory() and then assign a string to the result. This won't work since 1/ you don't have a function named Directory(string str) and you cannot assign to the result from a function (you can only assign a value to a variable).</p> <p>What you should do (for this line at least) is the following</p> <pre><code>FileInfo fi = new FileInfo("C:\\csharp\\error report1.xls"); if(!fi.Exists) { // Create the xl file here } else { // Open file here } </code></pre> <p>As to why the Excel code doesn't work, you have to check the documentation for the Excel library which google should be able to provide for you.</p> http://stackoverflow.com/questions/446358/storing-a-large-number-of-images/446434#446434 0 Answer by Mats Fredriksson for Storing a large number of images Mats Fredriksson 2009-01-15T11:35:54Z 2009-01-15T11:35:54Z <p>You can store the images in the database as blobs (<a href="http://msdn.microsoft.com/en-us/library/ms188362.aspx" rel="nofollow">varbinary</a> for mssql). That way you don't have to worry about the storage or directory structure. The only downside is that you can't easily browse the files, but that would be hard in a balanced directory tree anyway.</p> http://stackoverflow.com/questions/413618/c-array-that-can-be-resized-fast/413647#413647 12 Answer by Mats Fredriksson for C# - Array that can be resized fast Mats Fredriksson 2009-01-05T16:19:48Z 2009-01-05T16:25:19Z <p>You should use the Generic List&lt;> (<a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">System.Collections.Generic.List</a>) for this. It resizes itself automatically and in <a href="http://stackoverflow.com/questions/200384/constant-amortized-time">constant amortized time</a>.</p> <p>It also shares the following features with Arrays.</p> <ul> <li>Fast random access (you can access any element in the list in O(1))</li> <li>It's quick to loop over</li> <li>Slow to insert and remove objects in the start or middle (since it has to do a copy of the entire listbelieve)</li> </ul> <p>If you need quick insertions and deletions in the beginning or end, use either linked-list or queues</p> http://stackoverflow.com/questions/371136/binary-trees-vs-linked-lists-vs-hash-tables/371148#371148 0 Answer by Mats Fredriksson for Binary Trees vs. Linked Lists vs. Hash Tables Mats Fredriksson 2008-12-16T12:25:10Z 2008-12-16T12:25:10Z <p><a href="http://stackoverflow.com/questions/198079/where-can-i-learn-about-the-various-types-of-net-lists#198131">This question</a> goes through the different containers in C#, but they are similar in any language you use.</p> http://stackoverflow.com/questions/353013/applicationsettings-across-libraries 0 ApplicationSettings across libraries Mats Fredriksson 2008-12-09T14:59:45Z 2008-12-09T15:54:07Z <p>I'm trying to abstract out all database code into a separate library and then use that library in all my code. All database connections are done using typed TableAdapters that I create by dragging and dropping in datasets in VS2005, using a connection string from the appSettings.</p> <p>The problem that I haven't been able to solve is that .Net doesn't propagate the libraries appSettings to the other project that's using it.</p> <p>In short, I have a database layer library, MyProgram.DbLayer, which is used by other projects such as MyProgram.Client etc. When I had all the datasets in the .Client the connectionString was in MyProgram.Client.exe.config so that I could change it after build. When I moved it into the MyProgram.DbLayer that setting isn't avaliable to me after I build the binaries.</p> <p>EDIT: This seems to be a more general issue with ApplicationSettings.</p> <p>What I noticed was that if I manually add a setting only used in a library it will be properly read. The only thing I need now is for the setting to be automatically included in the .config file as well.</p> http://stackoverflow.com/questions/348964/how-to-use-foreach-keyword-on-custom-objects-in-c/348983#348983 0 Answer by Mats Fredriksson for How to use foreach keyword on custom Objects in C# Mats Fredriksson 2008-12-08T09:20:18Z 2008-12-08T09:20:18Z <p>(I assume C# here)</p> <p>If you have a list of custom objects you can just use the foreach in the same way as you do with any other object:</p> <pre><code>List&lt;MyObject&gt; myObjects = // something foreach(MyObject myObject in myObjects) { // Do something nifty here } </code></pre> <p>If you want to create your own container you can use the yield keyword (from .Net 2.0 and upwards I believe) together with the IEnumerable interface.</p> <pre><code>class MyContainer : IEnumerable&lt;int&gt; { private int max = 0; public MyContainer(int max) { this.max = max; } public IEnumerator&lt;int&gt; GetEnumerator() { for(int i = 0; i &lt; max; ++i) yield return i; } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } </code></pre> <p>And then use it with foreach:</p> <pre><code>MyContainer myContainer = new MyContainer(10); foreach(int i in myContainer) Console.WriteLine(i); </code></pre> http://stackoverflow.com/questions/321096/is-the-order-of-an-arraylist-guaranteed-in-c-net/321110#321110 3 Answer by Mats Fredriksson for Is the order of an arraylist guaranteed in C#.NET? Mats Fredriksson 2008-11-26T15:32:16Z 2008-11-26T15:32:16Z <p>Yes it is. Since it's stored as an array.</p> <p>Other properties are</p> <ul> <li>Guaranteed order</li> <li>Random access. You can access any element by index in O(1)</li> <li>Slow insert and delete in the beginning and middle.</li> <li>Unsorted. (Sorting should take O(n log n) using quicksort or similar)</li> </ul> http://stackoverflow.com/questions/301960/signalandwait-for-lock-context 1 SignalAndWait for lock-context Mats Fredriksson 2008-11-19T14:05:02Z 2008-11-19T14:10:24Z <p>I have a manager class that produces tasks for a threadpool, and each thread is supposed to do a call back once they are finished.</p> <p>I use locks to handle variables and fields, and signals to handle interthread communications. What I'm looking for is a way of exiting the current lock() and wait for a signal atomically, something like SignalAndWait, but for locks().</p> <p>The code looks something like this:</p> <pre><code>// ... part of the scheduler foreach(WorkTask task in worktasks) { lock(_syncObj) { new Job(task, myCallback); // creates a thread instanceCount++; while(instanceCount &gt; _maxConcurrentTasks) _resetEvent.WaitOne(Timeout.Infinite); } } // .. the callback void myCallback() { lock(_syncObj) { instanceCount--; _resetEvent.Set(); } } </code></pre> <p>The problem here is that .WaitOne() doesn't exit the lock(), so any thread doing a callback will dead-lock.</p> <p>I had high hopes for WaitOne(Int32, bool exitContext), but that context seems to be about remoting and stuff rather than synchronisations.</p> http://stackoverflow.com/questions/31867/are-there-any-examples-where-we-need-protected-inheritance-in-c/32062#32062 8 Answer by Mats Fredriksson for Are there any examples where we *need* protected inheritance in C++? Mats Fredriksson 2008-08-28T11:57:18Z 2008-11-11T08:55:57Z <p>People here seem to mistake Protected class inheritance and Protected methods.</p> <p>FWIW, I've never seen anyone use protected class inheritance, and if I remember correctly I think Stroustrup even considered the "protected" level to be a mistake in c++. There's precious little you cannot do if you remove that protection level and only rely on public and private. </p> http://stackoverflow.com/questions/252917/fastest-way-to-iterate-over-a-stack-in-c/252949#252949 5 Answer by Mats Fredriksson for Fastest way to iterate over a stack in c# Mats Fredriksson 2008-10-31T09:22:26Z 2008-10-31T15:12:39Z <p>Have you done any benchmarks, or are they just gut feelings?</p> <p>If you think that the majority of the processing time is spent looping through stacks you should benchmark it and make sure that that is the case. If it is, you have a few options.</p> <ol> <li>Redesign the code so that the looping isn't necessary</li> <li>Find a faster looping construct. (I would recommend generics even though it wouldn't matter that much. Again, do benchmarks).</li> </ol> <p>EDIT:</p> <p>Examples of looping that might not be necessary are when you try to do lookups in a list or match two lists or similar. If the looping takes a long time, see if it make sense to put the lists into binary trees or hash maps. There could be an initial cost of creating them, but if the code is redesigned you might get that back by having O(1) lookups later on.</p> http://stackoverflow.com/questions/232997/what-is-the-fastest-way-to-generate-a-unique-set-in-net-2/233024#233024 0 Answer by Mats Fredriksson for what is the fastest way to generate a unique set in .net 2 Mats Fredriksson 2008-10-24T10:35:29Z 2008-10-24T10:35:29Z <p>Use KeyValuePair as a wrapper class and then create a dictionary with to create a set perhaps? Or implement your own wrapper that overrides the Equals and GetHashCode.</p> <pre><code>Dictionary&lt;KeyValuePair, bool&gt; mySet; for(int i = 0; i &lt; keys.length; ++i) { KeyValuePair kvp = new KeyValuePair(keys[i], values[i]); mySet[kvp] = true; } </code></pre> http://stackoverflow.com/questions/224966/private-and-protected-members-c/225014#225014 0 Answer by Mats Fredriksson for Private and Protected Members : C++ Mats Fredriksson 2008-10-22T09:26:52Z 2008-10-22T09:26:52Z <p>It all depends on what you want to do, and what you want the derived classes to be able to see.</p> <pre><code>class A { private: int _privInt = 0; int privFunc(){return 0;} virtual int privVirtFunc(){return 0;} protected: int _protInt = 0; int protFunc(){return 0;} public: int _publInt = 0; int publFunc() { return privVirtFunc(); } }; class B : public A { private: virtual int privVirtFunc(){return 1;} public: void func() { _privInt = 1; // wont work _protInt = 1; // will work _publInt = 1; // will work privFunc(); // wont work privVirtFunc(); // wont work protFunc(); // will work publFunc(); // will return 1 since it's overridden in this class } } </code></pre> http://stackoverflow.com/questions/221467/c-generics-question/221488#221488 1 Answer by Mats Fredriksson for C# generics question Mats Fredriksson 2008-10-21T11:17:20Z 2008-10-21T11:17:20Z <p>I think the question is for looping over a collection of your classes.</p> <p><strong>Generic</strong></p> <pre><code>List&lt;Person&gt; pList = new List&lt;Person&gt;(); for(int i = 0; i&lt;1000; ++i) pList.Add(new Person(30)); StopWatch sw = new StopWatch(); sw.start(); int sum = 0; foreach(Person p in pList) sum += p.Value; sw.Stop(); </code></pre> <p><strong>Object</strong></p> <pre><code>ArrayList hList = new ArrayList; for(int i = 0; i&lt;1000; ++i) hList.Add(new Human(30)); StopWatch sw = new StopWatch(); sw.start(); int sum = 0; foreach(Object h in hList) sum += ((Human)h).Value; sw.Stop(); </code></pre> http://stackoverflow.com/questions/1709752/c-not-saving-right-in-array-why-will-it-save-the-first-one-but-not-the-rest Comment by Mats Fredriksson on C# - Not saving right in Array - why will it save the first one but not the rest? Mats Fredriksson 2009-11-10T17:41:50Z 2009-11-10T17:41:50Z Wow. Where to begin? Wallter: could you include some examples from the empdata.txt file? And perhaps add some comments? The method getSaveEmpdataPrint() is a beast. http://stackoverflow.com/questions/1679876/atexit-exit-delegate-in-c/1679896#1679896 Comment by Mats Fredriksson on atexit, exit delegate in c# Mats Fredriksson 2009-11-05T13:43:24Z 2009-11-05T13:43:24Z Cool. Unfortunately I need it in console mode.. Probably should have mentioned that. http://stackoverflow.com/questions/1679876/atexit-exit-delegate-in-c/1680000#1680000 Comment by Mats Fredriksson on atexit, exit delegate in c# Mats Fredriksson 2009-11-05T11:39:12Z 2009-11-05T11:39:12Z So probably need to catch both events then, the ProcessExit and the ConsoleCancelEventHandler. Would be neat with just one event that's always called. Well, well.. http://stackoverflow.com/questions/1679876/atexit-exit-delegate-in-c/1679896#1679896 Comment by Mats Fredriksson on atexit, exit delegate in c# Mats Fredriksson 2009-11-05T11:37:34Z 2009-11-05T11:37:34Z I know how to shut down applications, I'm interested in how to attach events to when that happens. Thanks anyway tho. http://stackoverflow.com/questions/1679876/atexit-exit-delegate-in-c/1679888#1679888 Comment by Mats Fredriksson on atexit, exit delegate in c# Mats Fredriksson 2009-11-05T11:35:24Z 2009-11-05T11:35:24Z Doesn't seem to catch Ctrl-C though. Know anything about that? http://stackoverflow.com/questions/1662005/create-aperture-depth-of-field-affect Comment by Mats Fredriksson on Create Aperture / depth of field affect Mats Fredriksson 2009-11-02T15:40:26Z 2009-11-02T15:40:26Z What do you want to blur? Is it data in a 3d program, such as Maya or 3D Studio, or photos from a camera? Is it real time graphics? http://stackoverflow.com/questions/1588368/c-exception-handling-in-recursive-call Comment by Mats Fredriksson on C#: Exception handling in recursive call Mats Fredriksson 2009-10-19T12:43:14Z 2009-10-19T12:43:14Z what's the difference between your &quot;path&quot; and the callstack property that's present on Exception? http://stackoverflow.com/questions/1571426/multithreaded-syncronised-listt Comment by Mats Fredriksson on Multithreaded Syncronised List<T> Mats Fredriksson 2009-10-15T10:41:21Z 2009-10-15T10:41:21Z Good idea to keep the posting in case others decide they want to write one themselves! +1 http://stackoverflow.com/questions/1571426/multithreaded-syncronised-listt Comment by Mats Fredriksson on Multithreaded Syncronised List<T> Mats Fredriksson 2009-10-15T10:32:17Z 2009-10-15T10:32:17Z Pretty dangerous class which fixes some synchronisation issues, but not all and gives the user a false sense of security. http://stackoverflow.com/questions/1571426/multithreaded-syncronised-listt/1571468#1571468 Comment by Mats Fredriksson on Multithreaded Syncronised List<T> Mats Fredriksson 2009-10-15T10:31:20Z 2009-10-15T10:31:20Z anything or anyone using the enumerator outside of the locks would have race conditions. http://stackoverflow.com/questions/1559185/formatting-numbers-as-strings-with-commas-in-place-of-decimals-in-c/1559222#1559222 Comment by Mats Fredriksson on Formatting Numbers as Strings with Commas in place of Decimals in C# Mats Fredriksson 2009-10-13T15:10:31Z 2009-10-13T15:10:31Z @luke: it says &quot;display this number as 4,3 for some of our European friends&quot; which I would interpret as &quot;display values according to the end users locale&quot;, but I might be wrong. If he want to display it according to the end users culture I would use the culture. Not a randomly picked one, true, but the end users. http://stackoverflow.com/questions/1559185/formatting-numbers-as-strings-with-commas-in-place-of-decimals-in-c/1559222#1559222 Comment by Mats Fredriksson on Formatting Numbers as Strings with Commas in place of Decimals in C# Mats Fredriksson 2009-10-13T09:59:17Z 2009-10-13T09:59:17Z @James: except that it's pretty useless since culture support is built into .NET. Better to do this the supported way rather than reinventing it. http://stackoverflow.com/questions/192527/what-are-the-advantages-of-memory-mapped-files/192849#192849 Comment by Mats Fredriksson on What are the advantages of memory-mapped files? Mats Fredriksson 2009-09-22T13:30:17Z 2009-09-22T13:30:17Z Except that it is not an issue. You create windows which you access the file through. Each window cannot be larger than 2GB on a 32 bit process, but if you move the window you can access the entire file which can be as large as the filesystem allows it to. http://stackoverflow.com/questions/1404169/store-timestamp-in-gridview Comment by Mats Fredriksson on Store Timestamp in GridView Mats Fredriksson 2009-09-10T09:50:58Z 2009-09-10T09:50:58Z that's another question, but I think it happens when I bind it. In the Update part I map the input/output parameter to Int64 which seems to be a good data holder. http://stackoverflow.com/questions/1119799/method-chaining-in-c/1119807#1119807 Comment by Mats Fredriksson on Method-Chaining in C# Mats Fredriksson 2009-07-13T14:36:51Z 2009-07-13T14:36:51Z don't need to restrict the argument to AddItem to MyClass. Could probably Object, or Item, or something.