active questions tagged c# - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T02:20:48Zhttp://stackoverflow.com/feeds/tag/c#http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2233959/linq-enums-as-iqueryable1LINQ & Enums as IQueryableRam2010-02-10T02:09:32Z2010-02-10T02:14:56Z
<p>I basically have an enum</p>
<pre><code>public enum WorkingDays
{
Monday, Tuesday, Wednesday, Thursday, Friday
}
</code></pre>
<p>and would like to do a comparison against an input, which happens to be a string</p>
<pre><code>//note lower case
string input = "monday";
</code></pre>
<p>The best thing I could come up with was something like this</p>
<pre><code>WorkingDays day = (from d in Enum.GetValues(typeof(WorkingDays)).Cast<WorkingDays>()
where d.ToString().ToLowerInvariant() == input.ToLowerInvariant()
select d).FirstOrDefault();
</code></pre>
<p>Is there any better way to do it ?</p>
http://stackoverflow.com/questions/2226184/c-detecting-spawned-processes3C# Detecting Spawned Processestjjjohnson2010-02-09T01:35:59Z2010-02-10T02:11:52Z
<p>I'm writing a piece of c# code that launches an installer and waits for it to return before continuing with other stuff.</p>
<p>I'm having trouble with certain installers that spawn other processes with the original process returning before the install has actual finished. <strong>Is there some way that I can wait until all the processes have finished?</strong></p>
<p>To clarify here's the scenario I'm having trouble with:</p>
<ol>
<li>Launch Installer1</li>
<li>Installer1 spawns/launches another installer (Installer2)</li>
<li>Installer 1 returns</li>
<li>Application thinks install has finished but Installer2 is still running. This causes issues with workflow in the app.</li>
</ol>
<p>Here's the code I'm using at the moment:</p>
<pre><code> // launch installer
Process process = windowsApplicationLauncher.LaunchApplication(_localFilePath);
// wait for process to return
do
{
if (!process.HasExited)
{
}
}
while (!process.WaitForExit(1000));
if (process.ExitCode == 0)
{
_fileService.MoveFile(_localFilePath, _postInstallFilePath);
_notification.SetComplete(false);
return true;
}
return false;
</code></pre>
http://stackoverflow.com/questions/2231703/is-there-a-way-to-use-visual-studios-watch-window-in-my-own-app0Is there a way to use Visual Studio's Watch Window in my own App?Jason Punyon2010-02-09T19:06:00Z2010-02-10T02:10:36Z
<p>I have a basic messaging application that takes requests from clients and returns them response objects. When I encounter a malformed request object I serialize it to a database log for failed requests in a binary field. I'd like to be able to do is deserialize these malformed request objects and inspect them after the fact. </p>
<p>Is there a way to use the Visual Studio Watch window (or something like it) in my own app? I'm aware of the property grid and that's what I'm using for now but it'd be cool to use the watch window to inspect the objects since the watch window is what most of the developers are familiar with.</p>
http://stackoverflow.com/questions/194528/linq-asp-net-page-against-ms-access4LINQ asp.net page against MS Access . .oo2008-10-11T19:55:22Z2010-02-10T02:00:29Z
<p>I have a ASP.Net page using ADO to query MS access database and as a learning exercise i would like to incorporate LINQ. I have one simple table called Quotes.</p>
<p>The fields are: QuoteID, QuoteDescription, QuoteAuthor, QuoteDate. I would like to run simple queries like, "Give me all quotes after 1995". </p>
<p>How would i incorporate LINQ into this ASP.Net site (C#)</p>
<p>Basically, my question is does LINQ work for MS Access ??</p>
http://stackoverflow.com/questions/1410016/managing-c-garmin-api-in-c0Managing C++ Garmin API in C#borjolujo2009-09-11T09:46:08Z2010-02-10T02:00:03Z
<p>I want to call Garmin API (<a href="http://developer.garmin.com/mobile/mobile-sdk/" rel="nofollow">http://developer.garmin.com/mobile/mobile-sdk/</a>) in VB.Net Compact Framework project. The API is in C++, so i´m making a C# dll project as intermediate way between API dll and VB.Net. I have some problems while executing my code because it throw a NotSupportedException (bad arguments type, i think) in QueCreatePoint call. Here is the C++ API code, and my C# work:</p>
<p><strong>-- C++ Functions prototype and C# P/Invoke Calls ----------</strong></p>
<p>QueAPIExport QueErrT16 QueCreatePoint( const QuePointType* point, QuePointHandle* handle );</p>
<p>QueAPIExport QueErrT16 QueClosePoint( QuePointHandle point );</p>
<p>[DllImport("QueAPI.dll")]
private static extern QueErrT16 QueCreatePoint(ref QuePointType point, ref uint handle);</p>
<p>[DllImport("QueAPI.dll")]
private static extern QueErrT16 QueRouteToPoint(uint point);</p>
<p><strong>-- QueErrT16 ----------</strong></p>
<p>typedef uint16 QueErrT16; enum { ... }</p>
<p>public enum QueErrT16 : ushort { ... }</p>
<p><strong>-- QuePointType ----------</strong></p>
<p>typedef struct
{
char id[25];
QueSymbolT16 smbl;
QuePositionDataType posn;
} QuePointType;</p>
<p>public struct QuePointType
{
public string id;
public QueSymbolT16 smbl;
public QuePositionDataType posn;
}</p>
<p><strong>-- QueSymbolT16 ----------</strong></p>
<p>typedef uint16 QueSymbolT16; enum { ... }</p>
<p>public enum QueSymbolT16 : ushort { ... }</p>
<p><strong>-- QuePositionDataType ----------</strong></p>
<p>typedef struct
{
sint32 lat;
sint32 lon;
float altMSL;
} QuePositionDataType;</p>
<p>public struct QuePositionDataType
{
public int lat;
public int lon;
public float altMSL;
}</p>
<p><strong>-- QuePointHandle ----------</strong></p>
<p>typedef uint32 QuePointHandle;</p>
<p>In C# i manage it as uint var.</p>
<p><strong>-- And this is my current C# function to call all this ----------</strong></p>
<pre><code>public static QueErrT16 GarminNavigateToCoordinates(double latitude , double longitude)
{
QueErrT16 err = new QueErrT16();
// Open API
err = QueAPIOpen();
if(err != QueErrT16.queErrNone)
{
return err;
}
// Create position
QuePositionDataType position = new QuePositionDataType();
position.lat = GradosDecimalesASemicirculos(latitude);
position.lon = GradosDecimalesASemicirculos(longitude);
// Create point
QuePointType point = new QuePointType();
point.posn = position;
// Crete point handle
uint hPoint = new uint();
err = QueCreatePoint(ref point, ref hPoint); // HERE i got a NotSupportedException
if (err == QueErrT16.queErrNone)
{
err = QueRouteToPoint(hPoint);
}
// Close API
QueAPIClose();
return err;
}
</code></pre>
<p>I will appreciate any help. Thanks.</p>
http://stackoverflow.com/questions/2206542/consuming-soap-with-service-with-name-space0Consuming SOAP with service with name spacefravelgue2010-02-05T10:36:13Z2010-02-10T01:58:09Z
<p>I´m consuming a SOAP web service, that it has namespace, some similar to:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
<wsdl:definitions targetNamespace="http://www.company.com/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:company="http://www.company.com/"
xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:types>
<xsd:schema elementFormDefault="qualified" targetNamespace="http://www.company.com/" version="0.1"
xmlns:cmp="http://www.company.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Number" type="cmp:NumberType" />
</code></pre>
<p>My problem is when .net serialize the object it does not include prefix cmp in xml. It renders <code><Number</code>.... instead of <code><cmp:Number</code> ...</p>
<p>What can i solve it?</p>
http://stackoverflow.com/questions/2233061/button-not-firing-onclick-below-panel-controls-in-ie0Button not firing onClick below Panel controls in IESam2010-02-09T22:40:27Z2010-02-10T01:54:19Z
<p>Hi,</p>
<p>I have a button which is not working when placed below two panels. If I move it above the panels, it works. </p>
<p>It works either way in Firefox.</p>
<p>The button runs this code</p>
<pre><code>protected void Button2_Click(object sender, EventArgs e)
{
panelForm.Enabled = true; //input panel
panelOutput.Visible = false; //output panel
Button1.Visible = true; //input panel button
}
</code></pre>
<p>I have some workarounds, but was hoping to find the cause of the issue.</p>
<p>edit: here is the markup of the second panel and button. I've tried moving the button outside of the panel and get the same result.</p>
<pre><code><asp:Content ID="MainContent" Runat="Server" ContentPlaceHolderID="MainContentPlaceHolder">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="domainUserID" runat="server" Visible="false"></asp:TextBox>
<!-- gray bar and title -->
<table style="width:100%; border-style:none;">
<tr>
<td class="com_headline">
SQL Emergency Request [Home]
</td>
</tr>
<tr class="com_app_instructions">
<td>
<p>Words here</p>
</td>
</tr>
</table>
<!-- end title and gray bar -->
<asp:Panel ID="panelForm" runat="server" Visible="True" CssClass="myform">
<form method="post" action="Default.aspx" id="form">
<h1>Request Form</h1>
<p>Complete this form to be issued a login</p>
<table cellpadding="5px">
<tr>
<td>
IR Number
<br />
<span class="small">Obtain your IR number from
<a href="http://apps.server/SMART">SMART</a></span>
</td>
<td>
<asp:TextBox ID="txtIR" runat="server"></asp:TextBox>
</td>
<td>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
ControlToValidate="txtIR" CssClass="errorMsg"
ErrorMessage="Please Enter Your IR Number">
</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
Server
<br />
<span class="small">MSSQL5 is supported for now</span>
</td>
<td>
<asp:DropDownList ID="ddServer" runat="server" AutoPostBack="True"
Enabled="False" onselectedindexchanged="ddServer_SelectedIndexChanged">
<asp:ListItem>DEVMSSQL05</asp:ListItem>
<asp:ListItem Selected="True">MSSQL05</asp:ListItem>
</asp:DropDownList>
</td>
<td>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
ControlToValidate="ddServer" CssClass="errorMsg"
ErrorMessage="Please Choose A Server">
</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
Database
<br />
<span class="small">You have the role of &#39;Analyst&#39; in these databases</span>
</td>
<td>
<asp:DropDownList ID="ddDatabase" runat="server" AppendDataBoundItems="true"
AutoPostBack="false" DataSourceID="DatabaseDropDownObjectDataSource"
DataTextField="DatabaseName" DataValueField="DatabaseName" Width="150">
</asp:DropDownList>
</td>
<td>
</td>
</tr>
<tr>
<td></td>
<td>
<asp:Button ID="Button1" runat="server" CssClass="com_btn_flat"
onclick="Button1_Click" Text="Submit" />
</td>
<td>
<div id="loader">loading...</div>
</td>
</tr>
</table>
</form>
</asp:Panel>
<asp:Panel ID="PanelError" runat="server" Visible="false" CssClass="errorPanel">
<h1><asp:Label ID="txtErrorMsg" runat="server">error text</asp:Label></h1>
</asp:Panel>
<br />
<asp:Panel ID="panelOutput" runat="server" Visible="false" CssClass="panelOutput">
<h1>
<asp:Literal ID="Title" runat="server" Text=""/>
</h1>
<p>
<asp:Literal ID="Warning" runat="server" Text=""/>
</p>
<p>
<asp:Literal ID="LoginLifeHours" runat="server" Text=""/>
</p>
<p>
<span class="important">
<asp:Literal ID="Login" runat="server" Text="" />
</span>
</p>
<p>
<span class="important">
<asp:Literal ID="PWD" runat="server" Text="" />
</span>
</p>
<br />
<p>
<asp:Button ID="Button2" runat="server" Text="Request Another Login"
onclick="Button2_Click" CssClass="com_btn_flat" />
</p>
</asp:Panel>
<asp:Button ID="test_button" runat="server" Text="Test This"
CssClass="com_btn_flat" onclick="test_button_Click" />
</code></pre>
<p>
</p>
<p></p>
<p></p>
http://stackoverflow.com/questions/2233751/publish-options-file-associations-not-working1Publish Options - File Associations (Not working)Luficer2010-02-10T01:12:20Z2010-02-10T01:50:39Z
<p>When I go to the Project Menu, and select the 'ApplicationName Properties' option, and then click on the Publish tab down the bottom, and bring up the Publish Options dialog and select 'File Associations' and set the file associations for my application, and then publish the project - it doesn't work.</p>
<p>I have set it up to open TXT and MF (My own format) files.</p>
<p>I think I may know what's going on here, because in the past (with the same code I'm using now), TXT files were opening with my ApplicationName.exe file correctly, BUT, now that my application is alot bigger and more complex, it requires installation (not just a single exe anymore), and so Visual Studio Express Edition creates Shortcut files (ClickOnce Application Reference files) instead of normal exe files.</p>
<p>So, can someone kindly suggest how I would get the file associations working properly for my application?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/2233874/linq-composition-generates-a-weird-from-clause1LINQ composition - generates a weird FROM clauseRa2010-02-10T01:43:53Z2010-02-10T01:50:24Z
<p>I have a qs. for you LINQ gurus...</p>
<p>I am using LINQ in a composable way and the SQL being generated is a bit complex and of the form:</p>
<pre><code>SELECT xxx FROM
(
SELECT yyy from myTable1, myTable2
WHERE foo == bar
) AS t7
WHERE t7.column == value.
</code></pre>
<p>The LINQ statement is formed by combining a few IQueryable types, whereby the SELECT part is in a method that returns an IQuerable and then I tack on some conditions elsewhere.</p>
<p>I know it is in the way I compose the LINQ that I need to tweak, but I want to finally execute SQL: </p>
<pre><code>SELECT xxx FROM myTable1, myTable2
WHERE foo == bar
and t7.column == value.
</code></pre>
<p>So, basically the nested FROM clause goes away.</p>
<p>This seems to be a standard problem, and I can provide more details of my LINQ statements, if needed. </p>
http://stackoverflow.com/questions/2233691/parse-hour-and-am-pm-value-from-a-string-c0Parse hour and AM/PM value from a string - C#Michael Kniskern2010-02-10T00:56:17Z2010-02-10T01:50:05Z
<p>What would be the most effective way to parse the hour and AM/PM value from a string format like "9:00 PM" in C#?</p>
<p>Pseudocode:</p>
<pre><code>string input = "9:00 PM";
//use algorithm
//end result
int hour = 9;
string AMPM = "PM";
</code></pre>
http://stackoverflow.com/questions/1989237/soap-php-webservice-and-net0SOAP: PHP WebService and .Net aks2010-01-01T18:27:09Z2010-02-10T01:44:49Z
<p>I have to connect with PHP WebService via SOAP from a .Net (C#, WPF) application. I added reference to this service, some proxies were generated.</p>
<p>When I invoked some function:</p>
<pre><code>var client = new someAPIPortTypeClient();
XmlNode[] response = client.status(arg1, arg2);
</code></pre>
<p>I got response:</p>
<pre><code>SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:nakopitel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:statusResponse>
<statusReturn xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">is_active</key>
<value xsi:type="xsd:boolean">true</value>
</item>
<item>
<key xsi:type="xsd:string">allow_add_paid</key>
<value xsi:type="xsd:boolean">false</value>
</item>
<item>
<key xsi:type="xsd:string">allow_search_free</key>
<value xsi:type="xsd:boolean">true</value>
</item>
<item>
<key xsi:type="xsd:string">allow_add_free</key>
<value xsi:type="xsd:boolean">true</value>
</item>
</statusReturn>
</ns1:statusResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</code></pre>
<p>It interpreted like XmlNode[]...</p>
<p>How can I get normal proxy-classes to work with this SOAP-service? I can ask the service author to change something if it requires.</p>
<p>Update. WSDL for status function.</p>
<pre><code><?xml version='1.0' encoding='UTF-8'?>
<definitions name="something" targetNamespace="urn:something" xmlns:typens="urn:something" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">
<message name="status">
<part name="terminal" type="xsd:integer"/>
<part name="code" type="xsd:string"/>
</message>
<message name="statusResponse">
<part name="statusReturn" type="xsd:anyType"/>
</message>
<portType name="someAPIPortType">
<operation name="status">
<documentation>
Get status
</documentation>
<input message="typens:status"/>
<output message="typens:statusResponse"/>
</operation>
</portType>
<binding name="someAPIBinding" type="typens:someAPIPortType">
<operation name="status">
<soap:operation soapAction="urn:someAPIAction"/>
<input>
<soap:body namespace="urn:something" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body namespace="urn:something" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="somethingService">
<port name="someAPIPort" binding="typens:someAPIBinding">
<soap:address location="http://something/soap/"/>
</port>
</service>
</definitions>
</code></pre>
http://stackoverflow.com/questions/2233431/framework-for-web-development-based-on-net1Framework for web development based on .NET [closed]shake2010-02-09T23:53:35Z2010-02-10T01:40:15Z
<p>Struts is best for JAVA in my opinion what is good in your opinion for .NET??</p>
<p>EDIT: Point of question is to find out diferent options for this.</p>
http://stackoverflow.com/questions/2226161/what-is-the-most-efficient-way-to-count-all-of-the-words-in-a-richtextbox1What is the most efficient way to count all of the words in a richtextbox?highone2010-02-09T01:32:45Z2010-02-10T01:31:11Z
<p>I am writing a text editor and need to provide a live word count. Right now I am using this extension method: </p>
<pre><code> public static int WordCount(this string s)
{
s = s.TrimEnd();
if (String.IsNullOrEmpty(s)) return 0;
int count = 0;
bool lastWasWordChar = false;
foreach (char c in s)
{
if (Char.IsLetterOrDigit(c) || c == '_' || c == '\'' || c == '-')
{
lastWasWordChar = true;
continue;
}
if (lastWasWordChar)
{
lastWasWordChar = false;
count++;
}
}
if (!lastWasWordChar) count--;
return count + 1;
}
</code></pre>
<p>I have it set so that the word count runs on the richtextbox's text every tenth of a second (if the selection start is different from what it was last time the method ran). The problem is that the word count gets slow when working on very long files. To solve this I am thinking about having the word count only run on the current paragraph, recording the word count each time and comparing it against what the word count was last time the word count ran. It would then add the difference between the two to the total word count.
Doing this would cause many complications (if the user pastes, if the user deletes a paragraph, ect.)
Is this a logical way to go about improving my word count? Or is there something that I don't know about which would make it better?</p>
<p>EDIT:
Would it work to run the word count on a different thread? I don't know much about threading, will research.</p>
<p>SAMPLE TEXT THAT I USED:</p>
<blockquote>
<p>NARRATIVE: The narrative paragraph tells a story, just like a narrator in a play.
Sandy and Rick are on a hiking trip. They have worked up quite an appetite by lunchtime. They sit down on a rock to eat. Famished, they open the backpack that contains their lunch. There is no sandwich, no chips, no cookies. A mystery package has replaced all of that! Slowly and incredulously, they take the package from the backpack. Not only did it appear in their lunch, but it has their names on it. What is inside? How did it get into their backpack? Who sent it and why? And what are Sandy and Rick going to do for food up on this lonely mountain so far away from town?
Start your story using these three sentences:
Sandy and Rick spent the morning climbing the face of the mountain rock by rock. It had been a long and arduous journey and they were famished. At last, Rick called a halt.
It was about two in the afternoon and it felt like an eternity had passed since breakfast. Rick unslung the backpack and placed it between himself and Sandy as they sat next to each other on the side of the mountain with their feet pointing down the mountain's southern slope and their backs against a large rock.<br>
They were sitting about three fourths of the way up the mountain in an area , which had more boulders than tree's. They always stopped here to eat when they climbed the mountain, because from this point they could see the town they lived in twelve miles away, it looked very small and distant.
Rick leaned over and unzipped the main pocket of the backpack.
As soon as he looked inside his face fell. The sandwiches and all of the other food they had packed were gone. In its place there was a strange bundle wrapped in a dirt-stained white cloth.
Had he grabbed the wrong backpack? He couldn't have. Rick didn't own any other backpacks that looked like the one in which he and Sandy had packed their lunches.
"Our food's gone." Rick said looking up at Sandy whose eyes were on him.
Sandy frowned. "How? Could it have fallen out while were hiking?"
"I don't think so", said Rick "The backpack was still zipped up when we stopped."
Rick reached in and pulled out the bundle. It felt much too light to contain their food.
"What's that?" Asked Sandy.
"I don't know. I don't remember us packing anything like this when we left."
"Neither do I."
Rick began to quickly unwrap the bundle, noticing as he did so that it had a faintly musty scent.
When he had finished unwrapping the bundle he lay the white cloth on the ground between him and Sandy and then placed four items on top of it: a folded piece of paper, a key and a sticky note.
Rick and Sandy sat staring in wonder at the items in front of them. They had definitely not packed any of these. The key looked like it was from a different time, perhaps the 1800's. It was made from beautifully polished brass with a large loop on one end, which had the double purpose of both providing a handle and a place where it could be attached to an old fashioned key ring.
Rick picked up the note:
"Your food is safe and awaits your arrival."
"That sure doesn't clear anything up." Thought Rick.
He was about to tell Sandy what the note said when she started talking.
"This looks like it's a map of this mountain," Said Sandy holding the now unfolded piece of paper that had been in the package. She leaned closer to Rick and pointed to a squiggly line on the paper in the middle of what did indeed look like a crudely drawn mountain.
"See, this is where we hike up the mountain."<br>
Her finger swept over various drawings scattered along the side of the path.
"These are landmarks, right now we are right... here!" Punctuating the word "here" by stabbing a drawing, that looked like a group of rocks, with her finger.
"And look, there’s an x marked near the top, like a treasure map. I wonder how all of this got in our backpack."
"What's the note say?" Sandy asked.
"It says 'Your food is safe and awaits your arrival'." Rick said, reading the note aloud.
"This is strange." Said Sandy.
"It's more than strange, it's creepy. How could anyone have gotten into our backpack?" Said Rick.
Rick thought back over the day, trying to remember a time when they had left the backpack unattended. A mental montage of memories from earlier in the day, starring the backpack, played in his head. Finishing wrapping the sandwiches and placing them inside the backpack. Putting the backpack on the backseat of the car and driving to the mountain. Taking it out of the car and strapping it on his back. A few memories of stopping to take a bottle of water out of the backpack's front pocket for he and Sandy to share. They had always kept the backpack with them, never letting it out of their sight and the only time they had seen other people had been when they were driving to the mountain. This was not a very popular or well-known mountain; in the dozens of times they had come here to hike they had never seen anyone else.
"I don't know how someone could have gotten into our backpack and stolen our food. It's not like we just left it lying around somewhere, it's been with us since we put the food inside." Said Rick.
"Do you think we should just go home?" Rick asked Sandy, turning to stare down the mountain. It would be a long hike back to the car on an empty stomach and he was not looking forward to it.
"I don't know," Said Sandy "I don't really feel like hiking all the way back down the mountain without eating. We're almost to the top anyway. Why don't we just keep going and get our food?"
"It could be a trap."
"Why would someone go to so much trouble to lead us into a trap when they could have jumped us near the base of the mountain and not have to climb all the way to the top themselves?" Asked Sandy.
"Maybe they wanted us to be worn out from the climb."
There was a twinkle in Sandy's eyes and she was grinning widely.
"Come on Rick, if they had to climb the mountain they'd be just as tired as us. Where's your sense of adventure?"
“The person who took our food would have had to climb the mountain like we did, but at least they would have had food to eat.” Rick said.
Sandy just stared, at him smiling.
"Fine." He said
They stood up and continued hiking up the mountain. Without food to eat there was no reason for them to rest any longer.
It took them a little under an hour to reach the summit, stomachs growling all the way. When they got there they noticed an army of grey-black clouds far away to the northeast with a dark mist streaming from their undersides. It was strange to be able to watch a rainstorm from a place where it was perfectly dry and the sun was shining brightly, unobscured by any clouds.
As soon as they reached the summit Rick and Sandy took a break to catch their breath, which was very easy to lose at such a high elevation.
When they had stopped panting Rick pulled the map out of their backpack and handed it to Sandy.
Sandy stared at the map. There was no compass rose to show her what direction she should face. After staring at the map for a while Sandy began to slowly spin, alternately looking at the map and looking in front of her until alternated between squinting at the map and staring at her surroundings as she slowly spun around. After spinning in a complete circle Sandy stopped facing the exact same direction she had been facing when she started spinning. Sandy took one last glace at the map, before pointing to a small outcrop of rocks a couple hundred feet in front of them .
"There's where the x is." Announced Sandy.
Rick and Sandy had seen the outcrop on previous hikes. They climbed to its top almost every time they came to the mountain. It was located at the northern edge of the summit where the mountain dropped off at a 90 degree angle for almost ten thousand feet. This is why Sandy liked to refer to the side of the mountain they had climbed as "the friendly side of the mountain".
To Rick the steep cliff made it look like someone had brought down a giant hammer on the mountain causing a large part of it to shatter and fall away in a massive avalanche made entirely of rock. During this cataclysmic event an entire slope of the mountain had sloughed off into the forest, splintering every tree it encountered. Based on the size of the ruble Rick and Sandy estimated that the north side of the mountain had been much steeper than the side they climbed, even before it became a cliff. They often speculated that the weight of gravity combined with the freezing of water filled cracks and not a supernaturally large hammer, must have been the cause of the mountain's breaking. Although they believed this to be the case, sometimes when staring down at the remains of the northern slope, it was hard to imagine how all that could have been caused by nature. This mountain had never even been a volcano!
The reason they braved the vertigo inducing outcrop on each hike was not because they were seeking an adrenaline rush, but because sitting on its top you were truly at the mountains highest point and that point provided one of the most stunning views either of them had ever seen. While sitting on top the outcrop Rick had once turned to Sandy and said "The Grand Canyon's got nothing on this." It was true. When you stood staring down into the Grand Canyon you were surrounded by noisy tourists snapping pictures with disposable cameras and fences had been erected all around to keep you from falling off the edge. The canyon itself is dead and bland. Just dry red rock everywhere. Here, you look down and see great hunks of broken white limestone laying like a pile of bones at the mountain's foot. Then you look forward and the forest is spread out before you, seemingly without end. Then to the sky. Rick was startled to notice that the clouds he had seen earlier, although still quite far off, were closer now. The dark clouds roiled malevolently with a sickly greenish hue.
"Those clouds are getting closer." Said Rick.
Sandy didn't say anything but her smile widened. She'd been smiling ever since they had found out that someone had stolen their lunch. That more than the clouds was making Rick nervous. Why would loosing their food cause Sandy to smile?
"It wouldn't." Said a voice in his head.
She was getting far too excited. Rick became even more nervous.
"The top of a mountain isn't a safe place to be during a storm. We should go back down."
"No." Replied Sandy exuberantly. "We're already here and the clouds are far away." Her smiled seemed to widen even more. "Besides we can't go back down the mountain without getting our food back."
At the mention of food Rick's stomach growled in agreement.
"Okay, fine." Said Rick, doing his best to make it clear by his voice that he thought they should forget about the food and go back down the mountain.
Sandy heaved an exasperated sigh, but Rick thought that he saw a mischievous glint in her eye. "If you really think we should leave we can."
"Is she playing with me?" He thought.
"No, no It's fine. I'm sure we'll be okay. The clouds do seem far off. It's probably just my imagination that them seem closer." Rick said, sounding more sincere this time.
"Good." Said Sandy, pleased that she had won. She walked over to the outcrop, which was marked by an X on the map. After a few moments Rick followed her.
They both slowly walked around the outcrop's base looking for their lunch, but it wasn't there.</p>
</blockquote>
http://stackoverflow.com/questions/2233668/c-attempted-to-read-or-write-protected-memory-error2C# Attempted to read or write protected memory errordeltanovember2010-02-10T00:50:37Z2010-02-10T01:30:58Z
<p>Addendum: it seems to run correctly when I uncheck "optimize code" which leads me to believe it is some quirky configuration problem</p>
<p>Firstly I am trying to run unmanaged code. I have "allow unsafe code" checked. It is pointing to this line of code here where I am trying to read a bitmap without using the relatively slow getpixel:</p>
<pre><code>byte[] buff = { scanline[xo], scanline[xo + 1], scanline[xo + 2], 0xff };
</code></pre>
<p>Entire snippet is below. How can I correct this problem?</p>
<pre><code>private const int PIXELSIZE = 4; // Number of bytes in a pixel
BitmapData mainImageData = mainImage.LockBits(new Rectangle(0, 0, mainImage.Width, mainImage.Height), ImageLockMode.ReadOnly, mainImage.PixelFormat);
List<Point> results = new List<Point>();
foundRects = new List<Rectangle>();
for (int y = 0; y < mainImageData.Height
{
byte* scanline = (byte*)mainImageData.Scan0 + (y * mainImageData.Stride);
for (int x = 0; x < mainImageData.Width; x++)
{
int xo = x * PIXELSIZE;
byte[] buff = { scanline[xo], scanline[xo + 1],
scanline[xo + 2], 0xff };
int val = BitConverter.ToInt32(buff, 0);
// Pixle value from subimage in desktop image
if (pixels.ContainsKey(val) && NotFound(x, y))
{
Point loc = (Point)pixels[val];
int sx = x - loc.X;
int sy = y - loc.Y;
// Subimage occurs in desktop image
if (ImageThere(mainImageData, subImage, sx, sy))
{
Point p = new Point(x - loc.X, y - loc.Y);
results.Add(p);
foundRects.Add(new Rectangle(x, y, subImage.Width,
subImage.Height));
}
}
}
</code></pre>
http://stackoverflow.com/questions/2152887/how-to-browse-a-particular-folder1 How to Browse a particular folderpeter2010-01-28T07:15:08Z2010-02-10T01:30:39Z
<p>I have a folderBrowserDialog control and i have a button named click
i did like this way</p>
<pre><code> private void click_Click(object sender, EventArgs e)
{
folderBrowserDialog1.ShowDialog();
}
</code></pre>
http://stackoverflow.com/questions/2232492/is-using-a-root-persistent-class-or-base-persistable-object-an-architecture-smell1Is using a root persistent class or base persistable object an architecture smell?dthrasher2010-02-09T21:03:07Z2010-02-10T01:29:28Z
<p>One of the major gripes voiced by the Alt.Net community against the Microsoft Entity Framework is that it forces you to use a Base Persistable Object for everything being stored in the database. I have two questions related to this:</p>
<ol>
<li><p>Is it acceptable to have a "Root Persistent Class" as the base for the domain objects in your application, or is this an architecture smell? </p></li>
<li><p>If you feel it is OK for you to have one within your application, is it also OK for an ORM framework to force you to use one? Are there reasons to avoid a framework that makes you do this?</p></li>
</ol>
<p>I've been using an abstract base object as the root of all my peristable classes for some time. It makes several housekeeping chores much easier.</p>
http://stackoverflow.com/questions/2233354/how-do-you-draw-a-string-to-a-bitmap-in-silverlight2How do you draw a string to a Bitmap in Silverlight?Spencer Bassett2010-02-09T23:36:56Z2010-02-10T01:28:05Z
<p>In normal C# it is easy to draw to a bitmap using the Grpahics.DrawString() method. Silverlight seems to have done away with Bitmap objects and Graphics is no longer available either. So...How am I meant to manipulate/create a bitmap when using Silverlight? If it helps, I am using Silverlight 3.</p>
<p>Let me tell you what I am doing. I am being given a template, basically a pre-rendered image. The user is then able to select from multiple images and enter the deisred text. I then render it to the image, adjusting size etc... within bounds and centering it in the pre-defined area of the image. If I can calculate the size (as in the MeasureString method) and then draw the string (as in the Graphics.DrawString method) that would be fine. The real question, no matter why I want to be able to do this, is can it be done?</p>
http://stackoverflow.com/questions/2232472/what-is-the-preferred-method-for-storing-application-settings-in-windows-mobile-a1What is the preferred method for storing application settings in Windows Mobile Applications? borq2010-02-09T20:59:14Z2010-02-10T01:23:18Z
<p>I am using the .NET Compact Framework 3.5 and I am trying to determine if there is a standard way to store settings that a user to change in my application. I am aware of the Compact 3.5 SQL database, but I am trying to avoid that if I can to avoid a dependency that is not already installed on the user’s mobile device (I already have to worry about the 3.5 .NET Framework so I am trying to avoid any other dependencies if I can).</p>
<p>I saw that the old .config file (via System.Configuration.ConfigurationSettings.AppSettings) is obsolete and doesn’t appear to be supported on the Compact framework anyway. </p>
<p>Aside from stuffing it in an xml file stored in /Application Data/My App/ and parsing it, are there any built in libraries for this type of functionality?</p>
<p>I am not seeing much online or on this site about this. Mostly non-compact framework solutions.</p>
http://stackoverflow.com/questions/2233727/linq-to-sql-create-a-dettached-entity-object1LINQ to SQL: Create a dettached entity objectsoldieraman2010-02-10T01:04:57Z2010-02-10T01:12:10Z
<p>I have generated few classes using to LINQ to SQL</p>
<p>one of them being "Customer"</p>
<p>Now I want to create a Customer object that is disconnected. </p>
<p>i.e. I can create the object keep it in session and then attach it back only if I want to. Not automatically. Hence only if I attach it - it should affect my context's SubmitChange() otherwise not.</p>
<p>Is this possible?</p>
<p>Also can I add this detached object to a collection of attached objects without affecting SubmitChanges() or on add will the detached object become attached again?</p>
http://stackoverflow.com/questions/2134119/extracting-indesign-cs4-graphics-using-c-and-com0Extracting InDesign CS4 Graphics using C# and COMwilson322010-01-25T17:19:40Z2010-02-10T01:12:06Z
<p>I'm trying to get details of the graphics in an InDesign file. For technical reasons I'm using COM. Not my favourite, as (discussed elsewhere in StackOverflow) you have to spend half your life casting. In Theory (!), the code snippet belwo should work. Intellisense shows <strong><em>doc.AllGraphics</em></strong> as returning <strong><em>objects</em></strong>. </p>
<p>The CS3 scripting reference at <a href="http://www.indesignscriptingreference.com/CS3/JavaScript/Document.htm" rel="nofollow">http://www.indesignscriptingreference.com/CS3/JavaScript/Document.htm</a> shows it as <strong><em>Array of Graphic</em></strong></p>
<pre><code>for (int g = 1; g <= doc.AllGraphics.Count; g++) {
InDesign.Graphic graphic = (InDesign.Graphic) doc.AllGraphics[ g ];
....
}
</code></pre>
<p>However, I get this error message:</p>
<blockquote>
<p>Unable to cast COM object of type
'System.__ComObject' to interface type
'InDesign.Graphic'. This operation
failed because the QueryInterface call
on the COM component for the interface
with IID
'{6AE52037-9E4E-442D-ADFC-2D492B4BCBEF}'
failed due to the following error: No
such interface supported (Exception
from HRESULT: 0x80004002
(E_NOINTERFACE)).</p>
</blockquote>
<p>I've tried using alternative constructs to return an object and then cast this to an <strong><em>Indesign.Graphic</em></strong>. All fail with the same error. I can't believe that Adobe missed including this interface.</p>
<p>Any suggestions as to a solution so I can get the graphic content?</p>
http://stackoverflow.com/questions/2231593/upcasting-with-a-generic-type-parameter3Upcasting with a generic type parameterAuraseer2010-02-09T18:49:28Z2010-02-10T01:07:47Z
<p>Is it possible to "upcast" from a generic class based on T, into a generic class based on something more general than T?</p>
<p>For instance, say I have a class named <code>Derived</code> that inherits from a class named <code>Base</code>. Can I ever do something like this:</p>
<pre><code>List<Derived> der = new List<Derived>();
List<Base> bas = (List<Base>) der;
</code></pre>
<p>Or, using interfaces, is it ever possible to do something like this:</p>
<pre><code>List<MyClonableType> specific = new List<MyClonableType>();
List<IClonable> general = (List<IClonable>)specific;
</code></pre>
<p>As written here, each of these examples fails with an <code>InvalidCastException</code>. The question we're arguing about is whether it's actually impossible, or simply a syntax error that could be fixed if we knew how.</p>
http://stackoverflow.com/questions/2233695/c-generating-blt-files-for-openstv-elections-how-did-stack-overflow-jeff-do1C#: Generating .BLT Files for OpenSTV Elections: How Did Stack Overflow (Jeff) Do It for the Mod Election?Maxim Z.2010-02-10T00:57:28Z2010-02-10T00:57:28Z
<p>I just downloaded OpenSTV after seeing the most recent SO blog post, regarding the results of the moderator election. Jeff wrote that he used OpenSTV to conduct the election, and supplied a ballot file (.blt) along with it that contains the voting data. </p>
<p>My question is: how do you create a .BLT file in C#?</p>
<p>Here are two ways that I can think of that the voting page did it:</p>
<ul>
<li>The voting page added each vote into a SQL database, and then somehow, these votes were exported into a .BLT file after voting had ended. How though? How can I do this?</li>
<li>Or, the voting page created the file and then added to it each time someone voted. I'm sure that this is NOT how the voting page worked, because it's completely unscalable, but how could I do this in C#?</li>
</ul>
<p>I'm interested in finding out how both possibilities work and how I can do that in C#. Thanks in advance. Oh, and I hope Jeff sees this question, because he'd probably have a great answer...</p>
http://stackoverflow.com/questions/2233592/does-f-really-allow-specifying-which-functions-to-be-inlined-in-code1Does F# really allow specifying which functions to be inlined in code?Joan Venge2010-02-10T00:36:06Z2010-02-10T00:54:04Z
<p>When I am reading F# stuff, they are talking about inlining methods, but I thought .NET didn't expose this functionality to programmers. If it's exposed then it has to be in the IL? And so can C# make use of it as well?</p>
<p>Just wondering if this thing is the same as C++ inline functionality.</p>
http://stackoverflow.com/questions/2233645/how-can-i-declare-in-c-sharp-a-list-with-nullable-double-values0How can I declare in C sharp a List with nullable double values?Chris2010-02-10T00:46:26Z2010-02-10T00:54:00Z
<p>The purpose is to enumerate the list and count how many nullable values I have, It will be used in order to test some Linq code because I lack of database. The thing is that no matter how I tried to define it I get from my compiler: "The type or namespace name <code>List</code>1' could not be found. Are you missing a using directive or an assembly reference?(CS0246)]".</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/2229025/mapscript-querybypoint-return-no-results1Mapscript queryByPoint return no resultslucian.jp2010-02-09T12:42:42Z2010-02-10T00:48:13Z
<p>I have a dynamically generated mapfile made with c# mapscript that is defined like:</p>
<pre><code>MAP
EXTENT 659345.80598793 5730942.63270937 659498.680044501 5731095.50676595
IMAGECOLOR 192 192 192
IMAGETYPE png
SIZE 256 256
STATUS ON
TRANSPARENT TRUE
UNITS METERS
NAME "GMAP_TILE"
OUTPUTFORMAT
NAME "png"
MIMETYPE "image/png"
DRIVER "GD/PNG"
EXTENSION "png"
IMAGEMODE "PC256"
TRANSPARENT TRUE
END
SYMBOL
NAME "circle"
TYPE ELLIPSE
FILLED TRUE
POINTS
1 1
END
END
SYMBOL
NAME ">"
TYPE TRUETYPE
ANTIALIAS TRUE
CHARACTER ">"
GAP -20
FONT "arial"
POSITION CC
END
PROJECTION
"proj=merc"
"a=6378137"
"b=6378137"
"lat_ts=0.0"
"lon_0=0.0"
"x_0=0.0"
"y_0=0"
"units=m"
"k=1.0"
"nadgrids=@null"
END
LEGEND
IMAGECOLOR 255 255 255
KEYSIZE 20 10
KEYSPACING 5 5
LABEL
SIZE MEDIUM
TYPE BITMAP
BUFFER 0
COLOR 0 0 0
FORCE FALSE
MINDISTANCE -1
MINFEATURESIZE -1
OFFSET 0 0
PARTIALS TRUE
END
POSITION LL
STATUS OFF
END
QUERYMAP
COLOR 255 255 0
SIZE -1 -1
STATUS ON
STYLE HILITE
END
SCALEBAR
ALIGN CENTER
COLOR 0 0 0
IMAGECOLOR 255 255 255
INTERVALS 4
LABEL
SIZE MEDIUM
TYPE BITMAP
BUFFER 0
COLOR 0 0 0
FORCE FALSE
MINDISTANCE -1
MINFEATURESIZE -1
OFFSET 0 0
PARTIALS TRUE
END
POSITION LL
SIZE 200 3
STATUS OFF
STYLE 0
UNITS MILES
END
WEB
IMAGEPATH ""
IMAGEURL ""
QUERYFORMAT text/html
LEGENDFORMAT text/html
BROWSEFORMAT text/html
END
LAYER
NAME "Troncons"
PROJECTION
"proj=longlat"
"ellps=WGS84"
"datum=WGS84"
END
STATUS DEFAULT
TEMPLATE "nofile.html"
TOLERANCE 100
TOLERANCEUNITS METERS
TYPE LINE
UNITS METERS
CLASS
NAME "Troncons"
STYLE
ANGLE 360
COLOR 0 0 255
SIZE 5
SYMBOL "circle"
WIDTH 5
END
STYLE
ANGLE 360
COLOR 0 0 0
SIZE 12
SYMBOL ">"
WIDTH 1
END
END
FEATURE
POINTS
5.91828 45.63552
5.91876 45.63611
5.91898 45.6364
5.91936 45.63701
5.91952 45.63731
5.91968 45.63762
5.91993 45.63825
5.92003 45.63856
5.92018 45.63919
5.92028 45.63983
5.92031 45.64014
5.92033 45.64046
5.92034 45.64077
5.92034 45.64108
5.92034 45.64171
5.92035 45.64234
5.92035 45.6428
5.92037 45.6433
5.9204 45.64394
5.92046 45.64458
5.92056 45.64522
5.92062 45.64554
5.92069 45.64586
5.92077 45.64617
5.92097 45.64679
5.92122 45.64739
5.92136 45.64769
5.92169 45.64828
5.92207 45.64886
5.92228 45.64914
5.92272 45.64969
5.92321 45.65023
5.92346 45.65051
END
END
END
END
</code></pre>
<p>I try to queryByPoint to retreive the index of the shape clciked near. In the code below I made a specific test function with fixed point instead of points passed by parameter so I am sure the point I use is actually part of a feature. In my case I use the first point of the only feature contained in mapfile.</p>
<pre><code>public string GetTronconId()
{
//_map is my dynamically created mapObj
if (_map != null)
for (int i = 0; i < _map.numlayers; i++)
{
layerObj layer = _map.getLayer(i);
// Code never pass this point
if (layer.queryByPoint(_map, new pointObj(5.91898, 45.6364, 0, 0), (int) MS_QUERY_MODE.MS_QUERY_MULTIPLE, 100) == (int) MS_RETURN_VALUE.MS_SUCCESS)
{
int numresults = layer.getNumResults();
if (numresults != 0)
{
layer.open();
for (int j = 0; j < numresults; j++)
{
resultCacheMemberObj resultat = layer.getResult(j);
shapeObj shape = null;
if (layer.getShape(shape, resultat.tileindex, resultat.shapeindex) == (int) MS_RETURN_VALUE.MS_SUCCESS)
return shape.getValue(0);
}
}
}
}
return null;
}
</code></pre>
<p>I have a dummy TEMPLATE set, I do not eveen have to use the tolerance since the point is derectly in a shape, but the queryByPoint keep returning me MS_FAILURE. From my searches on the web everything seem to be OK. Any idea?</p>
http://stackoverflow.com/questions/2233187/sql-query-to-linq-groupby-and-max1SQL Query to Linq GroupBy and MaxDave2010-02-09T23:04:11Z2010-02-10T00:45:08Z
<p>Here is a SQL query that I am trying to convert in to Linq. I am using a generic list of objects and not a DataTable if that is relevant. </p>
<pre><code>Select Max(Date), ID, Property1, Peroperty2 From List Group By ID
</code></pre>
<p>Please help.</p>
http://stackoverflow.com/questions/2233152/targeting-multiple-wcf-endpoints-with-one-dll1Targeting multiple WCF endpoints with one DLLJacob2010-02-09T22:56:07Z2010-02-10T00:41:24Z
<p>Good afternoon,</p>
<p>I am writing a DLL that that leverages WCF to make a web services call. Normally this is fairly straightforward: I configure the endpoint in the .config file and be done with it. However, in this case, the DLL can be called in one of several contexts and depending on the context, the endpoint might change. The behavior of the DLL remains unchanged.</p>
<p>I would like to use one copy of the DLL, but I'm having trouble figuring out how to make this work. I could set up multiple instances of the endpoint and do a case statement, but I'm looking for something a little more extensible. I've thought of a couple of things.</p>
<ul>
<li>Changing the endpoint on the fly; I have the ability to pass config data into the DLL and could pass the endpoint in. However, this only allows me to change the endpoint not the protocol or anything else.</li>
<li>Keeping multiple config files and passing the path to the appropriate config file. This seems really messy and I'm not sure how it would work.</li>
</ul>
<p>I'm hoping to get some other ideas of how I might handle this situation. I can't seem to come up with something elegant.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/2226920/how-to-monitor-clipboard-content-changes-in-c2How to monitor clipboard content changes in C#?Weiming2010-02-09T05:20:33Z2010-02-10T00:30:25Z
<p>Hi,</p>
<p>I want to have this feature in my C# program: When the user do Ctrl+C or Copy anywhere (i.e. when the clipboard content changes), my program will get notified, and check whether the content met certain criteria, if so, become the active program, and process the content, etc.</p>
<p>I can get the contents out from <code>System.Windows.Forms.Clipboard</code>, however, I don't know how to monitor the content changes from the Clipboard.</p>
<p>Cheers,</p>
<p>EDIT: If using Vista or later, use <code>AddClipboardFormatListener</code> as in John Knoeller's answer, for XP, have to use the older, more fragile <code>SetClipboardViewer</code> API, as in the accepted answer.</p>
http://stackoverflow.com/questions/2233545/in-gtk-how-do-i-get-a-path-from-a-sorted-treeview-by-x-and-y-coordinates0In Gtk, how do I get a path from a sorted TreeView by x and y coordinates?Matthew2010-02-10T00:21:06Z2010-02-10T00:28:54Z
<p>I have a ListStore that is filtered and then sorted. It looks something like this:</p>
<pre><code>// Create a model for the cards
cardListStore = new ListStore (typeof (Card));
// Set up the tree view
cardFilter = new TreeModelFilter (cardListStore, null);
cardFilter.VisibleFunc = new TreeModelFilterVisibleFunc (FilterCards);
cardSort = new TreeModelSort (cardFilter);
cardTreeView.Model = cardSort;
</code></pre>
<p>I want to have a get a context menu specific for each row when I right-click on it. My click handler looks something like this:</p>
<pre><code>[GLib.ConnectBeforeAttribute]
void HandleCardTreeViewButtonPressEvent (object o, ButtonPressEventArgs args)
{
if (args.Event.Button != 3)
return;
TreePath path;
// If right click on empty space
if (!cardTreeView.GetPathAtPos (Convert.ToInt32 (args.Event.X),
Convert.ToInt32 (args.Event.Y),
out path)) {
MakeCardEmptySpaceContextMenu ().Popup ();
return;
}
TreeIter iter;
if (!cardListStore.GetIter (out iter, path))
return;
Card card = (Card) cardListStore.GetValue (iter, 0);
MakeCardContextMenu (card, iter).Popup ();
}
</code></pre>
<p>This works when the ListStore is not filtered or sorted. But when it is, it gives the wrong row.</p>
<p>For example, say the rows look like this before they are sorted:</p>
<p>A<br>
B<br>
C</p>
<p>And after they are sorted, they look like this:</p>
<p>B<br>
A<br>
C</p>
<p>Right-clicking on the second row ("A") will give you "B", because that's where B was before the model was sorted. The same thing happens for filtering. Say the model, after it is filtered, looks like this:</p>
<p>A<br>
C</p>
<p>Right-clicking on the second row ("C") would still give you "B".</p>
<p>Any idea how to work around this?</p>
http://stackoverflow.com/questions/2233102/strange-behaviour-with-incrementing-int-when-using-action-delegate0Strange behaviour with incrementing int when using Action<> delegatedotnetdev2010-02-09T22:48:20Z2010-02-10T00:26:23Z
<p>Hi,</p>
<p>Given the code below:</p>
<pre><code>class Sample
{
public static void Run()
{
int i = 1;
Action<int> change = Increment();
for (int x = 0; x < 5; x++ )
{
change(i);
Console.WriteLine("value=" + i.ToString());
}
}
public static Action<int> Increment()
{
return delegate(int i) { i++; };
}
</code></pre>
<p>} </p>
<p>I get the answer:</p>
<p>value=1
value=1
value=1
value=1
value=1
value=1</p>
<p>Instead of 1, 2, 3 ... 6.</p>
<p>This is from an article on the net with links to clues but I can't work out why this is. Anyone have any ideas?</p>