This tag refers to the Visual Studio line of software development products from Microsoft, the 2008 version.

learn more… | top users | synonyms (2)

0
votes
0answers
5 views

visual studio 8 solution file dependencies not honored

We have a .sln and multiple .vcproj files created with Visual Studio 2008 SP1 that we provide in an SDK for customers to use to build our C / C++ applications. The problem is that when someone brings ...
0
votes
0answers
4 views

Visual Studio Solution Explorer Active Item Highlight Colour in Windows 8

In Visual Studio 2008 on Windows 8, how can you change the highlight colour of the active item in the Solution Explorer when it doesn't have focus? I find in Windows 8 that it's quite faint and ...
3
votes
6answers
7k views

Task failed because “sgen.exe” was not found

I am getting the following error when attempting to build my project in Visual Studio 2008 Professional Edition: *Task failed because “sgen.exe” was not found, or the correct Microsoft Windows SDK is ...
12
votes
10answers
15k views

Source Versioning for Visual Studio Express

Is there any Visual Studio Express plug ins for source versioning? I am starting a project on my own and only have the Express version of Visual Studio 2008.
0
votes
1answer
26 views

SSRS data-driven subscriptions saving pdf file on the parameter value passed

I have a SSRS 2008 R2 report, with a parameter employeeID. When we do the data driven subscription I am exporting the report into a PDF file. The PDF is saved/generated as reportname.pdf by ...
0
votes
0answers
15 views

Using log4cxx with a Qt library

Good afternoon guys, I'm working on a project that is using a Qt library in Visual Studio 2008. In this project I am using log4cxx 0.10.0 which is working fine. However, I am unable to get it to ...
3
votes
4answers
1k views

Remove “Invisible” Control Characters in VB.Net

I am currently reading in a text file in VB.Net using Dim fileReader As String fileReader = My.Computer.FileSystem.ReadAllText(file) File contains several lines of text and when I read in the text ...
0
votes
0answers
26 views

Linking error when converting project of VS2008 to VS2005

While converting the project of VS2008 to VS2005, I had manually added the files and then build the solution. Everything was successfully done, but one problem is coming. During linking its showing ...
0
votes
0answers
15 views

How to develop REST server with C# on Windows Compact 7?

I want to develop the web service with C# on Windows Compact7. But it cannot use like "System.ServiceModel.Web". How can I develop REST Web service with C# on Windows Compact7? I need to make it with ...
0
votes
0answers
24 views

visual studio says cannot open lib file even if its there : lnk1104 error

I am trying to test a boost code #include <boost/asio.hpp> #include <iostream> int main( int argc, char * argv[] ) { boost::asio::io_service io_service; io_service.run(); ...
4
votes
6answers
981 views

Visual Studio voice commands

you know how Iron Man was using voice commands for his IDE in the movie? Are there any Visual Studio plugins that can do that kind of thing? If not, how do you go about making them yourself?
-1
votes
0answers
21 views

BM_SETIMAGE doesn't show picture on XP

