mark healy's Q&A profile
Visual Studio Bugs with Class Designer EnvDTE80
When I open the Class Designer in VS2005 professional I get this message over and over: Method not found: 'Boolean EnvDTE80.CodeProperty2.get_IsShared()'. The behaviour is similar to the one described in http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=10777&SiteID=1 , but the suggested solution did not help in my case. My EnvDTE80.dll located in C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies ...Show All
SQL Server Problems with remote SQL 2005 server and excel as an input source
Hello, I am trying to write my first couple Integration Services packages using SQL 2005. My configuration is a workstation running windows xp professional, and a windows 2003 server that is running the SQL server. Anytime I run a package that accesses the remote server from my workstation, the job fails with an error code. The workstation cannot seem to run a package to load data to the remote sql server. Why is thi ...Show All
Windows Forms How to setup ArrayList properties
When I set up the property of a user component, I use -> public ArrayList Source { get {return rsource;} set {rsource = value;} } But the source has two properties - Name and ID. How can I set this up such that the Source property&nbs ...Show All
Windows Forms Need Help!
Hello,all. I'm now on a project which need to invoke some window APIs, u know,API is written in c++,the variable types are not the same as C#,so I should do some type changes. But one type which the API uses is PVOID,a point to voi ...Show All
Windows Forms Resizing and Repositioning Control on a Windows Form at runtime(.Net)
Hi Is it possible to resize, repositioning controls like (TextBox, Label, ....) during runtime on window Forms in (DotNet). How to proceed with this. Thanks Sriram You need to use a Forms designer for your problem. http://msdn.microsoft.com/msdnmag/issues/06/03/DesignerHosting/ ...Show All
SQL Server Iterative Calculations Analysis Server 2000
Hi all I'm looking for some help on an iterative cell calculation. I read somewhere that this can be done using a combination of the calculation pass value and calculation pass depth. I'm still having trouble though. The easiest way of explaining this is to use an example. Sales reps get incentives based on profit, however incentives affect expenses which in turn affects profits. Using a starting income statement with no incentive about I ...Show All
SQL Server Configure Peer-to-Peer Wizard Error
I'm trying to set up peer-to-peer replication among 3 servers. I created the publication on Server A, enabled it for peer-to-peer replication then backed up the database. I restored the database to Servers B and C then from Server A tried to Configure Peer-to-Peer Topology from the right click menu on the publication. When I click OK, I get three expected warnings that the log reader agent already exists on each of the three servers. The wizard ...Show All
Visual Studio Team System Extensibility, this unknown...
Hello everybody, don't you think that when a poor developer knows about five base Web Services in TFS, his/her first though is about extensibility Is there any walkthrough about For a general intro to extensibility, you might like these Powerpoint decks: Our PM Doug Neumann's talk at PDC2005: http://www.google.com/url sa=U&start=15&q=http://216.55.183.13/pdc2005/slides/TLN301_Neumann.ppt&e=15235& ...Show All
SQL Server SQL Mobile and Vista
Are there any plans to support SQL Mobile running on Windows Vista I have an application that runs SQL Mobile on Tablet PC's. I would like to support Vista the same way. Thanks, Joe SQL Server Everywhere will support the Vista x86 client platform based on what I have heard from Microsoft. For more info on SQL Ev, see the announcements I posted in this forum a few days ago. Darren ...Show All
Visual C# Challengeing question about Sockets..
Is there a way to block a windows socket like firewall does You can take a look to this C++ application and convert it to C# code: An Easy Firewall Application . There is no managed interface to do this, but here is a create .NET article on code project: Packet Filtering in .NET . ...Show All
Visual C# trouble using delegate in WndProc
when i use delegate like this: ----------------- [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] protected override void WndProc(ref Message m) { delegate_ReplyFromDataProcess = new PrepareDelegate_ReplyFromDataProcess(ReplyFromDataProcess); delegate_ReplyFromDataProcess.BeginInvoke(m, null, null); } delegate void PrepareDelegate_ReplyFromDataProcess(Mes ...Show All
Visual Basic Performance:: Array(), ListBox and Class
Suppose there is a table(say, with 2 cols. - ID and Name) containing(SQLServer) 10000+ records and I need to read all the data in a Form's LOAD event. I can do it 3 ways:- 1. Define an array Dim arr(,) As String and then populate array with ID and Fields. 2. Add 2 Listbox in the form and then read ID and name and Add then to listbox 3. Create a class with 2 member variable say, Id and Name, and create object for each db en ...Show All
Visual Basic Zoom picture box sample code
hi all : any idea on how to zoom in / out picture box sample code in vb.net If you are using VS05 the picturebox control has a zoom property setting for the size mode property. me.picturebox1.sizemode = Zoom then Private Sub DoZOOM ( ByVal zoom As Integer ) Try Select Case zoom Case Is = 0 Me . PBX . Height = m_CurrentPic . OriginalHeig ...Show All
.NET Development NullReferenceException when calling PerformanceCounterCategory.Exists(categoryName)
I am experiencing an odd error in one of my applications where I randomly seem to see NullReferenceExceptions when I call PerformanceCounterCategory.Exists() with a non-null category name. I am working with version 1.1 of the .NET framework. I have verified that passing a null or empty category name would generate a different exception, so I am pretty certain that the problem is NOT that a "bad" parameter is being passed to this method. ...Show All
Visual C++ Importing class from dll
Hi My problem is that I cannot import a class from a dll without an import library. Thank You, Attila. I removed WINAPI, and now it works. typedef int (* _writeSerialPort)(int numberOfBytesToWrite, char* data, unsigned long *bytes_sent); but there is still one problem: Untill now, the program worked, only the debugger stopped it with that error message. So it sad it wrote 1 byte to the serial port, or it wrote ...Show All
