Dirk4088's Q&A profile
Visual Studio History command disabled in VS 2005
Hi, I have no problem displaying the history of a VSS project and issuing a Get command from this dialog box in VSS Explorer. But for the very same project, the History command is disabled from the Solution / Project / File context menus in VS 2005. From VS, I'm using the VSS Internet plugin (this is a remote database). Known bug or did I again miss something Thanks in advance. Not to implement “view history” if Internet pl ...Show All
SQL Server How I can copy object SMO between DB and servers?
Something following is necessary: Column c1 = srv1 .Databases[“db1”].Tables[“t1”].Columns[“c1”]; Column c 2 = <something which copies c1> srv2.ConnectionContext.SqlExecutionModes = SqlExecutionModes.CaptureSql; srv2.ConnectionContext.CapturedSql.Clear(); srv2 .Databases[“db1”].Tables[“t1”].Columns.Add( c2 ); foreach( string s in srv2.ConnectionContext.CapturedSql.Text ) { ...Show All
Visual Studio Team System PRF0018: target is already instrumented
I keep getting this error when performing a launch from Performance Explorer: PRF0018: File DemoConsole.exe is already instrumented How do I remove the current instrumentation and start over Jason, When we do our in-place instrumentation we try to restore all your binaries to their correct uninstrumented states after a profiling run. However, in your specific case this does not seem to have happened. To get you back to uninstrumen ...Show All
Windows Forms Cannot Connect To SQL Server
I am not able to connect to a SQL 2000 database running on Windows 2000 Adv. Server from a Web Service. I can access a copy of the database found in SQL 2000 on Windows NT server. DNS is used when accessing the web servic ...Show All
Visual Studio Adding files to a project during compile
I have a prebuild action that occurs in my project that generates a class. this class needs to be added to the project for compile. This only occurs have the project has been reloaded. Is there a way to add the files to my build without going through three steps - compile, reload project, compile Thanks Are you using the pre-built action that you define through project properties This is to late to add your ...Show All
Visual Basic Cylce through pictures
I have several pictures in "my.resources" that I want to cycle through. But I haven't been able to figure out a way without typing all of the picture name manually in my code. Does anybody have any suggestions Thanks! I would recommend that you consider using the imagelist control. It's Wonderful. You can load all of the pictures either statically or dynamically and t ...Show All
SQL Server Import/Export data with SQL Server 2005 Express
Hello folks! I have installed SQL Server 2005 Express and SQL Server Management Studio Express. Everything looks ok and works fine, but I can't find the Data Import/Export Wizard. Can anyone tell me how to Import/Export data Thank you!!! SQL Server 2005 Express Manager does not offer Import/Export functionality as it is dependent on SQL Server Integration Services (SSIS) and SQL Server Agent. Y ...Show All
Visual Basic What's the Difference between Visual Basic Express and Visual Basic 2005
Are there more commands Faster compiling Faster code I read that Visual Studio 2005 also has a 64bit compiler... does that include Visual Basic 2005 I understand that VB wasn't going 64bit - but that's a shame because MS is pushing us to move to 64bit. Well, we certainly need the compilers for it, don't we >Are there more commands Yes, there are more features. You can see a feature c ...Show All
Visual C++ mkDir
Is there a way to use _tmkdir to create an entire directory given a path For example, if I give C:\AA\BB\CC , then assuming AA, BB and CC do not exist, the function should create all of them. Thanks, KarthikR From the help at http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclib/html/_crt__mkdir.2c_._wmkdir.asp , it looks like _tmkdir can only create one directory at a time. What you can do is do your own algorithm for su ...Show All
Visual Basic How to display login form...???
Can anyone help me out, this is urgent ... I have created a login form, how can i display the login form each time when windows start up I mean i want the form to be display once the windows logon form is displayed... or anyways i can replace the windows logon form with my login form p/s: sorry for my bad english explaination ... Thank you Grant, you really provided so much info for me.... i think i'll learn from there .... i'm still ne ...Show All
Windows Forms ContextMenuStrip for treenode
Hello, I'm using a contextmenustrip for a treenode; how do I figure out which tree node currently has the context menu strip for it I'm trying to use the contextmenustrip location, but it references the wrong tree node. Thanks. Hey Jason, Just add the following event handler to your TreeView (the control which holds all your nodes) control (switch the code to C# language): Private Sub YourTreeVi ...Show All
SQL Server Advanced Series Express vs Express
Can someone tell me the difference between Express and Advanced Series Express --- are there different limitations Why would I use one over the other -- thanks! Check out the comparison at http://msdn.microsoft.com/vstudio/express/sql/compare/default.aspx . Regards, Mike Wachal SQL Express team ---- Please mark your thread as Answered when you get your solution. ...Show All
SQL Server Slowly Changing Dimension with 600,000 rows
Hi, We have been using tasks generated from the SCD wizard. We have smaller dimensions (< 30,000 rows) that work well. Our Product Dimension package is giving us performance problems (taking 7 hours to do 600,000 rows when 80,000 records are updated; the rest new inserts). It is similar to the smaller dimensions. Several columns are type 1 and are doing update statements; several are type 2 doing updates and inserts. The package had a co ...Show All
Visual Studio Express Editions reconstructing variables into memeory
Greetings, I finally have figured out how to send 8 bit chars over my serial port. Thanks to all who helped. Next battle: I am communicating with an 8bit microcontroller. My compiler for the microcontroller allows me to generate integers larger than 8 bits. ie 16, 32, float ect. Lets say I have a 16bit variable in the microcontroller. It resides in two adjacent 8bit memory locations. I can send this variable out of the microcontroller over ...Show All
Visual Studio 2008 (Pre-release) DLinq framework will be in a planned way to support other DataProviders except for MSSQL?
hi all, i alway using MySql and Access to develop my application, DLinq framework will be in a planned way to support other DataProviders except for MSSQL thanks. Dinesh Kulkarni answered this in relation to an Oracle question previously ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=324513&SiteID=1 ). Microsoft is creating a provider model. Others are welcome to create database specific implementations. Jim Wool ...Show All
