| Thread | Last Post | Replies |
|
| ASPNet HyperLink NavigateUrl question | 16 Aug 2007 05:16 GMT | 1 |
In my ASPNet 2.0 C# web form, there's a <asp:HyperLink ID="HyperLinkA" ... NavigateUrl="http://MyIP/MyFolder/MySubFolder"> TestLink </asp:HyperLink> My question is how to config the NavigateUrl as the combination of 2 strings
|
| Missing System.IdentityModel | 16 Aug 2007 04:25 GMT | 5 |
I'm deploying a clickonce application and encounter an error when user try to install it. The popup form says assembly System.Identity Model version 3.0.0.0 be installed in GAC first. But the user has already installed .net framework 3.0 runtime. What's happening here?
|
| Why doesn't this string reverse work with the space for this particular string? | 15 Aug 2007 23:22 GMT | 5 |
I just wrote this up real quick, and it seems to work with a bunch of input strings (with and without spaces) except for the one in the code below: string input = "this is a string";
|
| How to access the ServiceHost object from the WCF service | 15 Aug 2007 21:41 GMT | 10 |
I created a custom ServiceHost object and did a bunch of initialization there. Now I need to access an object in it from the actual WCF service class. How can this be done? Thanks!!!
|
| problem with XmlDocument.SelectNodes() | 15 Aug 2007 21:28 GMT | 2 |
I have a simple GML file I'm trying to parse using XmlDocument.SelectNodes, and it's not working. The GML: <wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs">
|
| How to detect when Tab Control loses its focus | 15 Aug 2007 21:20 GMT | 11 |
I have a WinForm application. The form has one Tab Control and one ToolStrip. I would like to know what would be the best way to detect when the user is "leaving" the Tab Control and "moving" into ToolStrip. Thank you
|
| Looking for thoughts on CSLA | 15 Aug 2007 21:07 GMT | 2 |
I am curious. Has anyone in here had in enterprise-level experience with CSLA... especially in conjunction with Enterprise Library? If so, what is your opinion of it? Worth considering?
|
| Socket Poll returns writable but not readable | 15 Aug 2007 20:34 GMT | 3 |
I have created a static class-level socket for use by the class member functions: static Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
|
| Overriding Button Class Text.set and OnPaint | 15 Aug 2007 20:32 GMT | 6 |
I'm having a really hard time trying to figure out how to override the drawing in my class derived from Button. When I set the text property, the drawing seems to be taking place in the set method. I
|
| Send OIDs to network device using WMI or NdisOidRequest? | 15 Aug 2007 19:59 GMT | 1 |
Is there a way to send OIDs request/set to miniport drivers? I understand that the only way is using WMI. Which method in WMI should be used? thanks.
|
| Minimum, Maximum, Average values of PerfMon. | 15 Aug 2007 19:53 GMT | 3 |
I am trying to do some monitoring of some PerfMon counters and have a question. Does PerfMon figure out the Minimum, Maximum, Average values for each counter? Or are those values part of the performance monitoring
|
| unbuffered file IO? | 15 Aug 2007 19:37 GMT | 19 |
Is there a class in the framework that allows me read text from a file in an unbuffered manner? That is, I'd like to be able to read lines in the same manner as StreamReader.ReadLine(), but I also need to be able to accurately get the position in the file of that line. Since
|
| Source of Additional Thread(s)? | 15 Aug 2007 19:32 GMT | 4 |
Does the FileSystemWatcher class, when enabled, spawn a new thread for itself? I googled and somehow just found people having random problems with the FileSystemWatcher class and the MSDN docs. MSDN online didn't clarify (at
|
| C# Win Forms GUI locks up with Asynch Socket Callback / WinForms.Delegate | 15 Aug 2007 19:28 GMT | 3 |
I wrote a simple Asynchronous Socket client that receives OnConnect notifications and attempts to report this back to the win forms app. as the notification method is on another thread i'm using winforms.Invoke or BeginInvoke but the GUI locks up - seemingly just
|
| Resize and SizeChanged events | 15 Aug 2007 19:11 GMT | 2 |
What is the difference between these two events? Help says one occurs when the Size property changes, and the other occurs when the control is resized. Isn't that the same thing?
|