RSS

Visual Studio 2008 Interview Questions and Answers 


 

Visual Studio 2008 Interview Questions and Answers
Hi.

I am trying to use LINQ to design a small application.
However, I Cant find any article showing me the designer to use. I THOUGHT VISUAL STUDIO 2008 had an inbuilt LINQ Functionality, Where can i get it from VS2008? Or which site can i download the LINQ Designer? Orcas, what is ORCAS?
Thanks.
I have visual studio 2008 . when I include <iostream> and use cout and cin I have errors that say cout and cin undifinded .
How can I solve this problem
if i wanted to build a layout similar to this http://www.liveperson.com/ using asp.net and visual studio 2008 would it require several master pages etc or wah?

i noticed that areas on the site stay the same across the site and in others they change.

ie the navigation and the header stay the same but the layout beneath changes on some of the pages.

how is this done?

many thanks

louis
What else can you add to the list ?

Adobe Photoshop
Adobe Lightroom
Adobe Premeire
Adobe After Effects
Adobe Flash
Adobe Audition
WinRAR
Mozilla Firefox
VLC Media Player
Visual Studio 2008

I didn't mention any security software because this is what has driving me crazy.
Which one is the best for overall security of your computer.
with Anti Virus, Anti Spyware, Anti Spam, Back Up, Firewall

Please reply
Thank You Very Much
Hi guys, if I compile C++ source code on windows (using Visual Studio 2008 express) into a .exe file, will it run on other platforms (Linux and Mac OS X, mainly) ? I am using no platform specific code.
Does some one knows where i can teach my self for visual studio 2008 c++? i really want to make a game evan a ugly boring game i wana have expierence! lol but if some one knows websites pls tell me i really wana learn how to make a game.
thank you so much!
I am confident that i know the basics of C++, but what i want to know is how to add a (UI) user interface. Instead of the simple console applications.

Compilers i use are

Dev C++
Visual studio 2008 express edition.

Anyone tell me how to get started with that, i have no idea where to begin or how to start.

Thanks in advance.
Who has the serials for Microsoft Visual Studio 2008 Express Edition????????? (Visual Basic, Visual C#, Visual C++, Visual WebDeveloper)

I DON'T WANT ANSWERS LIKE "It's free, why you don't register?" OR "Give false informations"
IF YOU HAVE AT LEAST ONE SERIAL JUST WRITE IT.
http://www.viosoftware.com/Visual+Studio...

What I want to know is whether I'd be able to use it (assuming I buy it) for as long as I want to use it, with all the features that the full product has. I am a sophomore in high school, so I think the 'academic' discount applies to me, but I want to know how, if at all, that would affect what the "Version: FULL" meant.

I guess what I am asking is "Am I getting the full product, or will I have to pay more in order to use all of the features as long as I want?"
Hi, how can i compile a C++ program were my friends can use it without
having to download any additional software.

I have been using microsoft visual studio 2008 but the only way my friends are
able to execute that file is by downloading visual studio also.

- What is the best compiler to use for C++ and were can i find some help
getting it set up, because i used the code::blocks compiler early today and it
seems as though you have to have a diffrent compiler like microsoft 2008 or
the gnu compiler... All i want is some information like that.

- also how do you add an icon to your C++ file that you compiled.

My Friends and Family are either running windows XP or Vista so my main goal is to
get a compiler to were there operating system already contains the nessessary files
to run the compiled C++ program.

I am farly new to C++ if you can not tell.

Thanks in advance.
how to save the program after typing the code I do not mean saving the code text to what ever or saving the output to a file but the dos window so I can click on it again and use it with out compliling it every time I need to use the program and if it saving it like blahblah.exe do i do that in the code itself or out the code, I am using MS visual studio 2008 Thank You in advance.
I am newly studying programming with an intro book to Visual Studio 2008 C#.
I know that Visual Basic can be used to automate MS Office applications like Word and Excel. I would like to study how to do this using C#.
I am using Visual Studio 2008 and MS Office 2007 but I can back up a version for a good book.
Can someone recommend me a book I can read?
There are several books with MFC code in print. The books date back to 2000.

Are the MFC examples still relevant for Microsoft Visual Studio 2008 and C++ 2008?
include <iostream>
#include <cmath>
using namespace std;

int con;
int a = 1;
int b = 1;
double d;
double c;

bool prime (int& n)
{
int b = 1;
while(b <= (n / 2.))
{
c = n / b;
d = int(c + .5);
if(c == d)
{
b = 2;
return(false);
}
b += 1;
}
return(true);
}

//bool keeptry = true;

void main(void)
{
cout << "Find primes to: ";
cin >> con;
while(a <= con)
{
cout << a << " is prime: " << 3; endl;
a += 2;
}
}



*************************************
EVERY TIME I DEBUG IT SAYS


------ Build started: Project: prime, Configuration: Debug Win32 ------
Compiling...
prime.cpp
y:\documents\visual studio 2008\projects\prime\prime\prime.cpp(36) : warning C4551: function call missing argument list
y:\documents\visual studio 2008\projects\prime\prime\prime.cpp(36) : error C2568: 'identifier' : unable to resolve function overload
Build log was saved at "file://\\.psf\.home\documents\visual studio 2008\projects\prime\prime\Debug\BuildLog...
prime - 1 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped =========
include <iostream>
#include <cmath>
using namespace std;

int con;
int a = 1;
int b = 1;
double d;
double c;

bool prime (int& n)
{
int b = 1;
while(b <= (n / 2.))
{
c = n / b;
d = int(c + .5);
if(c == d)
{
b = 2;
return(false);
}
b += 1;
}
return(true);
}

//bool keeptry = true;

void main(void)
{
cout << "Find primes to: ";
cin >> con;
while(a <= con)
{
cout << a << " is prime: " << 3; endl;
a += 2;
}
}



*************************************
EVERY TIME I DEBUG IT SAYS


------ Build started: Project: prime, Configuration: Debug Win32 ------
Compiling...
prime.cpp
y:\documents\visual studio 2008\projects\prime\prime\prime.cpp(36) : warning C4551: function call missing argument list
y:\documents\visual studio 2008\projects\prime\prime\prime.cpp(36) : error C2568: 'identifier' : unable to resolve function overload
Build log was saved at "file://\\.psf\.home\documents\visual studio 2008\projects\prime\prime\Debug\BuildLog...
prime - 1 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
RSS
13456723Showing 61 to 75 of 335

Top Tags

Sorry - no Tags found for specified category