visual-studio

Deploying K2 blackpearl projects in Visual Studio

I am attempting to deploy a basic workflow from Visual Studio 2005 to a K2 blackpearl server. It seems that doing so directly is unsupported but regardless whether I try to deploy from client to server or use msbuild on a deploy package on the server I get the same error. The accounts I am using have export privileges on the server. ...

View Markup in Context menu? - Visual Studio

While working in the code behind file, there's a need for me to jump to the HTML Markup. Is there a way to add this to the Context menu? ...

.gitignore for Visual Studio Projects and Solutions

Which files should I include in .gitignore when using Git in conjunction with Visual Studio Solutions (.sln) and Projects? Community Wiki: #OS junk files [Tt]humbs.db *.DS_Store #Visual Studio files *.[Oo]bj *.exe *.pdb *.user *.aps *.pch *.vspscc *.vssscc *_i.c *_p.c *.ncb *.suo *.tlb *.tlh *.bak *.[Cc]ache *.ilk *.log *.lib *.sbr *....

Default C++ nature of Visual Studio 2008?

I know that VS2008 supports all, general C++, Managed C++ & C++/CLI. What will be the default nature of VS2008? If I don't say anything then which C++ (C++, Managed C++ & C++/CLI.) will it use? Is it general C++? or Managed or CLI version? I just want to do regular C++ programming. Not managed or CLI. So, I want to change settings appr...

EnvDTE partial class keyword

I'm introspecting on the code in a project using EnvDTE, and I want to be able to determine if they're a partial class, but it doesn't seem to exist in the namespace. Does anyone know how to do this? ...

Getting "This type of page is not served", How to run classic asp in VisualStudio on local machine?

I have an ASP.NET project in Visual Studio and have added a classic asp forum application. When I run this on my localhost machine (XP Pro with IIS), I get "This type of page is not served because it has been explicitly forbiidden". This project has both ASP.NET and the classic ASP both running in the same project. How can I configure...

Kerning in vb.net

Does anyone know how to change the kerning (space between characters) in vb.net? For example, i would like to change "STRING" to "S T R I N G". If possible i would like to be able to create my own font where i can specify the kerning as i wish! Thanks in advance! ...

CodeRush XPress | Code Intelliassist Shortcut

Hi, I've installed coderush and wanted to refactor my code. I also tried to do some things they did in the introduction video. But the only way I get into the coderush intelliassist is the right-click context menu in the editor. Can you help me to change the short cut? By default the short cut should be CTRL + ' I'm using Windows 7 Pro...

SSAS: Error Viewing Cube in Browser

Hello, When I go to browse a cube I created in SSAS, I am getting this error: TITLE: Microsoft Visual Studio Unable to get the window handle for the 'ActionsAwarePivotTable' control. Windowless ActiveX controls are not supported. Anybody know why and how I can fix this? Thanks. ...

Dll loaded twice with Dll redirection through manifest

Hi there, I'm including python.h in my VC++ dll project which causes an implicit linking with python25.dll. However I want to load a specific python25.dll (several can be present on the computer) so I created a very simple manifest file named test.manifest: <?xml version='1.0' encoding='UTF-8' standalone='yes'?> <assembly xmlns='urn:sc...

Organization of team work in Visual Studio

Hello guys! Tell me please if the following scenario is possible to implement with regular version of VS, I mean non team edition. First, our team is small enough about 10 developers and we using SVN as repository. Directory structure is relatively the same for every developer and for simplicity sake it looks like Working\Deploy Workin...

Availability of windows form during processing

I'm doing an application that does some sort of scanning (it checks availability of URL's through a short list) and depending on the result, it adds to one or another listbox. if it exists, it goes to lstOK, else, it goes to lst404. The issue is that these web checks take time (specially when it is OK), it takes an awfully long time, an...

Can you 'kill' to the end of a line in Visual Studio 2008?

In Unix-y editors, you can often press CTRL-k (kill) to delete everything after the text caret position on the current line. Is there an equivalent "single action" in the Visual Studio 2008 text editor? ...

javascript and combo boxes

I have a combo box in a Form View and onchange i want to access a javascript function just as i'd normally do any drop down list. However, it doesn't seem to be even getting to the function function Showused() { alert('eric'); } <telerik:RadComboBox ID="RadComboBoxProvided" onchange="javascript: Showused();" runat="server" Widt...

Generating pass-through code when "preferring composition over inheritance"

Problem Let's say I'm trying to model a cell phone as a combination of a regular phone and a PDA. It's sort of a multiple inheritance scenario (a cell phone is a phone, and it is a PDA). Since C# doesn't support multiple inheritance, this pretty much calls for some kind composition. Plus, let's say that I have other reasons to favor com...

Why won't my Setup Project Perform my Custom Registration Process

I am trying to write an Setup Project/Installer for a class library driver that I wrote in C# using Visual Studio 2008. The driver project has a section of code that looks like this... [ComRegisterFunction] public static void RegisterASCOM(Type t) { Trace.WriteLine("Registration Started."); DoRegistration(tru...

How to increment a version number programmatically ??

How do I programmatically increment a given version's number to the next version of the highest one? For example if I have a file Program.exe with the following version numbers : Program.exe 1.0.0.0 Program.exe 1.0.0.4 Program.exe 1.1.0.76 Program.exe 1.0.0.66 The next version number in this case would be 1.1.0.77 What's the easies...

Display keyboard shortcuts in Visual Studio context menus

Most of the time I use Visual Studio 2008. When right-clicking in this product, a context menu appears. I'd like to see the keyboard shortcuts bound to each menu item in the context menu. Does anyone know how to display these? ...

F/OSS (or just free-as-in-beer) Visual Studio communication add-ins?

Our team is growing, but we're also growing specialized. We've already been using ticketing/bug tracking/case management software for years--as well as IM clients informally--but as another engineer and I were discussing, it'd be nice to have an IRC-like communication system. Basically, it'd be nice to have logs of discussions, as well a...

Can the Visual Studio ARM Assembler produce binaries that don't require an OS?

I'll admit upfront that I don't know a whole lot about ARM development, so I probably have by information wrong here. Visual Studio comes with an ARM assembler (armasm.exe), which is extremely convenient because I use the tools included with VS for basically everything and I'm not too wild about paying for an ARM assembler that comes bu...