Beemer's Q&A profile
Visual Studio Team System Problems with Debug and FxCop
Hi All, Sometimes when I starts the debug process, it do not stops in my breakpoints. I do the same thing with all my rules, but sometimes all my breakpoints do not work in all my rules.... When it happens, I am forced to create a new project and import all my rules to this new project. It is not a good idea and I'd like to know why it happens and if there is a solution. It happenned 4 times up to now. I am using fxcop 1 ...Show All
Visual Studio Team System App.config and Unit Tests
Can you not add a app.config file to a Unit Test project Here is my app.config file in my unit test project: < xml version="1.0" encoding="utf-8" > <configuration> <connectionStrings> <add name="mycn" connectionString="server=myserver;Trusted_Connection=False;database=mydb;uid=username;pwd=password"/> </connectionStrings> </configuration> And here is one of my unit t ...Show All
Visual C# Various functionality missing from Visual C# 2005 beta2?
I can't find code definition window, some of the refactoring stuff, and some of the debugger stuff. And they appear to be missing from customize-commands too. I did notice something strange when i was messing around the settings importer/exporter. One of the times I was playing with, there was a bunch of 'key' errors related to this functionality stated above. I seem to be missing functionalit ...Show All
Visual Studio 2008 (Pre-release) SQL Extensions
Will the DLINQ implementation be opened enough that we can extend available extension methods to add new ones given we provide the SQL equivalent On LINQ I could easily add: extracted from Jomo Fisher's blog: http://blogs.msdn.com/jomo_fisher/archive/2005/09/15/467804.aspx public static class MyExtensions { public static int SumSquares( this IEnumerable< int > values) { int sum = 0; & ...Show All
Visual Studio 2008 (Pre-release) Please help to compare WCF, WebService and Remoting.
Where can I find some instruction on this Hey Leo. You might want to start by reading through some of my blog postings ( http://blogs.msdn.com/richardt ). Start with my earliest posts and work forward in order to follow the evolution of the story. Any problems, please feel free to contact me. ...Show All
Software Development for Windows Vista Problems with state persistence and timer services
Hi, I've experimented with adding the SQL state, timer and tracking services to the Lab1 sample step 4 (the expense report approval workflow). The tracking service works fine, but it seems that the state and timer services get the engine stuck on the ListenForManagerApproval activity. If I disable the state and timer services the workflow unfolds as expected. I use the (really cool) Workflow Monitor sample to view the results, and the progress ...Show All
Windows Forms Changing the index of combo box programmatically based on text box value
Hi, I am very new in vb.net I will appreciate if someone help me. I have a databound textbox on the form and one combo box bound with arraylist. arraylist has two columns Code and description. Discription has been set as DisplayMember and ...Show All
Software Development for Windows Vista sql tracking query & terminated flow
Hi there, I have a workflow terminated in the middle due to some exceptions, also I have faults handler implemented in the workflow. The problem is when I use SqlTrackingWorkflowInstance object to display the workflow tracking info, I only see 2 workflow events(Termed/Persisted) and 2 activity events(Faulting/Closed) , all others tracking info are not returned at all.-- I believe there are lots of things were logged since the eventorder # displa ...Show All
Visual Basic I can't get my toolbox to open in VBExpress
Somehow I closed the toolbox window in a form designer. Now using any of the options it will not open again. I don't get an error message, but if I do View -> Toolbox, click on the Toolbox icon, or ctrl - alt - X, hourglass flashes then disappears and nothing ever happens. Have tried re-installing multiple times, both from the disc I had ,then directly off the MS web site. Same result. Any suggestions ...Show All
Visual Studio Team System connect to Foundation Server
Thank you for the help I got from this forum. Now I eventually install Foundation Server :) After installed the foundation server, I used visual studio 2005 beta 2 to connect to team foundation server. But I have a problem: I normally login to my xp machine which belong to a workgroup using a local machine account - e.g. xpding. After I join my machine to the domain controller of the server, I can only login using xpding to local machine, if I t ...Show All
Visual C++ OpenMP support?
VC++2005 Beta 2: As it seems the following files for OpenMP support are missing (at least for my installation): vcomp.lib and omp.h. Are they available for the Beta 2 Where can I get them Cheers Juergen Hi All, Using VS 2005 Pro, and get the: "This application has failed to start because vcompd.dll was not found ....." I have tried including omp.h and have checked that the dll does ex ...Show All
Visual C++ PostQuitMessage Issue
Hi, I have tried to automate my application through a small VB program. This program runs fine except for when you press the quit button. This button succesfully navigates to the designated function in my C++ code for my application but at this point it fails. All that is in this function is PostQuitMessage(0);. It is on this call that the application locks up, as well as the VB app locking up. I have looked at the ...Show All
Visual C# Does using(IDisposable) induce boxing?
If I have a value type Foo: struct Foo : IDisposable { void Dispose() {}; } And I place an instance of Foo in a using block: Foo bar = new Foo(); using (bar) { ... } My understanding is that bar.Dispose() will be called at the end of the using block. My question is, does this induce boxing Since Foo is a value type, and IDisposable is not, will the C# compiler cast bar to type IDi ...Show All
.NET Development .NET2 SerialPort - 100% CPU problem
Hi All , i'm using .net2 beta1 SerialPort class. the problem is when i first recieve bytes - the CPU is getting up to 100% and stays there. i tried working with the SerailPort in many ways (starting Recieve thread, etc') but it seems that this problem repeats itself. is the read call is synchronous and does not come back until it finish a sample code that cause this without a seperate thread in this case) SerialPort m_SP; m_SP = new SerialPort( ...Show All
Visual Studio Express Editions Application won't run beyond splash screen on testing machines
I have almost finished developing a rather extensive application that was in part upgraded from VB6. Since deployment is a bit different with VB Express than VB6, I've been trying to get a handle on this aspect. The compiled application runs on my development machine without any problems. I have loaded .net 2.0 framework on two different machines and have dealt with various issues and error messages, and now at the point where the splash scre ...Show All
