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

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

feiyan0320

Member List

Crazychil
jagdeep singh
Sajeesh
Rab Lucas
nuwar
Col3456345
J4m3sB
Jennifer Gamble
jstacy
Allways Open Shopper
amberlianne
Sat-Bangalore
alex roidis
MEK_GDM
Lord_MiL
toddhd
SavageE
Darian Miller
tq00rrha
Studix
Only Title

feiyan0320's Q&A profile

  • SQL Server Error at deployment time (SSAS 2005)

    Hello all, May be somebody know what does this error mean: "Error 1 Exception of type 'System.OutOfMemoryException' was thrown. 0 0" I get it during deployment of cube after small changes I made in cube role. When I deleted the role to return project to prviouse condition which was working, I still get the same error. If anybody has any idea - it would be very appreciated. Thanks Inna Hard to say on what is g ...Show All

  • Visual Studio Team System dotnet Framework 2.0 Beta Version

    Hello, When I install SQL2005, it installs dotnet 2.0.40607.42. When I try to install Foundation Server, it tells me that an earlier version of dotnet is installed; uninstall it first. When I do that, SQL fails to start. I then run the dotnet that comes with TFS, which is v2.0.50215.44. SQL still fails (entry points not found), and TFS won't install as SQL is not started ... Therefore, I appear to be in Catch-22 situation ... the versions of dot ...Show All

  • Visual Studio Team System Programmatic authentication on TFS

    I've got a single-server deployment of TFS set up, as per instructions. I can use Team Explorer to access this server's projects using any account. I need programmatic access to TFS though. Specifically, before I can do anything in TFS, I need to log in to the server. I have a user account in the same domain as the TFS server. I also have Administrator and TFSSETUP accounts. I use the code below to try to authenticate. It's from the web. using S ...Show All

  • Windows Forms Published application file list is incomplete

    Howdy folks, We have a clickonce application that experienced a problem yesterday. One of the referenced libraries was modified and required a new library that wasn't originally required. When the clickonce application was rebuilt and published with the updated library, the new library wasn't picked up. The result was that the application would throw an exception. Here are some details. Say we have an application called 'Applicat ...Show All

  • SQL Server Authentication Problem x64

    Win 2003 Server x64, .Net 2.0 x64 Reporting Services 2005. RS Database is a remote SQL 2005 on the same Domain in the same room. I can only get the report manager to authenticate local users; it will not authenticate Domain users. If I set up a local user and add a New Role Assignment all works OK. I have no problem adding a Domain user to a New Role Assignment, it allows this, but it will not authenticate the user. Adding the Domain user t ...Show All

  • Visual C++ CString assignment operator causes memory exception

    I compiled VC++ 6.0 code with VC++.NET 2003/2005 beta and both causes a memory exception with CString assignment. My code looks like the following: CString szFileName = g_pGlobal->m_szAppPath; where g_pGlobal is a pointer to an object with global scope. The crash occurs if the assignment is done outside of the object instance itself. Quick Watch shows all CString members of that object are Bad Ptrs! I don't get it. ...Show All

  • Software Development for Windows Vista keybd_event and VK_SHIFT problem

    All, Hello.  I am a Software Developer currently creating an emulation program for our company's System Administrator.  He will be able to call the program and emulate any keyboard combination, or at least that's the goal.  Problem is I am having severe troubles emulating Shift key combos like (Shift key + End) for example.  Nothing happens!  Some combos work such as Shift key + h which gives 'H'.  The problem is ...Show All

  • .NET Development Freezing TCP SocketListener

    I'm writing my first local network TCP/IP Client/Server Windows Forms workstation application functionality code in VB 2005 Express. The internet may be connected by the user, but it is playing no role in the Client/Server part of the application. The objective is to write a simple listener and a simple client not demanding anything but the Listener being able to pick up transactions sent on a specific port and up to six Clients  being a ...Show All

  • Visual Studio Team System TF30144 error when creating a project from another domain

    Hi I am struggling with a setup which consists of TFS single deployed on domain X and Team Foundation Client (and Visual Studio) on domain Y. X and Y does not know about each other since they are on diffrent nets and the DNS servers are not connected. My first problem, which I solved, was that TFS setup (or possibly SharePoint Services or SQL Server) uses computer names in configuration files. Thus, Team Explorer did not work correctly (red cro ...Show All

  • SQL Server DMX Query

    Hi, I am having a DMX Query as follows. SELECT [Englishproductname],( SELECT $TIME, [Profit], PredictVariance([Profit]) FROM PredictTimeSeries([Profit],5)) FROM [ProductSales_Forecast] It displays as English productname and the Expression as columns. The expression consists of time, profit as nested one. I need to have no nested queries. I want englishproductname to repeat for all the columns inside the expressions. I don't want to ...Show All

  • Windows Forms Need to know when the Name property is set inside a winforms usercontrol

    I have a usercontrol, and the name property isnt set in New, as the owning forms InitializeComponent method creates the control then sets its name property a few liens later. I need the value of Name to do some custom binding stuff and I cant find out how to tell it has been set (from within the control itself) I did think of creating a New that takes a name as a param, but of course this wouldnt be compatible with the initializecomponent co ...Show All

  • Visual Studio Team System Microsoft Project Template - MSF Agile

    Hello, I will begin a new Development next week and my customer is waiting for the Project Plan. To make this plan I'm searching for a Microsoft Project Template for MSF Agile. I'm not using Visual Studio Team System right now but I will use it in the future (with MSF Agile) and I think that use a MSF Agile Project template will be a good first step. I found one in the MSF Agile .zip but it's empty. Thanks! ...Show All

  • SQL Server Default OLAP store directory

    When I connect to the OLAP service in SQL Server 2005, select the main node and right click on properties; I get a property page with options to change things. I would like to change the DataDir property, but the directory picker is limiting me to some predifined options that I would rather not use (we need the cubes on a non 'C' drive)   Thoughts Just type in the path for the folder. We restrict your options for the browsing experi ...Show All

  • Visual Studio 2008 (Pre-release) ListView selection

    Whatis the correct way to handle selection in a ListView I could add a MouseDoubleClick eventhandler, but this is not called on keyboard selection (pressing enter) Best regards, Thomas Andersen I think you can make your ListView's ItemContainerStyle use a ToggleButton as its root element. You'd obviously also need to style it to suit your needs. Then you just let all the behavio ...Show All

  • Software Development for Windows Vista get workflow instance

    I need some public properties in Workflow object. How can I get workflow instance from WorkflowRuntime Tx This only gives me the definition of the workflow. All user defined public properties are null or String.Empty. Isn't there any way to invoke the workflow to get values of local (public) properties ...Show All

©2008 Software Development Network

powered by phorum