knutejoh's Q&A profile
Visual Studio DDEX for Compact Framework
This is something I can't find any documentation for ... I know this can be done, since SqlServerCe does it... Its designer uses SqlServerCe.Client, but when you do databinding and so forth it actually adds a reference to SqlServerCe to your project instead. Does this happen through the FactoryService for the SqlServerCe designer, or somewhere else deeper into the implementation I basically need to let the user design away with the full f ...Show All
.NET Development Soap Serializer does not support serializing Generic Types.
I tried to serialize an object contains list (List<>) of objects and I got this exception: Soap Serializer does not support serializing Generic Types : System.Collections.Generic.List. It works fine with the BinaryFormatter. Yeah, Let me post more codes about the configuration. What I am doing here is, I have a remoting server start, also to have the capability for a client to event call back t ...Show All
Windows Forms SIMPLE question for all you .NET geniuses
Not that I'm NOT a .NET genius!!!! I just want to make sure YOU ALL know!!! (OK ENOUGH OF THAT!) I'm a genius-WANNA BE Let's say we create a form, a class derived from the form class. Now, this form has buttons and everything in it. &nbs ...Show All
Visual Studio Express Editions i need help im new
if some1 can plz help me i need to learn the basics of C++ Get a book.. there are a lot out there. I bet there is a "C++ for dummies" series . Try Amazon. ...Show All
Visual Studio 2008 (Pre-release) Visual inheritance planned ?
Hi all, Is Visual Inheritance (like Windows Forms) a planned feature of the VS2005 WPF implementation Thank you. you won't get them done in the same way as it was done for WinForms, will ya :) ...Show All
Visual Studio 2008 (Pre-release) ClickOnce Deployments
I am trying to deploy an application involving Expression as the front end using ClickOnce. When I bring up the solution in VS 2005, and click publish, I always get an error saying "SignTool reported an error 'The form specified for the subject is not one supported or known by the specified trust provider." I had created a test certificate to sign the ClickOnce manifest. Do you know of any problems deploying Expression/WPF apps ...Show All
Visual Studio Team System Can hidden field detection be disabled in recorder?
We have this ASP.NET application that is written a bit unconventionally. We use a lot of hidden fields, and the fact that they are "detected" and remapped makes testing awfully difficult. I see the recorder records the correct values, but everything is remapped when the data is transferred into VS 2005. Can anyone help Am I simply missing the blindingly obvious Great, I'm glad to hear that's working for you.&nb ...Show All
Visual C++ XML Comments
When I first heard that Visual C++ 2005 was going to support XML documentation I was very excited to try the beta. One fo the things I expected was the XML documentation experience to be identical to that of C#, but here are some of my experiences. The triple slash (///) before a function header doesn't automatically generate some blank xml comments for me When I place XML comments above a function header and specify information about its ...Show All
Visual Studio Express Editions Regarding the progressbar
Hi There Im damn new to this, but managed to put together an browser with buttons for printing , navigation and so on, but now after reading some sites at MSDN im really confused. My target is to show the progess for downloading a webpage. Here is my code so far: Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate(TextBox1.Text ...Show All
Visual Studio Team System Can't Install TFS RC on a Domain Controller???
We can no longer install TFS (RC) on a domain controller This worked in earlier betas and CTP versions. But now I'm told with the installer that this is not a supported configuration, yet the installation guide talks about installing on a DC. I wasted all this time setting up the DC system and get to the point of running TFS install and am told I can no longer do this I've seen Microsoft respondents in the past indicate that you can install on ...Show All
.NET Development I couldn't find advantage of StringBuilder in .NET 2.0
I have written a small application to test differet way of appending strings Method 1: Use + operator. Like s = s + " " + str1 + " " + str2 + " " + str3 + " " + str4 + " " + str5 Method 2: Using String.Join. Like s = String.Join(" ", new string [] {s, str1, str2, str3, str4, str5}); Method 3: Using String.Format. Like s = String.Format("{0} {1} {2} {3} {4} {5}", s, st ...Show All
Visual C# 3 word command in C#
Hi everyone, Happy to participate in this forum. Can anyone tell me how to define a 3 word command. Example like if we type GIVE BREAD DWARF or something like that. Thankyou. The parser would break up the words and then try to work out what they meant. A bit like the parser that turns your C# commands into MSIL. What makes you decide on a three word limit The text adventures that were not free text were generally verb noun, which is ...Show All
Visual J# knowing character representation for an 8-bit ASCII code
i wanted to get the character representation of an 8-bit ASCII value. how can i do this are there any predefined Methods or Classes for doing this You might want to try out the following. class repro { public static void main() { //char s = 65; char s = '\u0041'; System.out.println(s); } } -Varun ...Show All
SQL Server Derived Column Task failing with error 0xC0049067
I have a package that fails as soon as it hits the first Data Flow that contains a Derived Column task. The task takes three date columns and looks for a date of 6/6/2079. If it is there, it is replaced with a NULL. This task worked fine until I installed the Non-CTP version of SQL 2005 SP1, earlier today. (I went from RTM 9.0.1399 to SP1 9.0.2047)Does anyone have any ideas Here is the error I am trapping: An error occurred while evaluat ...Show All
Visual C# Output String From ArrayList
I'm attempting to take an array list of integers and convert it to an array of strings. I run this code string [] myarr = ( string []) ArrayList.ToArray( typeof ( string ) ); and I get this error: An unhandled exception of type 'System.InvalidCastException' occurred in mscorlib.dll Additional information: At least one element in the source array could not be cast down to the destination array type. I have verified that the cou ...Show All
