User David Basarab - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:33:16Zhttp://stackoverflow.com/feeds/user/2469http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/869349/linq-to-sql-error-sql-does-not-compare-ntext-text-xml-or-image1Linq to SQL error SQL does not compare NText, Text, Xml, or Image?David Basarab2009-05-15T15:27:47Z2009-11-26T04:21:44Z
<p>When trying to do an update for a Linq object I receive the following error.</p>
<p>"SQL Server does not handle comparison of NText, Text, Xml, or Image data types."</p>
<p>There is a field in the database that is a Text field because it is going to hold a string that could be as much as 32kb.</p>
<p>Should I change the data type or is there a work around in Linq I could use?</p>
<p>EDIT</p>
<p>I have support SQL 2000 which is why it is a TEXT field.</p>
http://stackoverflow.com/questions/43819/oracle-equivalent-to-sql-server-sybase-datediff3Oracle equivalent to SQL Server/Sybase DateDiffDavid Basarab2008-09-04T14:04:10Z2009-11-25T02:35:10Z
<p>We are now using NHibernate to connect to different database base on where our software is installed. So I am porting many SQL Procedures to Oracle.</p>
<p>SQL Server has a nice function called DateDiff which takes a date part, startdate and enddate.</p>
<p>Date parts examples are day, week, month, year, etc. . . </p>
<p>What is the Oracle equivalent?</p>
<p>I have not found one do I have to create my own version of it?</p>
<p><strong>(update by Mark Harrison)</strong> there are several nice answers that explain Oracle date arithmetic. If you need an Oracle datediff() see Einstein's answer. (I need this to keep spme SQL scripts compatible between Sybase and Oracle.) Note that this question applies equally to Sybase.</p>
http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c8How to Compare Flags in C#?David Basarab2008-09-02T18:28:16Z2009-11-20T11:12:51Z
<p>I have a flag enum below.</p>
<pre><code>[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
</code></pre>
<p>I cannot make the if statement evaluate to true.</p>
<pre><code>FlagTest testItem = FlagTest.Flag1 | FlagTest.Flag2;
if (testItem == FlagTest.Flag1)
{
// Do something,
// however This is never true.
}
</code></pre>
<p>How can I make this true?</p>
http://stackoverflow.com/questions/1760449/conventions-c-class-names/1760463#17604631Answer by David Basarab for (Conventions) C# Class namesDavid Basarab2009-11-19T02:05:59Z2009-11-19T02:35:22Z<p>It is really a personal preference. </p>
<p>I would favor</p>
<pre><code>CharacterDetails
CharacterSprites
CharacterAppearance
CharacterClientRights
CharacterServerRights
</code></pre>
<p>Because it is more readable.</p>
<p>You are typically going to have a using statement of </p>
<pre><code>Models.Characters.Appearance
</code></pre>
<p>Unless you are going to do the full notation.</p>
<p>I would favor anything that would increase readability. It might matter on the project and the team you are working with. If it is just you than do what you like best and would help you maintain the code in the future.</p>
http://stackoverflow.com/questions/1757985/object-representation-of-betting-rounds-at-poker/1758086#17580861Answer by David Basarab for Object representation of betting rounds at pokerDavid Basarab2009-11-18T18:32:27Z2009-11-18T18:32:27Z<p>When you say first project what do you mean? I am guessing you are a student or new to programming.</p>
<p>Under that assumption I would suggest picking something simpler and than a poker hand history. As in game programming it is unreasonable to think on your first shot of programming a game you create the latest Call of Duty. You start with breakout and move up from there.</p>
<p>If you do not wish to start smaller than I suggest never jump into coding. When you do that you will spend more time just spinning your wheels rather than getting something done.</p>
<p>For instance you should first spend time designing what your program will do and what it will not do. Try to be as complete as possible. This can be done from something as complicated using a UML program or as simple as pen and paper. </p>
<p>I would flow out how you want a hand to progress. Information you want to track. Once you really understand this your data structures will start to come to life. </p>
<p>Since you are new to programming, I would start to write proof of concept code. Then move it to your final project. What I mean by proof of concept is code that you are just testing an idea to see how it works. For example, how would hand history work? Can you create some 'mock' history and set them up? Ideally you would unit test, but lets start a little smaller.</p>
<p>It is important to know that you are constructing a program, just like a house. You need to know what you want it to do and not do (blue prints). What each step is. And you build upon other pieces slowly. It is a process that takes time, but in the end is well worth it.</p>
http://stackoverflow.com/questions/59590/lock-keyword-in-c8lock keyword in C#David Basarab2008-09-12T17:38:49Z2009-11-13T14:51:25Z
<p>I understand the main function of the lock key word from MSDN</p>
<blockquote>
<p>lock Statement (C# Reference)</p>
<p>The lock keyword marks a statement
block as a critical section by
obtaining the mutual-exclusion lock
for a given object, executing a
statement, and then releasing the
lock.</p>
</blockquote>
<p>When should the lock be used? </p>
<p>For instance it makes sense with multi-threaded applications because it protects the data. But is it necessary when the application does not spin off any other threads?</p>
<p>Is there performance issues with using lock?</p>
<p>I have just inherited an application that is using lock everywhere, and it is single threaded and I want to know should I leave them in, are they even necessary?</p>
<p>Please note this is more of a general knowledge question, the application speed is fine, I want to know if that is a good design pattern to follow in the future or should this be avoided unless absolutely needed.</p>
http://stackoverflow.com/questions/1716759/software-to-increase-productivity/1716892#17168921Answer by David Basarab for Software to increase productivityDavid Basarab2009-11-11T17:45:38Z2009-11-11T17:45:38Z<p>Here is a very nice list of tools.</p>
<p>I give many thanks to Scott Hanselman for creating this list.</p>
<p><a href="http://www.hanselman.com/blog/ScottHanselmans2009UltimateDeveloperAndPowerUsersToolListForWindows.aspx" rel="nofollow">http://www.hanselman.com/blog/ScottHanselmans2009UltimateDeveloperAndPowerUsersToolListForWindows.aspx</a> </p>
http://stackoverflow.com/questions/1705577/web-service-bin-folder/1716502#17165021Answer by David Basarab for Web service Bin folderDavid Basarab2009-11-11T16:44:44Z2009-11-11T16:44:44Z<p>If you are going to deploy it I would right click over the web site and click 'Publish Web Site'</p>
<p>It will prompt you for a location. Then take the items from that directory.</p>
http://stackoverflow.com/questions/1693115/a-tough-table-transforming-into-xml/1693163#1693163-1Answer by David Basarab for A tough table transforming into XMLDavid Basarab2009-11-07T14:17:38Z2009-11-07T14:17:38Z<p>This will do it using .NET 3.5 and the XDocument</p>
<pre><code>XDocument yourDocument = new XDocument(new XElement("root",
new XElement("header",
new XAttribute("name", "a"),
new XElement("item",
new XAttribute("name", "11")),
new XElement("item",
new XAttribute("name", "22"))),
new XElement("header",
new XAttribute("name", "b"),
new XElement("item",
new XAttribute("name", "33")),
new XElement("item",
new XAttribute("name", "44")),
new XElement("item",
new XAttribute("name", "55")))));
</code></pre>
http://stackoverflow.com/questions/1675238/looping-through-known-properties-in-an-object/1675247#16752477Answer by David Basarab for Looping through known properties in an objectDavid Basarab2009-11-04T17:06:14Z2009-11-04T17:06:14Z<p>Using reflection.</p>
<pre><code>public static string PrintObjectProperties(this object obj)
{
try
{
System.Text.StringBuilder sb = new StringBuilder();
Type t = obj.GetType();
System.Reflection.PropertyInfo[] properties = t.GetProperties();
sb.AppendFormat("Type: '{0}'", t.Name);
foreach (var item in properties)
{
object objValue = item.GetValue(obj, null);
sb.AppendFormat("|{0}: '{1}'", item.Name, (objValue == null ? "NULL" : objValue));
}
return sb.ToString();
}
catch
{
return obj.ToString();
}
}
</code></pre>
http://stackoverflow.com/questions/1671428/feedparser-and-google-news/1671438#16714381Answer by David Basarab for feedparser and Google NewsDavid Basarab2009-11-04T02:46:31Z2009-11-04T02:46:31Z<p>First you need to check out <a href="http://cyber.law.harvard.edu/rss/rss.html" rel="nofollow">RSS Specification</a>. And here is a <a href="http://www.feedparser.org/" rel="nofollow">feed parser</a>. That should get you started. </p>
http://stackoverflow.com/questions/593821/how-to-bring-down-a-socket-on-a-windows-machine/1644873#16448731Answer by David Basarab for How to bring down a socket on a windows machine?David Basarab2009-10-29T16:17:54Z2009-10-29T16:17:54Z<p>You can use <a href="http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx" rel="nofollow">TCP View</a>. You can view all the connections from your machine to another, or within the same machine. You can close a connection, thus breaking the connection.</p>
http://stackoverflow.com/questions/1626439/getting-not-defined-error-even-with-import/1626451#16264510Answer by David Basarab for Getting "not defined" error even with importDavid Basarab2009-10-26T18:21:25Z2009-10-26T18:21:25Z<p>Make sure you have System.Data referenced in your project.</p>
http://stackoverflow.com/questions/1624505/pass-by-reference-in-c/1624515#16245154Answer by David Basarab for Pass by Reference in C#David Basarab2009-10-26T12:26:57Z2009-10-26T12:26:57Z<p>You can use the ref keyword to pass an object by refence.</p>
<pre><code>public void YourFunction(ref SomeObject yourReferenceParameter)
{
// Do something
}
</code></pre>
<p>When you call it you are also required to give the ref keyword.</p>
<pre><code>SomeObject myLocal = new SomeObject();
YourFunction(ref myLocal);
</code></pre>
http://stackoverflow.com/questions/1594264/pushing-items-into-stack-with-linq/1594281#15942811Answer by David Basarab for Pushing Items into stack with LINQDavid Basarab2009-10-20T12:33:03Z2009-10-20T12:33:03Z<p>The first issue is you Push returns a void. Select is expecting a value of something.</p>
<p>You are just doing a loop and don't need to use link.</p>
<p>Since you stack is internally storing a list, you can create a list by passing it an array.</p>
<p>so in your case</p>
<pre><code>List<string> myList = new List<string>(array);
</code></pre>
<p>Creats the list.</p>
http://stackoverflow.com/questions/1589712/linq-xml-dynamic-building/1589784#15897840Answer by David Basarab for Linq XML Dynamic building.David Basarab2009-10-19T16:40:52Z2009-10-19T16:40:52Z<p>The only way in the snippet provided I can see getting an error would be 2 two places.</p>
<pre><code>BuildDataElement();
</code></pre>
<p>Could be generating the error, rather than the Xml document.</p>
<p>Next if <code>BuildDataElement();</code> returns that might be the problem, since I am guessing the XDocument is doing a <code>.ToString()</code> or some action on <code>allData</code></p>
http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance78Is DateTime.Now the best way to measure a function's performance?David Basarab2008-08-26T17:09:45Z2009-10-19T11:13:28Z
<p>I need to find a bottleneck and need to accurately as possible measure time.</p>
<p>Is the following Code Snippet the best way to measure the performance?</p>
<pre><code>DateTime startTime = DateTime.Now;
// Some Execution Process
DateTime endTime = DateTime.Now;
TimeSpan totalTimeTaken = endTime.Subtract(startTime);
</code></pre>
http://stackoverflow.com/questions/1554536/iterating-linq-result-set-using-indexers/1554549#15545491Answer by David Basarab for Iterating Linq result set using indexersDavid Basarab2009-10-12T13:22:22Z2009-10-12T13:22:22Z<p><code>results</code> is a <code>IEnumerable</code> list of Rows. So you can get it with a simple foreach.</p>
<pre><code>foreach(var row in results)
{
string name = row["columnName"];
}
</code></pre>
http://stackoverflow.com/questions/1554190/how-to-convert-data-from-xml-file-to-excel-sheet/1554287#15542871Answer by David Basarab for how to convert data from xml file to excel sheetDavid Basarab2009-10-12T12:27:21Z2009-10-12T12:27:21Z<p>You can export data from a Sql Server database to excel. See this <a href="http://support.microsoft.com/kb/319951" rel="nofollow">link</a> and this <a href="http://msdn.microsoft.com/en-us/library/ms141209.aspx" rel="nofollow">one</a>.</p>
<p>As for an xml file, you can easily just open the xml file in Excel. Depending on the format it should open up for you fine.</p>
http://stackoverflow.com/questions/1545100/how-can-i-apply-an-event-to-a-simple-link-element-in-asp-net/1545111#15451110Answer by David Basarab for How can I apply an event to a simple link element in ASP.NETDavid Basarab2009-10-09T17:31:02Z2009-10-09T17:31:02Z<p>Is the Method on the Server?</p>
<p>Then you need to use the ASP.NET <a href="http://msdn.microsoft.com/en-us/library/6tw3zz4t%28VS.80%29.aspx" rel="nofollow">Link Control</a>. You can hook up to the OnClick event on the Link Control.</p>
http://stackoverflow.com/questions/1545093/how-to-insert-an-empty-row-in-a-combobox-filled-by-linq/1545106#15451060Answer by David Basarab for How to insert an empty row in a combobox filled by linq?David Basarab2009-10-09T17:29:06Z2009-10-09T17:29:06Z<p>Can't you add an empty Item to the ComboBox after the bind?</p>
http://stackoverflow.com/questions/1544581/asp-net-editors/1544602#15446020Answer by David Basarab for ASP.NET EditorsDavid Basarab2009-10-09T15:45:36Z2009-10-09T15:45:36Z<p><a href="http://www.microsoft.com/Expression/products/Web%5FOverview.aspx" rel="nofollow">Expression Web</a> will make ASP.NET web sites and has FTP built in.</p>
http://stackoverflow.com/questions/1541339/rapid-application-development-or-good-programming-practice-which-one-do-you-choo/1541369#15413692Answer by David Basarab for Rapid Application Development Or Good Programming Practice? Which one do you choose..David Basarab2009-10-09T01:13:07Z2009-10-09T01:13:07Z<p>They can do both. With any techlonogy there are good practices and there are bad.</p>
<p>ORM Frameworks can or cannot speed up development, a good design has more impact on development time than the tools used. The advantages are getting all you business logic in one place and removing it from the data portion.</p>
<p>I would not use them in a presentation layer, but have you presentation or UI layer call a business layer which would call a data layer.</p>
http://stackoverflow.com/questions/1533045/how-to-bridge-the-gap-between-a-fresh-graduate-and-a-competent-programmer/1533073#15330738Answer by David Basarab for How to bridge the gap between a fresh graduate and a competent programmer?David Basarab2009-10-07T17:30:47Z2009-10-07T17:30:47Z<p>First you have do code on your own. You will never advance in a 8 - 5 job. It has be to part of your life, and you have to be willing to spend free time doing it.</p>
<ul>
<li>Particpate in an open source project. Get exposure to different coding and styles.</li>
<li>Read some development books, there
are too many list already on
Stackoverflow to list. </li>
<li>Create your own project, for
yourself or your family. Do
something interesting to you.</li>
</ul>
http://stackoverflow.com/questions/1527640/how-to-get-feedback-to-a-page-from-a-running-thread-in-asp-net/1527686#15276860Answer by David Basarab for How to get feedback to a page from a running thread in ASP.NET?David Basarab2009-10-06T19:44:58Z2009-10-06T19:57:14Z<p>I am assuming you are calling another class to do the work. Lets call this the WorkerClass</p>
<p>You can have the WorkerClass have an event hooked up to it, that the .aspx page hooks up too and will write a message when the event is triggered.</p>
<pre><code>// Overload EventArgs to send messageas back up
public delegate void UpdateMethod(object sender, EventArgs e);
public class WorkerClass
{
public event UpdateMethod UpdateMethod;
}
WorkerClass worker = new WorkerClass();
worker.UpdateMethod += new UpdateMethod(worker_UpdateMethod);
</code></pre>
<p><strong>EDIT based on Comment it is on there page</strong></p>
<p>If you don't want to refactor to another class doing the work (which I suggest). You can post the messages this way. </p>
<pre><code>protected override void Render(HtmlTextWriter writer)
{
base.Render(writer);
this.ProcessMassiveWorkLoad();
}
private void ProcessMassiveWorkLoad()
{
for(int i = 0; i < 100000; i++)
{
// Do some work
// Write the fact you have work
Response.Write(string.Format("Done {0} of 100000", i);
}
}
</code></pre>
http://stackoverflow.com/questions/1526889/should-the-base-keyword-be-used/1526899#1526899-1Answer by David Basarab for Should the base Keyword be used?David Basarab2009-10-06T17:13:05Z2009-10-06T17:13:05Z<p>This is an opinion but yes use the <code>base</code> keyword. I do it for readability so I know where the method is coming from at a glance.</p>
<p>I use the <code>this</code> keyword for the same reason.</p>
<p>There is no difference with the code. It only matters with Parameters meaning you can have a field in your base class called status and pass a status in as a parameter you would have to use <code>base</code> keyword.</p>
http://stackoverflow.com/questions/1525299/xpath-and-xslt-2-0-for-net/1525324#15253241Answer by David Basarab for XPath and XSLT 2.0 for .NET?David Basarab2009-10-06T12:35:11Z2009-10-06T12:35:11Z<p>See this <a href="http://blogs.msdn.com/dareobasanjo/archive/2004/05/13/131166.aspx" rel="nofollow">blog post</a></p>
<blockquote>
<p>There are several reasons why we
aren't implementing XSLT 2.0 and XPath
2.0</p>
<p>It takes a lot of effort and resources
to implement all 3 technologies
(XQuery, XSLT 2.0 & XPath 2.0). Our
guiding principle was that we believe
creating a proliferation of XML query
technologies is confusing to end
users. We'd rather implement one more
language that we push people to learn
than have to support and explain three
more XML query and transformation
languages, in addition to XPath 1.0 &
XSLT 1.0 which already exist in the
.NET Framework. Having our customers
and support people have to deal with
the complexity of 3 sophisticated XML
query languages two of which are look
similar but behave quite differently
in the case of XPath 2.0 and XQuery
seemed to us not to be that
beneficial.</p>
</blockquote>
http://stackoverflow.com/questions/1521485/detect-space-and-add-a-comma/1521493#15214932Answer by David Basarab for Detect space and add a commaDavid Basarab2009-10-05T17:59:42Z2009-10-05T17:59:42Z<pre><code>string yourString = oldString.Replace(' ', ',');
</code></pre>
<p>Most likely it is not a space but a new line, so it would be</p>
<pre><code>string yourString = oldString.Replace(Environment.NewLine, ",");
</code></pre>
http://stackoverflow.com/questions/1512440/is-it-possible-to-execute-several-sql-inserts-in-the-same-batch-the-same-way-as-i/1512456#15124560Answer by David Basarab for is it possible to execute several Sql Inserts in the same batch the same way as its possible to execute several selects using SqlDataReader.NextResult()?David Basarab2009-10-03T00:51:17Z2009-10-03T00:51:17Z<pre><code>SqlCommand cmd = new SqlCommand(@"Insert Into Table1 (a) Values (@a);Insert Into Table2 (b Values (@b);Insert Into Table3 (c) Values (@c);", connection);
// Set your paramters values
SqlCommand.Parameters.Add(new SqlParameter("@a", aValue));
SqlCommand.Parameters.Add(new SqlParameter("@b", bValue));
SqlCommand.Parameters.Add(new SqlParameter("@c", cValue));
cmd.ExecuteNonQuery();
</code></pre>
http://stackoverflow.com/questions/1509564/how-to-properly-store-state-in-a-c-net-application/1509584#15095846Answer by David Basarab for How to properly store state in a C# .Net applicationDavid Basarab2009-10-02T13:43:03Z2009-10-02T13:43:03Z<p>I would favor saving your state to a database if possible or another file structure. Changing your app.config at run-time is generally not done. I would favor serializing your object to a file, and using that to keep it state.</p>
<p>This will dynamically change the app.config or web.config as the case maybe.</p>
<pre><code>public void ChangeAppSettings(string applicationSettingsName, string newValue)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
KeyValueConfigurationElement element = config.AppSettings.Settings[applicationSettingsName];
if (element != null)
{
element.Value = newValue;
}
else
{
config.AppSettings.Settings.Add(applicationSettingsName, newValue);
}
config.Save(ConfigurationSaveMode.Modified, true);
ConfigurationManager.RefreshSection("appSettings");
}
</code></pre>
http://stackoverflow.com/questions/1770937/how-can-i-give-alert-message-with-ok-and-cancel-button-within-a-dataset-functionComment by David Basarab on How can I give alert message with Ok and Cancel button within a dataset function?David Basarab2009-11-20T15:17:59Z2009-11-20T15:17:59ZWhen you say dataset do you mean a data grid?http://stackoverflow.com/questions/1770937/how-can-i-give-alert-message-with-ok-and-cancel-button-within-a-dataset-function/1770983#1770983Comment by David Basarab on How can I give alert message with Ok and Cancel button within a dataset function?David Basarab2009-11-20T15:17:29Z2009-11-20T15:17:29ZThe return is important. When you hit cancel confirm returns false, which tells ASP.NET not to do the post back function. If you hit OK then the postback function executes. The return is key don't forget to leave it out.http://stackoverflow.com/questions/1743653/reset-function-in-visual-cComment by David Basarab on Reset Function in Visual C#David Basarab2009-11-16T17:33:21Z2009-11-16T17:33:21ZYou should break this into 3 questions, and show what you have done so far if you want more help.http://stackoverflow.com/questions/1717408/how-can-i-create-a-modalpopupextender-control-dynamically-from-a-server-controlComment by David Basarab on How can i create a ModalPopupExtender control dynamically from a server control?David Basarab2009-11-11T19:15:32Z2009-11-11T19:15:32ZDo you have a code sample? What do you mean by staticId?http://stackoverflow.com/questions/1709752/c-not-saving-right-in-array-why-will-it-save-the-first-one-but-not-the-rest/1709811#1709811Comment by David Basarab on C# - Not saving right in Array - why will it save the first one but not the rest?David Basarab2009-11-10T17:44:33Z2009-11-10T17:44:33ZThat is not the case. string PathName = "empdata" + ".txt"; int counter = 0;
http://stackoverflow.com/questions/1663811/minimal-requirements-to-be-a-mvpComment by David Basarab on Minimal Requirements To Be a MVPDavid Basarab2009-11-02T21:30:11Z2009-11-02T21:30:11ZThe link you put up says everything.http://stackoverflow.com/questions/1566099/filtering-datagridComment by David Basarab on filtering datagridDavid Basarab2009-10-14T13:19:33Z2009-10-14T13:19:33ZWhat technology? ASP.NET, Winforms?http://stackoverflow.com/questions/1565980/is-there-market-for-visual-code-injection-tool-in-netComment by David Basarab on Is there market for visual code injection tool in .net?David Basarab2009-10-14T12:44:44Z2009-10-14T12:44:44ZThis site is for asking programming questions not Market Research.http://stackoverflow.com/questions/1544581/asp-net-editorsComment by David Basarab on ASP.NET EditorsDavid Basarab2009-10-09T15:44:59Z2009-10-09T15:44:59ZWhat are you trying to get out of VS? Do you mean you don't want to use VS any more?http://stackoverflow.com/questions/1541339/rapid-application-development-or-good-programming-practice-which-one-do-you-choo/1541369#1541369Comment by David Basarab on Rapid Application Development Or Good Programming Practice? Which one do you choose..David Basarab2009-10-09T13:15:40Z2009-10-09T13:15:40ZORM are a data layer. But the data layer should only be called by the business layer. The UI should only call the business layer. The business layer has all the business rules for the system.http://stackoverflow.com/questions/1534147/select-all-columns-from-all-tables-in-sql-server-2008Comment by David Basarab on Select all columns from all tables in SQL Server 2008David Basarab2009-10-07T21:00:18Z2009-10-07T21:00:18ZWhy would you want to do this?http://stackoverflow.com/questions/1527640/how-to-get-feedback-to-a-page-from-a-running-thread-in-asp-net/1527686#1527686Comment by David Basarab on How to get feedback to a page from a running thread in ASP.NET?David Basarab2009-10-06T19:54:06Z2009-10-06T19:54:06ZI would refactor to another class.http://stackoverflow.com/questions/1516714/setting-pings-type-of-service-in-cComment by David Basarab on Setting Ping's Type of Service in C#David Basarab2009-10-04T16:01:21Z2009-10-04T16:01:21ZYour question is to vague, can you give more detail?http://stackoverflow.com/questions/1512440/is-it-possible-to-execute-several-sql-inserts-in-the-same-batch-the-same-way-as-i/1512456#1512456Comment by David Basarab on is it possible to execute several Sql Inserts in the same batch the same way as its possible to execute several selects using SqlDataReader.NextResult()?David Basarab2009-10-04T15:44:53Z2009-10-04T15:44:53ZYou do not need a go.http://stackoverflow.com/questions/682494/visual-studio-f6-stopped-working-it-no-longer-builds-the-project/682505#682505Comment by David Basarab on Visual Studio F6 stopped working. It no longer builds the project.David Basarab2009-10-02T16:43:42Z2009-10-02T16:43:42ZI had the same problem when I installed VM Ware. SHAME on you VM Ware for overrighting my keyboard short cuts with you VS plugin.