<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp</id>
  <title type="text">microsoft.public.dotnet.languages.csharp Google Group</title>
  <subtitle type="text">
  </subtitle>
  <link href="/group/microsoft.public.dotnet.languages.csharp/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.dotnet.languages.csharp feed"/>
  <updated>2008-07-24T21:32:01Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>michael sorens</name>
  <email>m_j_sor...@newsgroup.nospam</email>
  </author>
  <updated>2008-07-24T21:32:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/65eacd3092950af0/8c0b09db52608beb?show_docid=8c0b09db52608beb</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/65eacd3092950af0/8c0b09db52608beb?show_docid=8c0b09db52608beb"/>
  <title type="text">RE: Autosizing and column spanning conundrum</title>
  <summary type="html" xml:space="preserve">
  Thanks for validating the issue. Though you say you believe it is by design, &lt;br&gt; you also seem to agree with me that the behavior is faulty... Just wanted to &lt;br&gt; let you know that I have therefore submitted this as a product issue in &lt;br&gt; Connect &lt;br&gt; (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=357655&quot;&gt;[link]&lt;/a&gt;)
  </summary>
  </entry>
  <entry>
  <author>
  <name>Peter Duniho</name>
  <email>npoestpe...@nnowslpianmk.com</email>
  </author>
  <updated>2008-07-24T21:24:51Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/71158f62858036fc?show_docid=71158f62858036fc</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/71158f62858036fc?show_docid=71158f62858036fc"/>
  <title type="text">Re: socket packet size = bandwidth?</title>
  <summary type="html" xml:space="preserve">
  Yes, that&#39;s correct. The only real downside for the larger buffer is the &lt;br&gt; memory consumption locally. Generally speaking, larger buffers provided &lt;br&gt; to the Socket _improve_ performance, because you have to transition back &lt;br&gt; and forth between your application code and the network driver fewer &lt;br&gt; times. Of course, beyond a certain point (16K is a good number) you get
  </summary>
  </entry>
  <entry>
  <author>
  <name>Zytan</name>
  <email>zytanlith...@gmail.com</email>
  </author>
  <updated>2008-07-24T21:10:17Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/9c3b12c690f629d4?show_docid=9c3b12c690f629d4</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/9c3b12c690f629d4?show_docid=9c3b12c690f629d4"/>
  <title type="text">Re: socket packet size = bandwidth?</title>
  <summary type="html" xml:space="preserve">
  LOL &lt;br&gt; Sorry, I meant receiving 5 bytes. Most of my bandwidth is receiving &lt;br&gt; data, so this is the important part. &lt;br&gt; (I use Socket.Send(), obviously, to send data, and that takes an array &lt;br&gt; of byte, byte [], and I make that whatever size it needs to be at the &lt;br&gt; time, so I assume that this only uses as much bandwidth as is required
  </summary>
  </entry>
  <entry>
  <author>
  <email>aeg...@gmail.com</email>
  </author>
  <updated>2008-07-24T21:04:05Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/16f518aaf499f9c6/1800f85a2597bbb9?show_docid=1800f85a2597bbb9</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/16f518aaf499f9c6/1800f85a2597bbb9?show_docid=1800f85a2597bbb9"/>
  <title type="text">Re: DataGridView refresh causes &quot;Not Responding&quot; application (but only when not in Visual Studio)</title>
  <summary type="html" xml:space="preserve">
  I added the symbols for the .NET Framework and stepped down through &lt;br&gt; the code. The final call made is: &lt;br&gt; SafeNativeMethods.UpdateWindow (new HandleRef(window, &lt;br&gt; InternalHandle)); &lt;br&gt; which is the only line of code in the ControlUpdate method shown in &lt;br&gt; the top of the Call Stack.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Peter Duniho</name>
  <email>npoestpe...@nnowslpianmk.com</email>
  </author>
  <updated>2008-07-24T20:54:35Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/c69d99042af61891?show_docid=c69d99042af61891</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/a7150305c3669f8b/c69d99042af61891?show_docid=c69d99042af61891"/>
  <title type="text">Re: socket packet size = bandwidth?</title>
  <summary type="html" xml:space="preserve">
  All due respect, it is at the very least poorly worded. :) &lt;br&gt; If you are asking a question that involves calling Socket.BeginReceive(), &lt;br&gt; why is your hypothetical case described as &amp;quot;I send a 5 byte &#39;hello&#39;&amp;quot;? Are &lt;br&gt; you asking about sending, or about receiving? And is the question about a &lt;br&gt; UDP socket or TCP socket?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arne Vajhøj</name>
  <email>a...@vajhoej.dk</email>
  </author>
  <updated>2008-07-24T20:53:30Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/7e0ecd1c934b9f91/9b43cffd8a0c2f45?show_docid=9b43cffd8a0c2f45</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/7e0ecd1c934b9f91/9b43cffd8a0c2f45?show_docid=9b43cffd8a0c2f45"/>
  <title type="text">Re: Help with the difference between &quot;Implements&quot; and &quot;Inherits&quot;</title>
  <summary type="html" xml:space="preserve">
  The first only inherit the interface. The second inherit &lt;br&gt; only the interface and the implementation. &lt;br&gt; But I would be careful with the second - it is easy to &lt;br&gt; become coupled with the internals of List. &lt;br&gt; Arne
  </summary>
  </entry>
  <entry>
  <author>
  <name>Kerem Gümrükcü</name>
  <email>kareem...@hotmail.com</email>
  </author>
  <updated>2008-07-24T20:47:12Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/dccb672d3ade92be/ef0e7a30d82c036a?show_docid=ef0e7a30d82c036a</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/dccb672d3ade92be/ef0e7a30d82c036a?show_docid=ef0e7a30d82c036a"/>
  <title type="text">Clipboard.SetText(...) fails on Vista but successfully on Windows 2000/XP</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; why do i get this on Vista, while trying to set text to clipboard: &lt;br&gt; Error: System.Runtime.InteropServices .ExternalException: Der angeforderte &lt;br&gt; Clipboard-Vorgang war nicht erfolgreich. &lt;br&gt; bei System.Windows.Forms.Clipboard .ThrowIfFailed(Int32 hr) &lt;br&gt; bei System.Windows.Forms.Clipboard .SetDataObject(Object data, Boolean
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arne Vajhøj</name>
  <email>a...@vajhoej.dk</email>
  </author>
  <updated>2008-07-24T20:50:40Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/1a965d1b1137d42e/ef01455c7f170333?show_docid=ef01455c7f170333</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/1a965d1b1137d42e/ef01455c7f170333?show_docid=ef01455c7f170333"/>
  <title type="text">Re: Game development</title>
  <summary type="html" xml:space="preserve">
  For simple to intermediate games then C# would be an excellent choice. &lt;br&gt; I believe there game toolkits available. &lt;br&gt; For the most advanced games, then I think they will continue to &lt;br&gt; use C/C++. &lt;br&gt; The usage of C/C++ is to some extent historic determined. But &lt;br&gt; the real advanced games some of the parts especially for graphics
  </summary>
  </entry>
  <entry>
  <author>
  <name>Doug Forster</name>
  <email>nob...@nowhere.com</email>
  </author>
  <updated>2008-07-24T20:45:48Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/10a3bf38681c6fc8/1b74b7ab48abf3a1?show_docid=1b74b7ab48abf3a1</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/10a3bf38681c6fc8/1b74b7ab48abf3a1?show_docid=1b74b7ab48abf3a1"/>
  <title type="text">Re: out of memory? not really!</title>
  <summary type="html" xml:space="preserve">
  Hi Rainer, &lt;br&gt; You may be able to improve your situation somewhat by booting with the 3GB &lt;br&gt; switch and setting the LARGEADDRESSAWARE flag on your exe, but the best &lt;br&gt; solution is to install a 64 bit OS &lt;br&gt; Cheers &lt;br&gt; Doug Forster
  </summary>
  </entry>
  <entry>
  <author>
  <name>Phill</name>
  <email>ph...@discussions.microsoft.com</email>
  </author>
  <updated>2008-07-24T20:40:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/f548f4d30bc2a12a/b57d714edb20f5cf?show_docid=b57d714edb20f5cf</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/f548f4d30bc2a12a/b57d714edb20f5cf?show_docid=b57d714edb20f5cf"/>
  <title type="text">Combobox Load Help Please</title>
  <summary type="html" xml:space="preserve">
  I have a Pocket PC app that has a combobox populated with data from SQL &lt;br&gt; Server Mobile. This is how I&#39;m doing it now...which works: &lt;br&gt; SqlCeCommand cmd = new SqlCeCommand(&amp;quot;SELECT Type_ID,Type &lt;br&gt; FROM tblEquipmentType ORDER BY Type&amp;quot;, _conn); &lt;br&gt; cmd.Connection.Open(); &lt;br&gt; rdr = cmd.ExecuteReader();
  </summary>
  </entry>
  <entry>
  <author>
  <name>Zytan</name>
  <email>zytanlith...@gmail.com</email>
  </author>
  <updated>2008-07-24T20:39:14Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/559d6a57fd71168f?show_docid=559d6a57fd71168f</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/559d6a57fd71168f?show_docid=559d6a57fd71168f"/>
  <title type="text">Re: C# optimized code prevents debugging</title>
  <summary type="html" xml:space="preserve">
  Nope, it&#39;s because the code is optimized by the compiler, and the &lt;br&gt; debugger doesn&#39;t know where the values are that you want to look at. &lt;br&gt; Run the same code with &amp;quot;optimize code&amp;quot;, and you&#39;ll see everything you &lt;br&gt; want to see. &lt;br&gt; Zytan
  </summary>
  </entry>
  <entry>
  <author>
  <name>Zytan</name>
  <email>zytanlith...@gmail.com</email>
  </author>
  <updated>2008-07-24T20:37:56Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/76cc3352653ef87d?show_docid=76cc3352653ef87d</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/76cc3352653ef87d?show_docid=76cc3352653ef87d"/>
  <title type="text">Re: C# optimized code prevents debugging</title>
  <summary type="html" xml:space="preserve">
  Yes. &lt;br&gt; I understand. But, it appears that this &#39;simplified&#39; project settings &lt;br&gt; for Express editions make clear decisions based on Release or Debug, &lt;br&gt; meaning that they are not just labels -- not in this context. The &lt;br&gt; settings specifically apply to one or both. It&#39;s too bad it doesn&#39;t &lt;br&gt; tell you which. :) &lt;br&gt; When I turn ON &amp;quot;show advanced build configurations&amp;quot;, it shows
  </summary>
  </entry>
  <entry>
  <author>
  <name>JFlorero</name>
  <email>jflor...@nospam.nospam</email>
  </author>
  <updated>2008-07-24T20:30:01Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/fb1b237a66297e64/fa9b71263e457ea7?show_docid=fa9b71263e457ea7</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/fb1b237a66297e64/fa9b71263e457ea7?show_docid=fa9b71263e457ea7"/>
  <title type="text">Re: adorner Z order</title>
  <summary type="html" xml:space="preserve">
  Thanks Linda, I am looking forward to your answer.
  </summary>
  </entry>
  <entry>
  <author>
  <email>aeg...@gmail.com</email>
  </author>
  <updated>2008-07-24T20:26:51Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/16f518aaf499f9c6/b0234e3a27de4b60?show_docid=b0234e3a27de4b60</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/16f518aaf499f9c6/b0234e3a27de4b60?show_docid=b0234e3a27de4b60"/>
  <title type="text">DataGridView refresh causes &quot;Not Responding&quot; application (but only when not in Visual Studio)</title>
  <summary type="html" xml:space="preserve">
  Ok, extremely wierd situation here: &lt;br&gt; (I&#39;ll post the code below, after the explanation) &lt;br&gt; I&#39;ve got a Windows application (.NET 3.5) that has a single Form with &lt;br&gt; a DataGridView embedded. The user presses a button to do a SQL query &lt;br&gt; (fill a DataSet). Before firing the query, I disable the grid/buttons &lt;br&gt; and turn on UseWaitCursor. After it completes, I re-enable the grid/
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jon Skeet [ C# MVP ]</name>
  <email>sk...@pobox.com</email>
  </author>
  <updated>2008-07-24T20:23:26Z</updated>
  <id>http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/2d5ed82f9e0cbf10?show_docid=2d5ed82f9e0cbf10</id>
  <link href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/bf78fc9c7f7cfa01/2d5ed82f9e0cbf10?show_docid=2d5ed82f9e0cbf10"/>
  <title type="text">Re: C# optimized code prevents debugging</title>
  <summary type="html" xml:space="preserve">
  Interesting. It&#39;s often the case that making things simpler for some &lt;br&gt; people makes them more complicated (and less predictable) for others :( &lt;br&gt; Because &amp;quot;Debug&amp;quot; is just an arbitrary label, I believe. There&#39;s nothing &lt;br&gt; really magical about Debug and Release as build configurations, as far &lt;br&gt; as I know. You can create your own, call them what you want and tweak
  </summary>
  </entry>
</feed>
