| Thread | Last Post | Replies |
|
| Limiting the use of PDA device | 23 May 2008 19:31 GMT | 1 |
Hi, I am developing an application to use by PDA device (Windows Mobile 5.0) for a survey. The users should only have access to the application and should not be able to use other programs in PDA. I need some how to disable the keys in PDA, disable the start menu or limit ...
|
| Plese help with my codes | 23 May 2008 19:08 GMT | 1 |
This is te first time I use url rewriting. What I am trying to accomplish: Hide the .aspx extension and give user a shorter path to type, say the user can type "/sales" in browser and the browser will display "/topic.aspx?topic=sales"
|
| end of string found | 23 May 2008 19:06 GMT | 2 |
IndexOf gives you the start of the string found in another string. How do you get the end of the string found? I am trying to get the path of the startup: string stemp = Application.StartupPath;
|
| Socket BeginSend and disconnections | 23 May 2008 18:55 GMT | 4 |
A while back I posted regarding a problem we were having with one of our applications which was randomly crashing. Monitoring memory usage revealed a spike in nonpaged pool memory just prior to the crash each time. We finally think we have narrowed down the cause of this to a ...
|
| What's the best online resource for learning C# for beginners? | 23 May 2008 14:35 GMT | 6 |
My question is exactly same as topic title? What's the most effective and efficent website for learning C# from zero-level? Thanks.
|
| Maximize an other application from my csharp application | 23 May 2008 12:07 GMT | 1 |
I want to maximize an other running application from my C# application. First I want tot test if the application is running, and then maximize it from my csharp application.
|
| Animation to adjust position of elements. (wpf) | 23 May 2008 11:59 GMT | 1 |
Below is some xaml that is a mockup of a control I'm building. It's a shape that will be used in a diagramming tool. The red, blue and green rectangles simulate connectors on the side of the shape and will have connection lines attached to them. These connectors will be ...
|
| Get IHttpHandler in WCF service | 23 May 2008 11:58 GMT | 4 |
I want to get the IHttpHandler from a svc service. With old asmx webservices, I get it using WebServiceHandlerFactory.GetHandler . How can I get IHttpHandler in WCF running in serviceHostingEnvironment :
|
| XML Serialization - Remove XML-instance namespace? | 23 May 2008 11:36 GMT | 6 |
When I'm serializing my objects to XML, .NET seems to put the following namespace into certain elements: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
| Understanding the margin property. | 23 May 2008 11:27 GMT | 1 |
I have a group of elements inside a grid and want to align them along the left side of the grid. I also want have this group centered vertically and the xaml below demonstrates the appearance want to achieve. At runtime I don't know how many there will be, but there will always ...
|
| Conversion VS2005 Solution to VS2008 Solution | 23 May 2008 10:03 GMT | 4 |
I am converting a VS2005 Solution to VS2008 Solution and all went well I checked the Solution file (sln) and Project file (csproj) into SVN - I checkout the solution from SVN and it want to convert again??? Anyone else had this problem ???
|
| CreateDelegate(Type, Instance, MethodInfo) | 23 May 2008 07:51 GMT | 1 |
I am working on a class library that should incpect a given class, make a delegate to a get Property and use it later on. Here is the code snippet: public delegate int MyClassDelegate(MyClass cls);
|
| BuildAsync() delay problems | 23 May 2008 07:47 GMT | 1 |
I have a question regarding activating of BuildAsync() method via web service. I got a handler which is invoked when I get a result from web sevice at the end of BuildAsync() and the problem is that I got a delay after I
|
| data type in pInvoke? | 23 May 2008 07:45 GMT | 2 |
I am trying to use pInvoke and I need to pass some data from a C++ dll to C# app and vice-a-versa. The data which needs to be passed to C# app is WCHAR* in the dll. How do I marshal them? Do I need to allocate memory to the string in the dll?
|
| How to Edit my Derived Panel in Visual Designer | 23 May 2008 05:44 GMT | 3 |
I derived a panel class: public class DeskPanel : System.Windows.Forms.Panel Now I want to use the visual designer to add controls in MyPanel class. But I noticed that the visual designer didn't work.
|