Daniel_CL's Q&A profile
Visual C# ListView
Ok, what I would like to kno, at runtime, when I add an item to my ListView, what would that event be called You would normally add items to list view at runtime by adding ListViewItem object using Add() or AddRange() method of Items property of list view. For details view of your list view, you also need to add sub items to your ListViewItem. There is a sample in docs about how to do this: http://msdn2.microsoft.com/en-US/library/sy ...Show All
.NET Development XML signed with cert issued from Intermediate CA
Hi, I'm working on signing and verifying XML files with X509 Certificates. The quesiton I have is around the structure that includes a Root CA, and Intermediate CA issued by the Root CA, and a code signing cert issued by the Intermediate CA. On the signing machine, I have all 3 installed. I can use the signedXML class and sign the XML using the X509IncludeOptions to include all certs to the chain inside the XML signature. On the verific ...Show All
Visual Studio Express Editions Visual C# Express connecting to .\MSSQLSERVER instance of SSE
All, I have been searching through the forums looking for any information about using any of the Visual Studio Express products with SQL Server Express using a standard instance instead of .\SQLExpress. I'm trying to use the Amazon-Enabled Movie Collection Starter Kit. I installed SSE as a standard instance on the same system that is running VSE C# edition. I have loaded the project, open the Database Explorer and select modify ...Show All
Microsoft ISV Community Center Forums Problem with Defined names
I am using defined names to update my charts on an excel sheet. Well here is the thing, it worked fine up untill today. All of a sudden it doesn't want to update anymore or it will but will miss the last 6 data points. I set the range to 5000 so there should be plenty for it to catch up on. Anyone else encounter this problem If so how did you fix it Here is what is under the defined name: =OFFSET(Data!$Y$12,0,0,COUNTA(Data!$Y$12:$Y$1023),1) ...Show All
Windows Forms Using DirectX to render non-game Windows.Forms controls
I have some ideas for visualizing application data that would benefit from using DirectX and a scenegraph. I implemented an initial version in GDI+ but it just isn't going to work, its slow and requires a ton of complicated code. So I've been& ...Show All
Visual Studio BaseAddress & ExcludedFromBuild properties in VC8
In a nusthell what I'm trying to do is change the BaseAddress and ExcludedFromBuild properties of a project and a file respectively. I've searched msdn (and the net for that matter) and only been able to find VisualBasic examples that use the VCProject object. The one C# example uses "using VCProjectEngineLibrary;" which comes up as missing on build in VC8. Any help as to how to access these properties would be greatly appreciated. ...Show All
SQL Server Creating a Subtotal of select Groups
Hi, I am working on a new reporting system using reporting services, but I cannot figure out how to create a footer row which will only subtotal select group totals. If anyone has a method to do this please help! Nathan Hi, somehow related with the topic: Is posible to have something like: the sum of the ValueField from all the rows of DataSet2 that have CompareFiled equal with the current value of ComparedWi ...Show All
Software Development for Windows Vista Missing RPCSHIM.DLL file?
I am working on developing a installation that will work under Vista. I have resolved most problems but have encountered one item. Our application will not open with the 3D capabilities enabled. When I try to use dependency walker, it indicates that there is a missing dll file. The call we are making is from advapi32.dll. Advapi32 has dependencies on this file in Windows Vista. I have not been able to see the same dependency for XP or 2000. ...Show All
Visual Studio Team System Caching\Source Control abnormalities in Team Systems
This is more of a overall problem I've been having then a specific problem. We currently are in a pilot project -- 4 developers, 1 architect, 2 ba's, 1 pm, and 2 dba's. The code we have been working on has multiple projects of different types (web, web deployment, setup, class library, etc) and we've been in a bit of flux as we've been investigating different architectual problems. As we have been adding and removing different projects there ...Show All
Visual C++ template instantiation linker problems
Im using VC++ 2005 B2.050215 and getting linker issues with templates and wondering if it's a bug with the linker / compiler. The strange thing is, I'm getting a linker error, rather than a template deduction error. The function body is defined within the class declaration. Error 1 error LNK2019: unresolved external symbol "public: struct avError __thiscall avGenComms::receivePacket<char>(struct avDbPacketHeader<ch ...Show All
Windows Forms It keeps saying I have to reboot in order to install Visual Basic .Net
The scenario: I'm taking a Visual Basic class in high school and next year I'll take C++. In both classes you have to make a game for a final project. And in VB atleast you get a copy of the program to take home. I a ...Show All
Windows Forms Help! I want to Display parent/child data in a Datagrid
I want to display parent/child data in a Datagrid control. My problem is: Using the below code my datagrid only returns data for the first instance of the parent record (projectNo). The parent table has 5 records (projectNo) in it and the child&nb ...Show All
SQL Server SQL SERVER database DIAGRAMS problem...
Hi all, i m trying to create database diagram but as soon as i click on DATABASE diagrams it gives me the following error: 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 ...Show All
Visual Studio Express Editions "Application.UserAppDataPath" before and after a publish
When I run my VBEE app in the debugger Application.UserAppDataPath points to: C:\Documents and Settings\username\Application Data\companyname\.... as outlined in the help file. When I publish my application this path then changes to: C:\Documents and Settings\username\Local Settings\Apps\2.0\Data\BKXYGCXL.... Why does it do this Can I stop it changing the path when I publish the application Thanks for your help Tim ...Show All
Visual Studio Random behaviour with ITaskItem[]
I have a target that I pass an ItemGroup to. I then call a task that takes this ItemGroup as a parameter and a ITaskItem as another parameter. Sometimes, if I pass an ITaskItem[] to the ITaskItem parameter, MSBuild is clever enough to realise that I want the task called once for each item in the ItemGroup. Most of the time, however, I get this error: Multiple items cannot be passed into a parameter of type "Microsoft.Build.Framework.I ...Show All
