Aikanaro's Q&A profile
Visual Studio DTE.ExecuteCommand and Action.AddFolder
Hello to the VS Extensibility Team: I would like to automate the VS 2003 Setup and Deployment Project with a Macro that first places the IDE's SolutionExplorer and FileSystem Windows into a known state: ' This works properly in the Macro IDE under VS2003: DTE.ExecuteCommand("View.SolutionExplorer") DTE.ExecuteCommand("View.FileSystem") DTE.ExecuteCommand("Window. ...Show All
Visual Basic VS 2005 seems unusable for large VB converted project. How do I turn off the background compiler.
VS 2005 seems unusable for large VB converted project. How do I turn off the background compiler. I have a fairly large project that I migrated from VB6 to VS2005. This is the RTM version of VS2005. There are many issues that I need to fix up in the code, but every time I change one line of code, my system runs 100% CPU for 30 seconds. This is not even close to usable. You might think I have a slow machine, but I am runni ...Show All
Visual C++ Where's my VC++ 6.0 keyboard layout (Beta 2) ?
Maybe I'm just not looking at the right place, but I can't find a way to go back to my old VC++ user shortcuts. Old habits die hard ;-) The only options I have are: - Brief - Emacs - VC++ 2 - VS 6 (not VC++ 6) Is the support for VC++ 6.0 shortcuts gone in Beta 2 If you are using the "C++ Developer" profile, you can select "Default" and this essentially is the same as selecting "VC6" since VC6 is now our default. If you are not us ...Show All
Windows Forms Change the image of a DatagridviewImagecolumn for a specified cell
First, I don't speak english. Sorry. I want to change the image of a DatagridviewImagecolumn column. First I check all the cells of DATA column and depend of this value I want to put an image into the current cell in the IMAGE column. IMAGE DATA(DatagridviewdataTextBoxColumn) image1 1 image2 2 image1 1 image ...Show All
.NET Development Discovering named instances
Given: VB.net .Net Framework 1.1 In my program I use ODBC:SQLDataSources to discover available SQL Servers. I have recently realized that my code does not discover the Named Instance of SQL2005 which runs along side SQL2000 on my machine. I believe that .Net Framework 2.0 has a new function for SQL Server enumeration but I need to remain at the 1.1 level for some time. Is there a better way to discover SQL Servers which will discover the N ...Show All
Visual Studio Team System Workgroup TFS
What differences will someone notice using VSTS in a workgroup against in a domain environment It's a shame that small (micro) teams have to start with a Workgroup and then transition to a Domain as it kills the idea of seamlessly growing your team simply by adding licences. There doesn't seem to be much information about VSTS Workgroups on MSDN + KB. Given that many people's first encounter with VSTS will be installing the Workgroup TFS ...Show All
.NET Development Windows service or IIS??
Hi, I have developed a remote server to cache datasets. My web app deployed on multiple web servers(web farm), will hit the remote caching server (separate machine) to get or insert datasets. How do you think hosting the remote server inside a windows service scale as opposed to hosting it inside IIS The load could be heavy on the remote server. Right now I have hosted it inside a windows service (to take advantage of TCPChannel). But the naggin ...Show All
Visual C++ LNK1102, Linker running out of memory
Hi, I get a LNK1102 error when trying to build a managed code wrapper library that has over 2000 modules. I have been told that I have hit a 2G limit on process size, and that more RAM or disc space will not help. Is there some combination of compiler and/or linker switches that will minimize the memory "footprint" and allow the library to build Which version requires less process memory; Debug or Release Do you have any o ...Show All
Visual Studio Newbee Question
I can not find it as a stand alone product. I thought maybe it is package with Visual studio 2005 like eariler versions of source safe. The only thing I can find on Microsoft's site is a road map to Source safe 2005. Are you sure it is a stand alone product Thanks, jjeffrie ...Show All
SQL Server Users for encrypt and decrypt purposes only
Hi there, Using symmetric keys and certificates in SQL2005, can one assign users permission to only decrypt or encrypt data Reason would be say data capturer and data reader type roles. I tried to create some with the GRANT CONTROL and GRANT VIEW for certificates and definitions on Symmetric keys, but havent been to successfull. Would be great if someone here can offer some advise on it, and if it's possible using SQL rights. thanks ...Show All
Visual Basic Substitude the activeX AxMSComctlLib.ListViewEvents to windows form listviewEvent.
How can I modify this instruction using the listviewItem control that VB.Net has that subsituted the AxMSComctlLib.ListViewEvents Before 'Call ListView_ItemClick(listview, New AxMSComctlLib.ListViewEvents_ItemClickEvent(LItem)) After ---propably something similar to the below should look like: Note: I have doubt on how the second parameter is sent if the calls is done in a subrutine that is located in a form. Call ListView_ItemCl ...Show All
Windows Forms ToolStripDropDown.IsAutoGenerated?
Where can I find more information about ToolStripDropDown auto generation The IsAutoGenerated documentation doesn't say much. Thanks, Ray This means that the drop down was generated by the owner ToolStripDropDownItem as a result of a populated DropDownItems collection. This is in contrast to an explicit set of the the Dropdown property. This is for use with property flow to submenus. For example, if you set Rend ...Show All
SQL Server SQL Table size
Hello, If i want to know the size of table then how can i do it in SQL Server 2000 and in SQL Server 2005. -- how much amount of data can a table store in sql. -- On which thing the size of table depends. or Can anyone give me a introduction about the size of table in sql Hello Denis The data u have inserted in the table is insert into table1 values ( 1 , 'abc1' ) insert into table1 values ( 2 , 'abc2' ...Show All
SQL Server Reference to preceeding component from custom dataflow transformation component
I am writing a custom dataflow transformation component and I need to get the name of the preceeding component. I have been trying to find a way to get a reference to the Package object, MainPipe object or IDTSPath90 object (connecting to the IDTSInput90 of my component) from my component because I think from there I can get to the information I want. Does anyone have any suggestions TIA . . . Ed When ...Show All
Visual C# Collection was modified; enumeration operation may not execute.
I create method feedingtime(), all animals eat in order of birds, snake and then monkeys. If an animal does not have enough food then report that it. . . escaped. public void Feedtime() { IEnumerator em = animalList.GetEnumerator(); while(em.MoveNext()) { if(em.Current.GetType()==typeof(Bird)) { iFoodPresent -= ((Bird)em.Current).getFoodIntake(); if (iFoodPresent>0) { Console.WriteLine(((Bird)em.Current).ToString()+ &quo ...Show All
