SokSa.Icy's Q&A profile
Visual Studio Team System which setup directory?
in the install help file, single server install, team server install, I do not see this specific folder on the DVD download from MSDN: \vs\atdt downloaded this image, en_vs_2005_team_suite_dvd_beta2 and extracted ISO files to hard drive folder using \VS\setup.exe returns error: "setup was unable to copy file ....\vs\deletetemp.exe to your temporary directory..." deletetemp.exe is not in \vs directory Help file snippet... 5. ...Show All
SQL Server Error in running SSIS package wchich was created on a database having different collation.
Hi, I have created a DTSX package on database with Chinese collation now i want to use english collation in database, to do that i created one new database this time with english collation, I imported the above said DTSX package into the new english collation database but i am facing following error: 'Validation error. Import ASCII Promotin Properties: DTS.Pipeline : The LocaleID 9 is not installed on this system' How to resolve thi ...Show All
Visual C# Default value on value-types
I have implemented a value type that use a string value as value container. I need to initialize this string with a "" value insead of null. Is it possible to explicitly initialize a value type Is there a way to run a default parameterless constructor Thanks, Felice R. Yup, that will work - so long as you (i.e. the original poster) are aware that if you create a new array of this type, then ...Show All
Visual C# Have any function caculate date after current date n days ?
I caculate date after current date n days with a bunch of code , but its not effective , I wonder whether have any function caculate date after current date n days , in C# If you know , can you help me Thank you in advance. I don't understand your question well but I hope this code helps DataTime dt = DateTime.Today.AddDays(7); //for adding days and just look at the intellisense and you will find the others. Happy programming ...Show All
SQL Server SQL Server Management Studio
This question has been asked and discussed in other threads/forums but I couldn't find a simple and definite answer. My problem is why after installing SQL Server 2005 Express through a command prompt, SQL Server Management Studio was not installed. I have tried using the following: ADDLOCAL=All and ADDLOCAL=Client_Components but the Management Studio was nowhere to be found. These are the commands that I used: 1. setup.exe /qb INSTA ...Show All
Visual C# C# NEW BIES
Halo room. I am new bies in C#. May i know where can i learn the ASP.NET 2.0 with C# language Hi, The following online resources should help you - they are all free.. 1. Essential ASP.NET Webcast series 2. ASP.NET Web Cast series 3. Free Trainings Regards, Vikram ...Show All
Visual C# "taskbar notification"
I'd like to use a "taskbar notification" in one of my apps. What I mean is that I'd like to have one of those little message boxes that look like tooltips (yellow background) slide up from the taskbar, stay up for a few seconds, then slide back down. I've seen them referred to as taskbar notifications, but they probably have a different name in the VC#/.NET. If anyone knows what they are called and how to use them, I'd appreciate knowi ...Show All
Visual Studio Team System Not letting me rename web projects after branch
If I have a project called WebUIApp in a solution called MySolution that exists in a Main line, in source control explorer I have $/MyTestProject/Main/MySolution/WebUIApp. In this case, I might have the WebUIApp at http://localhost/MyTestProject/WebUIApp . Then I branch the Main line to $/MyTestProject/V1/MySolution/WebUIApp. I then get latest versions on this and then try opening the solution. When opening the solution, ...Show All
Visual Studio 2008 (Pre-release) WCF XCOPY deployment?
Is it possible to deploy the assemblies for WCF (ServiceModel, etc) to a server using XCOPY deployment I'd prefer not to run the full WinFX installation on our servers if possible - it is far easier to move to a beta if the exposure to bugs is limited to a single app domain. dneigler wrote: Is it possible to deploy the assemblies for WCF (ServiceModel, etc) to a server using XCOPY deployment I'd prefer ...Show All
Visual Studio 2008 (Pre-release) Lambda expressions that ignore their arguments
I happened to be writing a lambda expression that ignored its argument and ran into some strange behaviour. If I type the expression as string => decimal, it compiles fine: Expression<Func<string, decimal>> expr1 = totalPrice => price * tax; // OK But if I type the same expression as string => object, it fails to compile with error CS1501, "No overload for method 'Lambda' takes '1' arguments": Expression<Func ...Show All
Windows Forms TreeView always show horizontal scroll bar in VS.Net 2005
Dear all, I have a treeview with some nodes in my form. I set scrollable property is true however it always show horizontal scroll bar, this thing have not in VS.Net 2003. I want treeview auto scroll. Please help me to fix it. Thanks Hi khiemvo, What version of VS 2005 are you running If you are using Beta1 try adding your nodes programmatically in the Form_Load method. If you are ...Show All
Visual Basic The macro substitution in VB.NET?
Hi Doea some one know how to perform macro substitution in .Net VB I've tried to read the Help - all in vain... With best regards! Hi, No, Macro Substitution has not been part of Visual Basic atleast after Visual Basic 5. I am not aware of versions before Visual Basic 5 - but I would assume that it has never been part of Visual Basic. However, people have had various workarounds such as Database queries or a ...Show All
Visual Studio 2008 (Pre-release) Local and Remote DB?
How does a local/remote scenario work with DLinq and entity cache Say I have a NewsGroup sorta app that reads new posts from a server and saves them to a local SqlExpress db. On startup, you read objects from local, but want to read any new objects from remote db if they exist. How does that work Same objects, so how does things like Add/Update work Is there going to be conflict between the two dbs with same objects Looking for something tha ...Show All
Windows Forms Reload the config file
Hi, is there any way to programmatically reload the values from the configuration file without implementing your own section handler, i mean the sections handled by the .net framework, appSettings in particular. I want to allow the user to modify some&n ...Show All
SQL Server Upgrading from SQLS2K to SQLS2005
My organization is planning to upgrade sql server 2000 to sql server 2005. One of the main reason to upgrade, is to utilize new security(encryption) feature provided by the SQL server 2005. Our main aim is to encrypt few columns of the database tables. I am in a dilemma on how to encrypt tables which already has data in it We have VB application that uses SQL server 2000 as backend. I do not want to change the frontend. Is there any why we could ...Show All
