This is happening with my applications that I create using VS2008 and the built in deployment project to create MSI installers. It goes like this:
Install the application, which creates a shortcut on the desktop and a start menu folder containing a shortcut to the application. Pretty normal stuff...
Rename the start menu folder (usua...
I noticed that VS2008 doesn't tell me when I'm typing a control name that doesn't exist. why is that?
...
EDITED...
I posted a similar question about VB and C#. The question here is slightly different, considering the differences between VB.NET and C++ are greater than those between VB.NET and C#.
Do I stick with my sort-of working knowledge of VB.NET and learn it thoroughly or skip to C++?
EDIT 2:
I am familiar with Actionscript syntax...
I'm not sure if there is a solution to this. But it is niggling at me and irritating me.
I'm using WPF and Visual Studio 2008. I've designed a beautiful UI :). I have a help text control which is contextual as to which control has been clicked. When the app first loads it has default text set. "Welcome to the X screen here you can ........
I'm experiencing two intermittent problems with Silverlight 3.0, running on Windows 7 with Visual Studio 2008 Standard edition.
My breakpoints will often not be hit, saying that no symbols have been loaded. Often times I can fix this if I stop debugging and try again once or twice. It seems completely random.
Infrequently, my project w...
I've been seeking for JPG saving library for long time for c++, but i cant seem to get anything to work. Now i am trying use LibGD:
What im doing wrong ? It seems to work, but the saving crashes. Code:
...
#pragma comment(lib, "bgd.lib")
#include <gd/gd.h>
...
void save_test(){
gdImagePtr im;
FILE *jpegout;
int black;
...
I was using MinGW's GCC manually without a makefile to compile a DLL. It's since proved ridiculously hard to get more than one MinGW DLL running in an app compiled with Visual Studio.
I've decided to compile the DLL with the Visual Studio 2008 Command Line, but I'm having a hard time figuring out how to do that. It seems there are sizab...
Please read before answering. I dont want you to state the obvious for me. THANKS :D
I am trying to differentiate between pointers and passing by value. And I think I understand them but one thing the source I was reading wasnt clear on is what is the difference between passing a pointer and passing by value. consider the following...
...
Is there a way to have breakpoints hit when the action is caused by the Visual Studio debugger?
For example, let's say I have the following (I know you shouldn't do this, just using it for argument's sake):
public class Test
{
int _X = -1;
public int X {
get { return ++_X; } //Breakpoint here
set { _X = value; }...
I am trying to setup allegro to work with visual stupid express 2008 but I can't find a set of instructions for the life of me. I just want to to recognize the allegro library. Is there anyone who is familuar with allegro who could possibly help me out cause all the tutorials do not cover installation process and their documentation is ...
I am following a tutorial and one of the steps its asking is to go to my projects properties and click on c/c++ and add a path to "Additional Include Directories" property. I am using visual C++ Express Edition 2008. the tutorial is using the same thing. Is there away to get this or an alternative ??
This is my screen
This is tutorial...
I am currently working on visual c++ 2008 express edition. My project is based on reading satellite images and applying image processing on them.
Each image file has an ".0FM" format and is of 8Mb size.
Until now I have been able to read the file (i.e., "*.0FM" ) using a FileStream and into a Byte array, the size of the byte array is 8...
Hello SO:
I am attempting to debug a website on Windows XP. To be more specific, I am trying to debug an install of SiteFinity CMS. This CMS was installed via Microsoft's Web Platform Installer. It was installed to the default location of C:\Inetput\wwwroot.
The first error I got when attempting to debug the website with VS2008 was rel...
I want to write to a std::stringstream without any transformation of, say line endings.
I have the following code:
void decrypt(std::istream& input, std::ostream& output)
{
while (input.good())
{
char c = input.get()
c ^= mask;
output.put(c);
if (output.bad())
{
throw std::ru...
Can anyone describe what the IDE is doing when you run a single test that has been defined? When I start a single test for the first time, the IDE just sits there, taking a few minutes before it starts compiling. When it complies, I can see what it is doing in the output window. Once I see that, I get my desired results. This slowdow...
Hi,
I am having an issue when starting the tests under debug mode in Visual Studio 2008 Team Test where it gives the following error:
"Failed to queue test run '{user@machinename}': Object reference not set to an instance of an object."
I googled for the error but no joy. Don't even understand what it means as it is too brief. Has any...
We have an application that needs the 3.5 SP1 framework and when we click on the prerequisite option in the setup kit we made, we only see the framework without the SP1. When we install, it does not indeed install the correct one.
Is there a way to make this work?
The application was made in WPF if that changes anything.
Thanks!
...
I have a WCF service project, and try to host it with IIS.
In visual studio 2008, I right mouse click the project, and use the command "Publish"
It publish to the directory I pointed to, but it puts the binary dlls in directory
bin\release or bin\debug
And I try to browse the svc, and it gives me the error message:
The type 'xxxxxxxxxx...
Hey guys. I am reading a book and It told me to open a empty WIN32 project. create source file called main.cpp. Put it in the source folder (This is the only file i have in my project). In that file put the following code
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmd...
How do I force a refresh the caption of a CDockablePane in the MFC feature pack? I'm working with the tabbed visual studio style example, and I want to change the captions for the tabs.
These seem to be cached somewhere though, as when I change from the defaults, it uses what the app used on it's previous run. I can find nothing in ...