Software Development Network Logo
  • SQL Server
  • Visual J#
  • .NET Development
  • VS Express Editions
  • Visual C#
  • Visual C++
  • Architecture
  • Visual Basic
  • Visual Studio
  • Windows Forms
  • Game Technologies
  • Microsoft ISV
  • Windows Vista
  • Smart Device
  • Windows Live

Software Development Network >> ARNOLDL's Q&A profile

ARNOLDL

Member List

Kabron
kjmsolutions
Mincemaker
cmatt2
Alexander Lowe
Sean Gahan
UmeshBhavsar
Heathcliff
StoneCarver
BilleV
Gozzeh
Chan65
shep58029
Marc2002
Allen Cheng HK
Morgan Pugh
Richard_Mutschler
rythm
AnilMenon
David Chicks - MSFT
Only Title

ARNOLDL's Q&A profile

  • Visual Studio Problem using ReportViewer control DataSources.Add() method in WinForm control

    I added two datasources from one dataset as follows: // // RentalAgreementBindingSource //  this.RentalAgreementBindingSource.DataMember = "RentalAgreement";         this.RentalAgreementBindingSource.DataSource = this.RAOpenDataSet; // // RAOpenDataSet //  this.RAOpenDataSet.DataSetName = "RAOpenDataSet";         this.RAOpenDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // VehiclesBindingSource //  this.VehiclesBindingSource.DataMember = "Vehicles";         this.VehiclesBindingS ...Show All

  • Visual Studio Team System Unit testing C++/CLI

    Does unit testing in Visual Studio 2005 work with mixed mode C++/CLI When I try to perform a unit test, I get the following example error: Test method TestProjectRATS.AboutBoxTest.ConstructorTest threw exception: System.IO.FileLoadException: Attempt to load an unverifiable executable with fixups (IAT with more than 2 sections or a TLS section.) (Exception from HRESULT: 0x80131019). I'm not sure, but I think that means that it can't load a mixed mode c++ assembly. Can anyone let me know if C++/CLI unit tests work and if so, what my problem might be Thanks. espeir, The unit testing tools included wit ...Show All

  • SQL Server Problem creating diagrams

    I just upgraded an existing sql server 2000 installation with the RTM sql server 2005 (developer). I went to work on a database that I've been working on for a couple of weeks before the upgrade, and wanted to create a database diagram. However, when I click on the "Database Diagrams" tree node, I get this message: TITLE: Microsoft SQL Server Management Studio ------------------------------ Database diagram support objects cannot be installed because this database does not have a valid owner.  To continue, first use the Files page of the Database Properties dialog box or the ALTER AUTHORIZATION statement to set the database owner to a ...Show All

  • .NET Development Close() and streams/readers

    Hi, After creating a chain of  a stream within a buffered stream within a reader (or writer), must I call each object's Close()  What I want is for the stream to 'live on' and be wrapped by a different reader later, but I'm afraid that in not performing some sort of specific cleanup on the reader, that it will not be collected (or cause an unmanaged resource leak). When trying to Close() the reader/writer, I found that it also closes the underlying stream causing an exception to be thrown the way I'm currently doing it. The MSDN lib Docs are rather scarce on exactly how each of the disposable's, closable's do their inter ...Show All

  • Windows Forms Error when attempting to Close a form

    I get the following error: ************** An unhandled exception of type 'System.InvalidOperationException' occurred in system.windows.forms.dll Additional information: Cannot call Close() while doing CreateHandle(). ************** When executing the following code after frm2 opens and the user simply presses the Cancel button to close the dialog form which also should close the calling form (frmAssembly). In other& ...Show All

  • Windows Forms Validate a cell in a datagrid before losing focus from that cell ?

    I have a datagrid and would like to know what event fires when a cell is changed I want to validate the data entered before going to the next cell. How can I do this I am looking for something similar to the lost focus event if it exists. Thanks, Prasad ...Show All

  • SQL Server Merge Replication - Weird Conflicts for no reason

    Hi. I am using Merge Replication on Sql Server 2005 (which works much better than 2000 by the way) and everything is working great except occassionally I will get some conflict rows for no reason. The same column(s) of the same row was updated at both 'PublishingServerName.DatabaseName' and 'SubscribingServerName.DatabaseName'. The resolver chose the update from 'PublishingServerName.DatabaseName' as the winner. I checked our audit table and in every case there was no one updating the conflicting row(s) on the publisher that day. I have had to submit the losing row (which is the suscbriber) in every case. I am using COLUMN le ...Show All

  • .NET Development Generating a template to derive from abstract class

    I would like to dervie from System.Xml.XmlReader class. Is there any way to generate a skeleton of the abstract methods to be overridden automatically Ok. You could also check out ReSharper, it's a very versatile tool - which does what you need + a lot more. I used it a lot back in the VS2003 days :-) It can make implementation stubs just like VS2005, and also adds a lot more functionality, the template feature may also be of interest. Look it up at http://www.jetbrains.com/resharper/ ...Show All

  • .NET Development Configuration manager

    Are there any examples of using the configuration manager in VS2K5 out there I've found lots of examples for 2K3 and below but almost none for 2K5. You can find examples at: http://msdn2.microsoft.com/en-us/library/s7kc101z(en-US,VS.80).aspx ; for the System.Configuration.ConfigurationManager type and http://msdn2.microsoft.com/en-us/library/ms151430(en-US,VS.80).aspx for the System.Configuration.WebConfigurationManager type.   ...Show All

  • SQL Server How to consume a Datareader destination in code?

    Hello, I can gain access to and execute my package using the Application and Package objects. I am handling the events of the Package object and can even see the OnPipelineRowsSent event when it fires to deliver the rows to the Datareader destination. How do I gain access to those rows for use in my application I have scanned the SSIS object model looking for the right place to hook in, but was not able to find one. Am I heading in the right direction Is there a sample application out there I have missed Similarly, how does one deliver rows in code to the Datareader source Does this take place prior to calling Execute on the Package, or it ...Show All

  • Visual Studio How to use Application Verifier?

    The Application Verifier did work fine with Beta1, but I can't get it to work with Beta2. When I try Debug -> Start with Application Verifier I get the message "Application Verifier could not be enabled. Please refer to the release notes and supporting documentation". I tried installing the Application Compaitibility Kit (tried both 3.0 and 4.0), but that didn't help. I did remove some features from the default installation. Mainly VB, J#, Web development, SQL and smart devices. Which feature in the setup contains the verifier Thanks Ivo The AppVerifier team told me that a QFE is needed and th ...Show All

  • SQL Server how do i get date into dd-mm-yy format??

    i have the following in an insert stored proc CONVERT(CHAR(8),GETDATE(),10) but this inserts 03-06-06. how do i get it to 06-03-06 Cheers, Craig Did you see the reply I posted -- Tibor Karaszi, SQL Server MVP http://www.karaszi.com/sqlserver/default.asp http://www.solidqualitylearning.com/ Blog: http://solidqualitylearning.com/blogs/tibor/ wrote in message news:acc61a6e-96e2-4412-9e4f-5ffdd7ab7b62@discussions.microsoft.com... > my sp is as follows:- > > IF (@blnConsent = 1 AND @dteActualConsentDate NULL) --This is PC > insert for YES consent where a ConsentDate is supplied > ...Show All

  • .NET Development How to protect the content of the web service in .NET

    Hi all, I 'm new to .NET development and we are currently starting the project for .NET using smart client. One issue we need to find out is how to avoid user from directly calling web service to retrieve data where they are able to find out the URL of the web service and directly call the web service to obtain the data from database. You could do this easily by passing a custom security string in the header of every web service call and making sure it exists before executing a method. See http://aspalliance.com/805 A better approach is to use the WSE 3.0 (web service security extensions). Download th ...Show All

  • Visual Studio Team System Can't Run Unit Tests in VSTS with 3rd Party DLL

    I can't unit test my data access layer in VSTS In my data access layer I use the .net oracle driver from data direct without problems. But when my unit test want to open an database connection I get an error (ORA-03113 ... Communication link failure ...)! Thanks in advance Hallo, I got an Email from Sven Cuypers [Sven.Cuypers@datadirect.com]: >It took me some time to get a valid license for VSTS 2005, but I've finally been able to repro the issue you're experiencing. >I've logged a defect and this will be resolved within 90 days. >I spoke with the developper and as he alr ...Show All

  • Visual Studio Team System Documents Access

    Here's the scenario: Single-Server Install Project Created On the server itself (local):  I can browse the Documents tree in Team Explorer but cannot open any of the documents.  Upon trying to open the document I get prompted for credentials and after three attempts I get an IIS unauthorized Access. When I try to open the Sharepoint site (local) I also get prompted then failure.  If I access the Sharepoint site (local) using http://localhost rather than the http://servername then I can browse the site and open the documents. Remotely, I cannot browse the Documents tree in Team Explorer.  It gives me a red X and also disab ...Show All

©2008 Software Development Network