gon's Q&A profile
Visual C# define a property which accepts a parameter
Hello! What's the C# syntax to define a property which accepts parameters. The VB syntax whould be: Public ReadOnly Property Item(ByVal index As Integer) As Object Get Return CType(Me.List.Item(index), MemberDataValidationError) End Get End Property As already Mattias write you, for that you need to use indexer. By default every collection type has indexer of type int. But if you need to access the class property, by provi ...Show All
Microsoft ISV Community Center Forums Why not just SV?
Dear Microsoft, We've been a certified partner for more than a year and member of the ISV competency. But why don't you just call it an SV I mean, of course, we're independent. Or if not we're owned by someone else. Or is the "Independent" simply what I suspect just an other way of saying "not Microsoft" So I suggest switching from ISV to just SV or "Software company" or something to that effect. (Then at least you wouldn't be ...Show All
Software Development for Windows Vista Vista CTP SATA install.........
I have an SIIG SATA card and can not install the drivers for it. I Can only install on an IDE drive. Any ideas This form is for programming issues. ("Development" is a code word for "programming"). Try asking your question in the Vista help newsgroups . ...Show All
Visual C++ How to find the C++ source lines given a crash address?
In VS2003 you used to be able to find source code lines from a crash address using the MAP file generated with /MAPINFO:LINES. In VS2005 this doesn't seem to be possible. I have found a handfull of references on the web that say that the source line can be found from the crash address using the exe and the pdb file, but I can't figure out how to do this in VS 2005. The code I'm wanting to debug is a wrapped unmanaged assembl ...Show All
Audio and Video Development Advanced subtitle
Is it possible to add advanced subtitle in existing pre-recorded HD DVD Thanks. 4.6.1 Alternate subtitle stream An alternate subtitle stream which has been previously downloaded and cached on the user’s home network is listed on the subtitle menu along with all of the on-disc subtitle streams. When selected the alternate subtitle stream is synchronized to the feature film. The user can toggle between the cached subtitle stream and th ...Show All
SQL Server How to identify which all SPs are accessing a given table ?
I don't know if I am in the right section of the forum. Please help me with this : Is there any system stored procedure or any other method to identify the list of all stored procedures that are using a particular table in my database. Thanks Prasad P No, there's nothing built in. A quick and dirty way of figuring it out is: SELECT * FROM INFORMATION_SCHEMA ...Show All
SQL Server DTC error with concurrent data flows
I have a package that has several data flows that run concurrently after some initial tasks and an initial data flow. I want transactions on each of the data flows and have set the transaction option to Required on the data flows (not on the package itself). I am also using checkpoint restart on the package. A couple things are happening. 1) the first data flow is successful and that releases the several that are waiting. Some of these compl ...Show All
Visual Basic System.Security.Permissions.SecurityPermission
I tried to move my project from my local machine to my NT4 server. When I tried to open the file, a message box told me that the location wasn't trusted. I ignored this and ran my program and it threw me an exception. I tried the suggestions that the exception gave me including giving full trust, etc. I am an administrator on both my local machine and my NT4 server. Does anyone have any suggestions Here is the complete exception: Request for ...Show All
SQL Server How to Configure DSN with DataReader Source
Hi I am not able configure DSN in SSIS, I tired with DataReader Source but its given error " Check SQL Command Property" Appriciate to you for Help If you are connecting to Excel, why give yourself the added grief of maintaining an external DSN Use the OLE DB Provider for Jet and a file path. ODBC simply adds one more unnecessary layer of DLLs in the background. -Doug ...Show All
Visual Studio Express Editions unable to install visual c# 2005 express edition - mscrorsvw.exe - Unable To Locate DLL
while installing, message appears - The dynamic link library MSVCR80.dll could not found in te specified path. I found that there is no file named MSVCR80.dll in c:\winnt\system32 (os - windows 2000) Can anyone please help me... How are you installing Visual C# Express (i.e. via the web installer or the CD image) ...Show All
.NET Development Returning more values in a xml file
Hello, At this time I am returning a xml file in my web service service.asmx/demo with following content: < xml version="1.0" encoding="utf-8" > < string xmlns =" http://test.org/ " > 10.01.2006 18:17:36 </ string > Now I want to add more nodes to my xml file and returning more values. I am using this code: <WebMethod()> Public Function datum() As String   ...Show All
Visual Studio 2008 (Pre-release) Problem with P2P
Hello, I am trying to run the "PeerTcp" sample on a fresh XP SP2 install. I installed and started the P2P windows service. However, when running the first receiver, I get the following exception. Any idea what could cause this Thanks System.Net.Sockets.SocketException was unhandled Message="Unknown error (0x2ced)" Source="System.ServiceModel" ErrorCode=11501 NativeErrorCode=11501 StackTrac ...Show All
.NET Development Replacement for ValidationType.Auto?
ValidationType.Auto has been marked as obsolete in Beta 2. We have an application that processes arbitrary XML documents (schema or DTD is unknown when we load it). Previously we'd used Auto to just let the XML library figure it out for us. Is there an alternative to Auto validation in Beta 2 ValidationType.Auto works with XmlValidatingReader as this reader can handle all three flavors of val ...Show All
SQL Server Header Footer problem
Hi There, Does anyone know of a way to disable Header and Footer for specific pages The desired output is displayed below. e.g. i want header/footer to be disabled only for page 2. --------------- --------------- HEADER --------------- Page 1 Page 2 --------------- FOOTER --------------- --------------- Thanks. You can set a visibility expression on the ...Show All
Windows Forms Auto Generated Columns
This feature of the DataGridView is really starting to piss me off, I optimize the positioning, labels and other aspects of my DataGridView, run it to make sure everything is ok, and when I come back to it the thing has added back 20 new unformatted columns that are exactly the same as the ones I already had. How can I disable this 'feature' DataGridView.AutoGenerateColumns = False ...Show All