I'm trying to show a picture in a button. This is the code I'm using: SendDlgItemMessage(hDlg, IDC_LOGIN, BM_SETIMAGE, (WPARAM)IMAGE_ICON, (LPARAM)LoadIcon(GetModuleHandle(0), ...
0
votes
1answer
27 views

Why ToolStripItem can't handle big numbers?

I have a recursive funcion that search for folders. private int contFiles = 0; private List<string> GetFiles(string folder, string filter) { var files = new ...
7
votes
4answers
8k views

What is Native Code?

The Project's Web section (under project properties in VS2008) has a list of debuggers: ASP.NET, Native Code, SQL Server. What is Native Code?
6
votes
5answers
3k views

How to make document tabs in Visual Studio 2008 appear in left-to-right order, just as it was in earlier VS?

In earlier versions of VS (2003 for sure, maybe 2005) when you open a project file, the tab opens to the right. In current VS 2008 it always opens to the left, so I have to rearrange them manually. ...
0
votes
1answer
17 views

Where is _g_config.h in MinGW?

I'm trying to compile a C++ project with Visual Studio 2008. The project uses G_config.h. Therefore, I installed MinGW 4.6.2 However, I cannot find G_config.h in MinGW. How can I get G_config ...
2
votes
1answer
24 views

Should I compile my VS2008 C++ Win32 applications statically or link them dynamically? [closed]

I'm trying to avoid the dll hell problem and users having to install redistribution packages in case they don't have the dlls. Is it recommended that I compile my application statically?
0
votes
4answers
2k views

Making a duplicate of a form in Visual Studio 2008 (C#)

I have a form in my existing project. My current task is to make a duplicate of an existing form and change few things on the new form. Making a copy of the form cs files would not do since the ...
0
votes
2answers
24 views

How to get XML namespace?

I tried using this code: [C#] var textReader = new XmlTextReader(path); if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe") { //... } My XML: <?xml version="1.0" ...
-1
votes
2answers
47 views

VS2008 C++ debugger seems unable/unwilling to look inside instances of structs defined within a function. How are people debugging such code?

VS2008 C++ debugger seems unable/unwilling to look inside instances of structs defined within a function when these instances (or references to) are declared in a different scope to the one where the ...
1
vote
1answer
32 views

Compiling Qt 5, getting warning “The build will most likely fail.”

I'm following this tutorial on compiling Qt 5 on Windows, using Visual Studio 2008 as the compiler. When running configure.bat I get a warning - The build will most likely fail. This is the complete ...
0
votes
1answer
18 views

mciSendString/winmm.dll - Playing an Audio file

I am working on a program in Visual Basic 2008, I am required to have different types of sounds with varying volumes. Hence My.Computer.Audio.Play is not a valid option. I decided to use ...
5
votes
5answers
3k views

Is there something that prevents Response.Redirect to work inside try-catch block?

I got some weird error with response.redirect() and the project wasn't building at all.. when I removed the try-catch block that was surrounding the block of code where Response.Redirect() was in it ...
0
votes
1answer
29 views

Disabling Intellisense in Vs2008

Intellisense parsing brings my 12 core (24, hyperthreaded), 32GB machine to its knees every time I open a Visual Studio (2008, SP1) solution (which is quite often because VS crashes frequently) - for ...
2
votes
1answer
31 views

C# folderBrowserDialog is not showing Ok button on selecting My Computer

In my application, i want the folderBrowserDialog to allow selecting My Computer. But the OK button gets disabled after selecting My Computer from the dialog box. Is there any way to enable the OK ...
-5
votes
0answers
23 views

Menu should change the content [closed]

I am not able write the codings for the button. Whenever an menuitem is pressed, the form should show up the content according to the option chosen.
0
votes
2answers
33 views

Appending lines to a text file on an FTP server (Visual Basic 2008)

I am making a simple hangman game as a school project, I thought it would be a good idea if players were able to submit words for other players to attempt to guess. I am required to use Visual Basic ...
0
votes
2answers
201 views

Build separate assemblies within same project Visual Studio.NET

I've searched online for the answer to this but with no luck. I was wondering if it was possible to build certain classes and or .cs files to separate assemblies within the same project? I.e I have ...
1
vote
1answer
277 views

Error in list of function arguments: '=' not recognized. Unable to parse query text

I am generating an error in visual studio 2008's query pane that I can't seem to figure out. Error in list of function arguments: '=' not recognized. Unable to parse query text. After some ...
1
vote
2answers
4k views

tf.exe errors out with MSB3073: exited with code 1 while doing a label /recursive - diagnostic advice?

I'm working with a VS 2008 project file as the build script... when it gets to: TF.exe label Build_01_29_1$/RootDirectory/ChildDirectory . /recursive It errors out right away (no time out issues that ...
0
votes
0answers
39 views
+50

From a VS2008 VSPackage, how do I get notified whenever caret position changed?

I'd like to get notified whenever the caret position changed in the active text view. The only thing EnvDTE seems to offer is the LineChanged event, which of-course does not get raised when moving the ...
9
votes
3answers
998 views

VS IntelliSense - IFluentInterface / IHideObjectMembers trick does not work. Why?

The IHideObjectMembers trick (a.k.a IFluentInterface) can be used e.g. in fluent interface implementations to hide System.Object members from IntelliSense. (If you don't know this trick, you can read ...
1
vote
2answers
138 views

Installation of OpenCV 2.4.5 on Visual Studio 2008

I'm having some difficulties trying to use OpenCV with visual studio 2008 (Professional Edition). I believe I've done everything necessary to run a OpenCV sample, but it crashes due to a run-time ...
0
votes
0answers
43 views

Trying to run “cout_mat.cpp”

I've recently configurated OpenCV in my machine as described in here. I'm trying to run this simple code: #include "opencv2/core/core.hpp" #include <iostream> using namespace std; ...
4
votes
1answer
1k views

Reduced printing functionality in SSRS BIDS 2008 R2 “Preview” tab or bug?

Problem: Printing from within BIDS 2008 R2 "Preview" tab hangs and must have the process ended in task manager. Facts I can set the report as StartItem under Debug Configuration Properties for the ...
0
votes
2answers
18 views

Windows Mobile 6.1 taking ages to deploy - is it me?

I have taken over a colleague's project and am working on a Windows Mobile 6.1 project and deploying it to a Windows Handheld Pocket PC (barcode scanner). I have however noticed that when I do ...
1
vote
4answers
2k views

Embed one DLL into another DLL In C#

I am building an Class Library application which contains some reference dlls like Skype4COM which is obviously not native object so I just wanna learn how to embed this dll into my dll showing up ...
13
votes
5answers
10k views

How to get out of subversion source control in visual studio?

I have a solution that is source controlled with Subversion and AnkhSVN in Visual Studio 2008, but I would like to remove source control from it, how do I do that?
2
votes
3answers
315 views

boost .ipp file support in visual studio

{NOTE}: Visual Studio Dos support .ipp file. The problem here is more manual inefficiency rather than technical. In a C++ project there are few .ipp etensions files. While compiling in visual C++ ...
2
votes
5answers
724 views

Why no warning with “#if X” when X undefined?

I occasionally write code something like this: // file1.cpp #define DO_THIS 1 #if DO_THIS // stuff #endif During the code development I may switch the definition of DO_THIS between 0 and 1. ...
0
votes
1answer
39 views

Connecting vb.net SQL Server dataset

I created a program using VB.net 2008 and SQL Server 2005. And I am using dataset to connect to SQL Server and Crystal Reports getting data from connection to database too. But I find it difficult ...
0
votes
1answer
18 views

How can I debug an InfoPath VersionUpgrade method?

I inherited an InfoPath form and need to add some more logic to the VersionUpgrade method, to convert old forms to an updated schema. The previous caretaker had to resort to deploying the form and ...
0
votes
0answers
15 views

SSRS Visual Studio 2008 Report Object Layering - custom line object hidden behind Chart

I have some line objects where i base their visibility on a date. These lines are placed on top of a chart (line graph) object. The lines appear and disappear exactly as I want them to when I am in ...
7
votes
3answers
6k views

how to define relative paths in Visual Studio Project?

I know this question has been asked before. I read the answer but did not get cleared. I have a library and I made a console application that uses that library. library have my folder that have ...
0
votes
0answers
18 views

Error in crystal report

I am using crystal report in vb.net 2008 and getting file from database. the table name is Gaji and I am using 3 attributes which countains number but saved in string type. And I want to count the ...
2
votes
1answer
83 views
+50

Error when deploying a SQL project with Visual Studio 2008

When deploying a SQL project with Visual Studio 2008 we create a .sql file. In the project properties we have set the deploy action: Create a deployment script. When building and deploying the ...
0
votes
0answers
10 views

Lib nlopt python interface compiling

I downloaded windows version here and run setup.py in cmd python setup.py install but it gives me following error: D:\nlopt-2.3-dll>python setup.py in stall running install running build ...
0
votes
1answer
20 views

Linking error while linking to Multi-threaded Debug DLL library

I am trying to link an empty project with PoDoFo library (.lib), the library is build using VS project with the Multi-threaded Debug DLL (/MDd) set. While I am trying to link with that lib in another ...
0
votes
1answer
21 views

VS2008 JIT debugging call stack shows only system calls

I am looking at a un-handled exception via a JIT debugger of VS2008. Can anyone give me some pointer what is going on? Call stack isn't pointing anywhere in code. And pretty sure the code tries to ...
1
vote
1answer
38 views

ModalPopupExtender Error

i want to popup ModalPopupExtender in button click, but when i run my code and click on the button then ModalPopupExtender is not popup even i used all the required AjaxControlToolkit references for ...

1 2 3 4 5 280