Wedgebert's Q&A profile
.NET Development Converting existing COM-object ( C++ MFC ) to webservice using SOAP Toolkit 3.0 : Class not registered
Hi, I tried converting our existing COM-object into a webservice. The COM-object is made in C++ ( MFC, non .Net ) and is working properly ( tried it in VB and C++ ). When I try to convert the COM-object with the WSDL Generator, it halts on a error-message : Writing WSML info for ISuppliers failed, possible incorrect registration information. Class not registered. I did see in the overview ( after analyzing the COM-object ) that certain types of ...Show All
.NET Development XML Schema - Trimming
I'm using an XML schema in SQL Server 2005 that has 'include' directives in it, and because SQL 2005 doesn't support 'include' directives, i've had to merge all the schemas into one to overcome this. The schema itself works fine, but my problem stems from the fact that the schema itself ends up about 2MB (50,000+lines) and includes far too many elements/types that I don't need, but were in the included schemas. Stripping them out by hand tak ...Show All
Visual Studio How to add Folder using Item Template?
Hi experts, I am going to create an Item Template which create 3 files in a folder. I got it work with the a "hard-coded" folder name, however, how can I create the folder according to user input Eg. I created the .vstemplate file as below: <Folder Name="Templates" TargetFolderName="$fileinputname$"> <ProjectItem SubType="Code" TargetFileName="$fileinputname$A.cs" Repla ...Show All
Visual Basic File I/O speed in VB.NET vs VB6
I read and write a large data structure in VB.net as: FileOpen(1, TheFileName$, OpenMode.Binary, OpenAccess.Write) FilePut(1, Drawings(DrawingIndex)) FileClose(1) Where Drawings is a Structure and consists of other structures, arrays of arrays etc. In VB.net this is almost 10 times SLOWER than the equivilant from VB6 In other words, the same basic read/write operations seem to take 10 ti ...Show All
Visual Studio One property/item to access all the properties set on the command-line
Hi, Is there a property or an item I can access to fetch all the command line properties set for this invokation of msbuild i.e., >> msbuild myfile.targets /p:one=1;two=2 In myfile.targets I want to say <snip> <Message Text="@(AllCommandLineParams)"> </snip> Required output: One=1;Two=2 Thanks, Adrigo PS: Obviously, I dont want to explicitly use the names of the properties. ...Show All
Visual Studio Team System What does this error mean and why does it keep coming up?
Exception LoadTestException Could not find dependent counter needed to apply threshold rule: \\MCSD-DEV\LoadTest:Page\Avg . Page Time(_Total) The view is: at Microsoft.VisualStudio.TestTools.WebStress.Rules.ThresholdRuleCompareCounters.CheckCounterValue(PerformanceCounterValue counterValue, ICounterProvider counterProvider) at Microsoft.VisualStudio.TestTools.WebStress.LoadTestResultsCollector ...Show All
Windows Forms Basic Architecture of System.Windows.Forms.Datagrid Control
Hi, I am using Datagrid control for the first time in windows forms, I found it very different from the grid used in Web Appllication. I want to have some basic about the architecture on which the datagrid is based and perform its operations.&n ...Show All
Visual Studio VS Help intergration- KIndex problem
Hi, This is for the help index for our VSIP package. I am using VSHIK 2003. The Kindex.HxK file contains the following entries- <Keyword Term="Keyword1"> <Jump rl="Html/Htmpage1.htm"/> <Keyword Term="Subkeyword1"><Jump Url="Html/Htmpage1.htm#BABEIHDF"/> </Keyword> <Keyword Term="Subkeyword2"><Jump Url="Html/Htmpage1.htm"/>< ...Show All
Visual Basic Available Training
This is probably not the right forum for a training question so please point in the right direction. How do I identify classroom training possibilities for VS2005/ SQL Server 2005 , 2.0 framework, etc for my local area (Seattle) Thanks, Fred Herring Free for a limited time E-learning classes https://www.microsoftelearning.com/visualstudio2005/ Find training http://www.microsoft.com/learning/training/find/findcourse.mspx ...Show All
SQL Server remote connection error SQL2005
I am trying to connect to a remote 2005 SQL server “A” from my 2005 SQL Server Management Studio on a different network. I have opened up port 1433 on the remote server A. I have made sure that “Allow remote connections to this server” is checked on the remote server properties under connections. I have also chosen “Using both TCP/IP and named pipes” under Remote Connections in the SQL Server 2005 Surface Area Configuration. I am using ...Show All
Windows Forms What is that control? Like the Toolbox/Server Explorer in VS.IDE
Hi, all! I want to find a sample of how to develop a control in my windows form that is pretty much like Toolbox/Server Explorer control in VS IDE. The one that will dock to one edge of the form, and will pop up a menu with icons when mouse hovers over it. Then users can launch other windows from there. I am sure you know what I am talking about. But I don't even know what to call them, so I have no idea how to google. Now a days, ...Show All
Visual Studio Team System Estimated/remaining/completed hours for each discipline?
I have a requirement from my project manager to be able to provide estimated, remaining and completed times for a given task based and for each discipline associated with that task. So have a single field for the sum of these times is not appropriate. The reason, I gather, is to gain a better idea of where slippage is occurring and how best to manage that in the future. I've had a hell of a time with this due to the PM's lack of familiarity with ...Show All
SQL Server problem with update
Hi Gurus! In a scenrio i want to add one figure in the employeeid column in my table. I just want employeeid+1. And i m applying this query. UPDATE SET employeeid=employeeid+1 WHERE employeeid=111 My Table: employeeid lastname firstname reportsto ----------- ------------------------- ------------------------- ----------- 110 soomro w.a 11 111 Jhonson Tom 12 111 ...Show All
Visual C++ Autoscroll
How do I make my about box autoscroll Like have a picture to the left and then a rich text box where all of my text is but then start to autoscroll down I'm not exactly sure what you're asking, but you might try creating a textbox with a scroll bar, and setting a timer to send a scroll event every so often. ...Show All
.NET Development what approach should I follow for Plugin[modules] type applications
I want's to know what approach should I follow for Plugin type applications.That is I make an application with ten modules.If a customer buy certain pluguns that is 6 out of 10 modules then what can I do. How should I start from design to deployment. (Note I am asking it for .net 2.0 that is with changes in compilation of a project .net 2.0) I wan't suggestion for both desktop as well as web application I got a reply from some ...Show All
