I just installed MS Visual Studio 2005 and I inadvertantly selected C# for the most typical usage. Is there a way to change this? On the start page is shows MSDN: Visual C#. I need to have MSDN: Visual Studio.
Last edited by Navarone; Mar 21st, 2007 at 03:30 PM.
Reason: messed up title section
He who never made a mistake never made a discovery?
Do you know where in the options you need to change this? Also, I can't open any projects, I get an error message about the project not being supported by the installation.
Do you know anything about that?
He who never made a mistake never made a discovery?
Perhaps you are a little confused because this is the VB.NET forum and that says that you can't open a C# project. Are you trying to open a C# project on purpose? Have you installed C#? What languages are listed on your About box?
I am totally new to this, our programmer left a week ago and I have been jumping to his station to do changes so I apologize if I might be in the wrong forum. I figured I would install the VS2005 on my station and save bouncing around like 'Yoda'.
I attached my about dialog box. I suspect I don't have everything configured right. If I need to move to a different forum maybe the admin guys can move it for me.
He who never made a mistake never made a discovery?
Well, you've got C# installed alright, so that's not the issue. I wonder if it's because you're trying to open it from a network drive. I've only ever worked with local source, usually backed by a SourceSafe database on the network. Try moving the entire solution folder to your local machine and see if you can open it then.
ok, before I post any more. I need to know if I am in the correct forum. I couldn't get my station to work so I "bounced" over the our programers station who left and I am trying to make a change and I am getting a compile error.
I don't know if this link will show the compile error. I would appreciate any help or direction.
admin: Thread moved. Looks like C#, ASP.NET is being done.
Brad!
Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
-------------------------------------------------------------
Brad! Jones
Lots of Software, LLC (I wrote: C Programming in One Hour a Day)(Dad Jokes Book)(Follow me on Twitter)
--------------------------------------------------------------
If it's a C# ASP.NET app then I would have guessed that you didn't have VWD installed, but your previous screen shot says that you have that too. I'd suggest repairing your VS install and see if that has a positive effect. Can't help with compilation error though as I don't do Web stuff.
You are trying to access or use a value of variable "v_text", which is either local to a function and has lost its value before you can use it, or present outside the scope of your page.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace turbo
{
public partial class turbo_video : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
String vText = "", movie = "";
if (Request.QueryString["movie"] == "20" || Request.QueryString["movie"] == "section1.swf")
{
movie = "section1.swf";
vText = "A Global Industry";
}
else if (Request.QueryString["movie"] == "section2.swf")
{
movie = "section2.swf";
vText = "A Global Enemy";
}
else if (Request.QueryString["movie"] == "section3.swf")
{
movie = "section3.swf";
vText = "Micro-Abrasive Dust:An Engines Worst Enemy";
}
else if (Request.QueryString["movie"] == "section4.swf")
{
movie = "section4.swf";
vText = "Micro-Abrasive Dust Meets its Match";
}
else if (Request.QueryString["movie"] == "section5.swf")
{
movie = "section5.swf";
vText = "Either Your Protected or You're Not...There Is No In-Between";
}
else if (Request.QueryString["movie"] == "closing.swf")
{
movie = "closing.swf";
vText = "Call To Action";
}
else
{
movie = "section1.swf";
vText = "A Global Industry";
}
}
}
}
Now I didn't code this page, I am picking up where my programmer left off. I don't understand why the "v_text" doesn't work.
I would appreciate any help.
He who never made a mistake never made a discovery?