Assimalyst's Q&A profile
SQL Server All Level Name - How do I change for each attribute?
It looks like if I set the AttributeAllMemberName property at the dimension level, all attributes will inherit this name. If I have multiple attributes within a dimension, how do I change the 'All' level to read 'All <attribute name>' for each attribute ...Show All
Visual Studio Express Editions Cannot create a new project that opens startup form
Have been using vb 2005 express final now for a week or too. Have had no problems using and modifying example code and connecting to a MySQL database. However i am now trying to create a new project and no matter what form is selected under startup form nothing displays when code f5 is pressed. Message that build is ok in status bar screen refreshes and back to IDE. However existing projects work ok. Even creating a ...Show All
Windows Forms Application Specific File Extentsions
A lot of applications I use create file extensions that are application specific. That is, other programs cannot access the file. How would I go about creating my own application specific file extensions. Thanks in advance. B Rad Hey ...Show All
Visual Studio 2008 (Pre-release) Grid DataBinding
Hi, Does anybody know how I can bind a collection of objects to a Grid I have created my own Cell object with the properties: Point (X, Y) and Name (string). I want to populate a Grid with a list of Cell objects (List<Cell>). The content of the Grid will be generated using a DataTemplate (see example below). < DataTemplate DataType = " {x:Type t:Cell} " > < TextBlock Text = " {Bindin ...Show All
Visual C# Not sure what this compilation error message means
OS: Windows XP Pro Languages: ASP.NET, C#, SQL Server 2000 Programs: ASP.NET Web Matrix, Visual Studio .NET 2003 Hi, I'm having trouble compiling my ASP.NW, I'm getting the following error and I'm not sure what it means. Can anyone interpret this for me Thanks in advanced. Server Error in '/' Application. Hi! The short answer to your question is event validation is an ASP.NET 2.0 feature, so for som ...Show All
Visual Studio 2008 (Pre-release) Are DataContract types not serializable?
Hi there... I have a web application that is fed by a web services business tier. I've recently upgraded to WCF services and, using svcutil, I've generated the proxy classes for my services and the data classes they expose. I have a web page that allows a user to edit one of the data classes, and then submit the edited version back to the web service. However, since I've upgraded to WCF, I'm getting errors that say my data class isn't seri ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Linker error, using d3dx9math.inl functions
Hello everyone, I am building a little renderer with DirectX, just for fun, using Visual C++ Express and the February DirectX SDK. I just implemented my "camera" class, which uses some of the functions defined in d3dx9math.h (like D3DXMatrixRotationAxis and D3DXVec3Normalize ). The linker complains saying: error LNK2019: unresolved external symbol D3DXMatrixPerspectiveFovLH@20 ...etc ... I know these functions are implemente ...Show All
SQL Server No message in the TargetQueue
I have 2 instances of SQL on the same machine (arrakis): the default one and the second: arrakis/FOO. On arrakis/FOO I have an InitiatorService which sends a message to the TargetService on the other instance. I defined the services , contract and message type using the code in the MS sample: Hello World and the same code works when the two services are created on the same instance. I changed only the following part, where I inserted ...Show All
Visual Studio How to use MSBuild from the command line?
I tried to build the Enterprise Library with the solution file with MSBuild .NET Framework 2.0 Beta 2. But I always get the following error: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215>MSBuild C:\Programme\Microsoft Ent erprise Library June 2005\src\EnterpriseLibrary.sln Microsoft (R) Build Engine Version 2.0.50215.312 [Microsoft .NET Framework, Version 2.0.50215.312] Copyright (C) Microsoft Corporation 2005. All rights reserved. ...Show All
.NET Development Want to do a simple thing
Using VS 2005 Beta 2. Win XP SP2. Have developed a website containing many pages. On one particular page I want a label to be visible for 5 seconds after the user clicks a button. Don't want to post the page for a round trip to the server. This is just supposed to be a quick visual feedback to user acknowledging that the button click code was executed. Using the button's click event handler would seem the way to go, but it does ...Show All
Visual C# Parallel execution of Functions
Hi ! I have 3 functions, which executes sequentially so take much time (about 10 minutes). i want to reduce time, by executing those by parallel. Those functions don't depend on each other. how can i do that, plz suggestion and code..... You could use the BackgroundWorker Class for this. there is an example in MSDN: http://msdn2.microsoft.com/en-us/library/4852et58(en-us,vs.80).aspx ...Show All
Windows Forms DataGridView leaks due to insuficent ToolTip cleanup
We have a control in our application that derives from the DataGridView control. I've spent all day tracking down leaks in our app using the SciTech profiler. I believe that I have found a leak in the DataGridView that occurs through the internal DataGridViewToolTip class. When the grid is setup to use tooltips and the first one is activated the underlying ToolTip coomponent is created and part of that initialisation is to figure out what ...Show All
Visual Studio Team System how to unbind a project and rebind it in new location
I bound a project in a TFS source control location that I want to move to another place. I cannot find any way to move the project, and rebinding it in Visual Studio does not let me add it to another location in the source control tree. I really would like to move the project down one level (ie: from $/MyProject/ to $MyProject/Library1/) so that I can organize other class libraries under the existing project. I have also tried the "tf delet ...Show All
Visual C# Cast string to variable?
Is there a way to cast a string to a variable name In my code I need to instance classes on the fly. In psuedocode I want to do this: Variable KeyValue<x>; With <x> being replaced by an incrementing number on every call (so you might end up with KeyValue0, KeyValue1, KeyValue2, etc.). Is there any way to do this in C# I recall a way in Pascal, but that was many years ago... No ...Show All
.NET Development casting error?
Hi, I am creating an application which consumes a web service. I get a run-time error at this line: cert = (System.Security.Cryptography.X509Certificates.X509Certificate2) System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromCertFile(certificate); where private System.Security.Cryptography.X509Certificates.X509Certificate2 cert = null; and certificate is the name of the certificate fi ...Show All
