Bit_Flipper's Q&A profile
Visual Studio Printing to printer using VS 2005 Web Browser Control error
Hi, I have a simple report that renders correctly in the Web browser Control of Visual Studio 2005. However when I press the print button I get the error: "An error occured trying to get the current window" It then follows on with an Internet Explorer Script Error 8007f305 If I get the report to render in a seperate form i.e Windows Internet Explorer using webBrowser.Navigate(textBoxUrl.Text, true ); then it works fine. Any ...Show All
Visual Studio Team System Beta 3 Setup Error: Windows SharePoint Services is not configured as recommended by Team Foundation Server
I am trying to install Team Foundation Server Beta 3 as single server installation and installed all required software components. However, during the installation, it gives me "Windows SharePoint Services is not configured as recommended by Team Foundation Server" error under "Recommened Components" dialog box. I exactly have followed an instruction specified in setup guide for Team Foundation Server Beta 3 for SharePoint services installation. ...Show All
Visual C++ MFC -> String* to const char* or String* to char
How can I convert a String* in MFC to const char* mychar or char mychar[MAX_PATH] Thank heaven for this forum! I have found the code below to help me ALOT. Now I can continue (after 2 - 3 weeks) with my project. //method 3 CString str3(str); ...Show All
.NET Development Help with .Net Runtime libraries msvcr71.dll
Hi! I have an application developed using VC++.NET 2003. Up until now, it's worked fine for my users. However, I just got a tech support request yesterday from someone who can't get the program to start. The error was this: Fault, The File MSVCR71.DLL was not found! I did some searching, and found that on MSDN, it states NOT to assume that file is on the user's computer, but to redistribute the file with your application. I did not d ...Show All
Windows Forms What logical order are Controls stored in the Controls collection?
Hi all, how are the Controls on a Windows form stored What I mean is, are the Controls in the Form.Controls collection (Controls[0], Controls[1], Controls[2] etc) stored in the positions that they are appear (x, y) on screen So a control that is positioned in the top left comes before a control that is positioned at the bottom right in the Controls collection (I probs have these completly wrong :)) The reason I am asking is because I have a loa ...Show All
Visual Studio Team System How to run ordered tests?
Hi, This might be a very basic question, but I can't figure out how to run an ordered test. How do I run an ordered test without having to run everything else (like I can run individual web tests) Thank you. You have to run the ordered test from the test view window (or test manager window), not from the ordered test window, which is what you are trying to do. Web tests can be run from their own edito ...Show All
Visual C++ vector container with user-defined class problem
Hi all: I want to use the STL vector to store an array of objects which class is user-defined. LMVector is the user defined class and here it's the LMVector.h file. class LMVector { private: .... public: .... }; In another class LMRectangle, there is a field needed to store an array of LMVector. Here is the header file for LMRectangle class LMRectangle{ public: ...Show All
Visual Studio 2008 (Pre-release) IOperationInvoker documentation, sample...
Can anyone give me some links or articles explaining the IOperationInvoker interface. Basically, in some circunstances (based on the request message) I want to route my message to a generic handler. So, in a normal situation I want to user the default invoker used by the runtime, and in some conditions, which are detected using an IStubMessageInspector, I want to use my invoker. Is this possible Thanks in advance ...Show All
Software Development for Windows Vista Question about TransactionalContext Activity
i am explaning the scenario...... i have decalred a variable a=1; I have placed "Transactional Context Activity" in Workflow Application and placed two "Code Activities" with in that Transactional Activity. In code1_execute & code2_execute , i incremented the value a. now place "Code Activity" after transactionalActivity. in Code3_execute i written Console.writeline(a); now when we set Transa ...Show All
Visual Studio Express Editions Windows service application in Visual C# Express
I'm trying to build a simple Windows Service application in Visual C# Express. I simply can't get started. The documentation mentions a NON -existent template, which makes it kind of hard. However, I can see there's a 'ServiceBase' item in the toolbox and I have a feeling that that's the way to go, but there's no documentation telling how to use that. If I start a Windows Form application, I can drop this 'ServiceBase' component on ...Show All
Visual C++ LINK : fatal error LNK1104: cannot open file 'libcimtd.lib'
Hi, I've been trying to compile a code snippet and this is the first time I was using Visual Studio. I got an error while linking the objects: 1>LINK : fatal error LNK1104: cannot open file 'libcimtd.lib' I've already installed the Windows 2003 SDK without the x86_64 things, because my processor is x86. I didn't change any setting apart, VC++ directories where I added the SDKs ones. Do you know what my problem is Thanks! PS: I'm still ...Show All
Visual Studio Team System Possible to Sort a picklist?
We are using the priority of 1 till 10. Using a picklist this results in: 1 10 2 3 4 etc. Hence we would like: 1 2 3 etc. The field type is set to Integer, and using a global list shows same result. Is it possible to assing a sort order of type This doesn't work in Beta 3, but we're investigating a fix for RTM (it's not trivial when we have to take other cultures into account). For Beta 3, we sort as strings. Th ...Show All
Visual Studio Clickonce and ReportViewer
When user try to run the winform application I deployed using clickonce thru http, they keep getting an error saying “could not load file Microsoft.ReportViewer.ProcessingObjectModel”. Within the application, I do import the namespace Microsoft.Reporting.Winforms to support local hosted report parameters. I make sure both assemblies (Microsoft.ReportViewer.Common and Microsoft.ReportViewer.WinForms) are included, even as local cop ...Show All
Visual C++ help with error C2872: 'IServiceProvider' : ambiguous symbol with C++ code
Hi, I am getting the error ......ServProv.h(93) : error C2872: 'IServiceProvider' : ambiguous symbol with the following code. file.cpp #include "stdafx.h" using namespace System; using namespace System::Runtime::Remoting; #import ".\RemotableObject.tlb" namespace mynamespace { class myclass { ... } int _tmain(int argc, _TCHAR* argv[]) { &n ...Show All
Visual Studio Team System SdmC.exe - where is this tool located ?
My apologies if this is an incredibly stupid question - I downloaded the SDM SDK but I cannot find the SdmC.exe compiler Did I miss something Where do I get a copy of this tool Regards, Bob Wilmes It's typically located <install dir>\VSIP 8.0\SdmSDK\Tools\. If you don't have this dir you probably want to download and install Download the Visual Studio 2005 SDK Beta 2 . Nel ...Show All
