VS2008 Toolbox Grayed Out?

Jun 21, 2010

I opened an existing VB WINFORM Project on Sunday that I had been working with on Friday, but now the toolbox only showed REPORTING and Visual basic PowerPacks.I had not added or changed the toolbox since I used it on Friday (in fact there have been no changes for a long time....if ever).I tried running "devenv /installvstemplates" and "devenv /resetskippkgs" but they didn't fix it.If I do a "Show All" on the toolbox, a Standard heading shows, but all controls (Label, Textbox, Button, etc) are grayed out

View 2 Replies


Similar Messages:

AJAX :: Addomg Toolbox Items To Toolbox Window On A Window7 Machine With VS2008

Feb 26, 2010

http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-47-cs.aspx

According to the above article you "Unblock" the zip file and then unzip it. You then create a new tab within the toolbox window and add the dll to show and use the toolbox items. However when I do that I'm getting the following:

'Request for the permission of type

'System.Web.AspNetHostingPermissio

View 1 Replies

OWC PivotTable Toolbox Item Grayed Out For WebForm?

Jan 7, 2010

I'm trying to build a Pivottable on a webform in vb.net 2005 using OWC. I have added the Pivottable item to the toolbox, but it is grayed out and so I cant use it. If I develop a Winform instead of a Webform then the toolbox items are there and work correctly.

View 1 Replies

AJAX :: VS2010 - Controls In The Toolbox Are Grayed Out And Disabled

Jun 5, 2010

I am using VS 2010, just downloaded the Ajax Control Toolkit Binaries, have got not wireless mouse (even I tried to unplug my mouse - no success -) and I have tried deleting the .tbd files as mentioned

here; but still the Ajax control toolkit controls are grayed out and disabled!

I have tried the following also:

1. creating a new webite.

2. changing the target .NET framework from 4.0 to 3.5 and vice versa.

3. Restarting VS and Windows.

View 3 Replies

Visual Studio :: Toolbox ShowAll Items Grayed Out

Jul 6, 2010

I am trying to use one of the componets of the WPF Toolkit,[URL] but when I look for the component in my Toolbox it's not there, so when I set the Toolbox to ShowAll, the components are listed but they are grayed out. I right click on the Toolbox > Choose Items and look for the component in my list and ensure that the component is selected, but it still shows up as grayed out. If I turn off ShowAll the components are not listed. How do I get these grayed out components available for use?

View 10 Replies

VS2008 Toolbox Custom Tab Will Not Display Contents?

May 7, 2010

I am having this same problem as this thread. Unfortunately, trying to align the version .Net Framework and Toolkit versions seem to have no effect

View 1 Replies

Once Select "choose Item" From Toolbox VS2008 Close?

Jan 29, 2010

I want to add a control from toolbox, choose item but VS2008 close without any error.

How to fix it?

View 3 Replies

How To Disable A Drop Down List With CSS, So It Appears Grayed Out

Feb 22, 2010

I have an ASP.NET application with a drop down list.

How to disable a drop down list with CSS, so it appears grayed out? Is it possible to do this with only CSS ?

View 2 Replies

Visual Studio :: Grayed Out Tool Box Items?

Jun 8, 2010

I installed the Visual Web Developer 2008 Express on my Windows XP, I also install the SP1. But somehow all the tool box items in the ToolBox are grayed out and I cannot access them,

View 3 Replies

AJAX :: Modal Popup And Background Page Not Grayed Out?

Oct 29, 2010

using .net 4.0 and trying to open a modalpopup with grid loading; it pops up but doesn't grayout the rest of the page, allowing more clicking on the grid. I want the page to grayout with modalpopup and disable any further activity until the grid is loaded.

[Code]....

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script type="text/javascript" language="javascript">
var ModalProgress = '<%= ModalProgress.ClientID %>';
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginReq);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endReq);
function beginReq(sender, args) {
// shows the Popup
$find(ModalProgress).show();
}
function endReq(sender, args) {
// shows the Popup
$find(ModalProgress).hide();
}
function CallPrint(url, window) {
window.open(url, window, 'left=0,top=0,width=900,height=600,toolbar=1,scrollbars=1,status=0');
}
</script>
<div>
<asp:ModalPopupExtender ID="ModalProgress" runat="server" BackgroundCssClass="modalBackground" PopupControlID="panelUpdateProgress"
TargetControlID="panelUpdateProgress">
</asp:ModalPopupExtender>
</div>
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table class="style1">
<tr>
<td>
<asp:Literal ID="litMedResult" runat="server"></asp:Literal>
</td>
</tr>
<tr>
<td>
<asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="1">
<asp:TabPanel ID="tpFilter" runat="server" HeaderText="Show AICE Filtered Meds">
<ContentTemplate>
<asp:GridView ID="gvFilteredMeds" runat="server" AutoGenerateColumns="False"
BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px"
CellPadding="3" GridLines="Vertical"
onrowdeleting="gvFilteredMeds_RowDeleting" DataKeyNames="AICEMedID">
<AlternatingRowStyle BackColor="Gainsboro" />
<Columns>
<asp:BoundField DataField="AICEMedID" Visible="False" />
<asp:BoundField DataField="node_descrp" HeaderText="Med" />
<asp:CommandField DeleteText="Remove From Filter"
HeaderText="Remove From Filter" ShowDeleteButton="True" >
<ControlStyle ForeColor="Red" />
</asp:CommandField>
</Columns>
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#EEEEEE" ForeColor="Black" />
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#0000A9" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#000065" />
</asp:GridView>
</ContentTemplate>
</asp:TabPanel>
<asp:TabPanel ID="tpAllMeds" runat="server" HeaderText="Show All Meds">
<ContentTemplate>
<asp:GridView ID="gvAllMed" runat="server" AutoGenerateColumns="False"
BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px"
CellPadding="3" GridLines="Vertical" DataKeyNames="node_id"
onrowdatabound="gvAllMed_RowDataBound">
<AlternatingRowStyle BackColor="Gainsboro" />
<Columns>
<asp:BoundField DataField="node_id" Visible="False" />
<asp:BoundField DataField="node_descrp" HeaderText="Meds" />
<asp:TemplateField HeaderText="Add to Filter List">
<ItemTemplate>
<asp:Button ID="btnAddMed" runat="server" Font-Bold="true" OnClick="btnAddMed_Click" Text="Add Med" />
</ItemTemplate>
<ControlStyle Width="100px" />
<HeaderStyle Width="60px" />
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#EEEEEE" ForeColor="Black" />
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#0000A9" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#000065" />
</asp:GridView>
</ContentTemplate>
</asp:TabPanel>
</asp:TabContainer>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel></div>
<div>
<asp:Panel ID="panelUpdateProgress" runat="server" CssClass="updateProgress" >
<asp:UpdateProgress ID="UpdateProg1" DisplayAfter="0" runat="server">
<ProgressTemplate>
<div style="position: relative; top: 45%; text-align: center;">
<img alt="Processing" class="style3"
src="Images/loading.gif" />Processing ...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</asp:Panel>
</div>
</asp:Content>

View 8 Replies

Visual Studio :: How To Create App_Data Folder Grayed Out

Sep 29, 2010

I have a few questions regarding the "special" ASP.NET folders in Visual Studio web projects.

Adding an App_Data folder in Visual Studio is present, but grayed out in my C# web project, why?
What are the meanings of the various ASP.NET "special" folders?

App_GlobalResources App_LocalResources App_Data App_Browsers Themes - I know this is used to contain stylesheets for a particular theme and is then specified in the web.config or page (if I remember right).
App_Code - Were these classes that were pre-compiled? Do these ASP.NET folders retain their special meaning if you manually create a folder with the same name instead using the "Add ASP.NET Folder" feature in Visual Studio?

View 4 Replies

Forms Data Controls :: Update, Insert Delete Grayed Out?

Sep 1, 2010

I just drag a listview to my web page. When I config the data source, click the advanced button.I found that the item "Generate INSERT, UPDATE, and DELETE statements blah blah" is grayed out. Therefore I can'tmodify the records at runtime.I am using VWD 2008 Express,

View 1 Replies

AJAX :: Modal Popup - Background Page Doesn't Get Fully Grayed Out

Apr 27, 2010

I have a huge content on a page which scroll's down vertically and when I try to popup a modalpopup control on this page, some part of the screen is not grayed out on IE6 and user can interact with the background page ( even when modal popup is open) . This happens only on IE6 works fine on IE8 and firefox .

View 2 Replies

C# - .NET MVC 2 And 3 Have Gridview In Toolbox?

Feb 7, 2011

Its pretty simple to create a gridview like object with a strongly-typed view; it pretty much does it for you. I can also use a foreach and create the HTML dynamically. Same diff. (The process of getting that data from the controller to the view is still magical to me).

AFAIK, MVC doesn't support viewstate. MVC doesn't have a way to reference and set GridView1.Datasource = SomeDataSource; in the Controller either. So why is Gridview available in the toolbox when I can't set the datasource? Is the gridview useable? Is anything in the toolbox useable (outside standard HTML)?

View 2 Replies

C# - Adding Own Control To The Toolbox

Feb 18, 2011

Does anyone know why I can't add a subclass that inherits a control from AjaxControlToolKit to the ToolKit? I explicitly implemented IComponent which I didn't really have to since the IControl in the parent implements IComponent already. I'll compile the code, and try to add the DLL but I get the "doesn't contain any controls" error. I know this is a very specific error so there wasn't much help elsewhere.

[System.ComponentModel.DesignerCategory("Component"),
ToolboxData("<{0}:TabPanelWithDataBinding runat=server></{0}:TabPanelWithDataBinding>")]
public class TabPanelWithDataBinding : TabPanel, IComponent, IDisposable
{
//all the meat stuff
}

View 1 Replies

Visual Studio :: Add A Dll To The Toolbox?

Oct 11, 2010

i want to add a dll to the toolbox, i now how to do it in vb.net i tried and it works

View 3 Replies

ASP.NET 3.5 - CrystalReport Do Not Find In Toolbox?

May 11, 2010

I am new to ASP and am trying to use it to display a Crystal Report that I had already written using outside of .NET.The links I follow tell me to use a CrystalReportViewer.I do not find one in my toolbox.I have a MicrosoftReportViewer there, but not a CrystalReportViewer.How can I add what I need or use what I have?

View 1 Replies

How To Recover A Deleted Control In ToolBox

Dec 31, 2010

I delete a control(TextBox) from toolBox by accident, but not getting how to get it back at there please help me to recover.

View 1 Replies

VS 2008 AJAX Controls In Toolbox?

Feb 5, 2010

I've been using AJAX 3.0 in my project for a while. Today I started another project and wanted to use some of their other controls I have read about. I only show a few controls in my toolbox such as Pointer, Script manager, Script manager Proxy, Timer, UpdatePanel and UpdateProgress. How do I get the others to show such as the HTMLEditor control?

View 3 Replies

Visual Studio :: Toolbox Tab Is Not Working?

Apr 5, 2010

i was trying to build a basic web form using labels and textboxes but in my tool box i couldnt find any tools can some one help me how to configure those tools in the tool box,and also in APP_DATA i couldnt find the option like ADDNEW ITEM i am currently using visual studio 2008 trail versio

View 1 Replies

Visual Studio :: Why Have Pointer For Each Tab In Toolbox

Sep 20, 2010

For every tab as first control in tab,we have "pointer".what is the use of that?hy we have it each tab?why we have it first in every tab?

View 6 Replies

Web Forms :: To Get The 3.5 Extensions To Show In Vwd Toolbox?

Feb 21, 2010

how do I get the 3.5 extensions to show in my vwd toolbox? I've got .net 3.5 sp1 installed and the silverlight toolkit and the silverlight 3 tools. I want to use the media player control.

View 5 Replies

Security :: ASP Toolbox Login Control

Mar 27, 2010

I am using a login control from the toolbox currently. I have the following code that is invoked when the user click on the log in button:

Protected Sub Login_Authenticate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles
Login.Authenticate 'To attempt connection to database. Prompt if fail Dim myConnection As SqlConnection = New SqlConnection(ConfigurationManager.ConnectionStrings("connString").ConnectionString) Try myConnection.Open() Catch ex As Exception MsgBox("Cannot
connect to server", 0) End Try 'Prepare SQL command to query,update or delete from database Dim sqlComm As New SqlCommand("SELECT * from Accounts", myConnection) 'Execute SQL command Dim reader As SqlDataReader = sqlComm.ExecuteReader() 'Retrieve result from
reader While (reader.Read()) If Login.UserName = reader("Username") & Login.Password = reader("Password") Then e.Authenticated = True Response.Redirect("Management.aspx") End If End While 'Close the connection myConnection.Close() End Sub

Now my question is instead of using memebership table, I would like to do the authentication with my own sql server database and once the verification is done as shown in the above code, I want to activate the DestinationPageUrl. I tried using: e.Authenticated = True Response.Redirect("Management.aspx") to set the authentication to be successful after I am done with the verification but it still does not redirect.

View 3 Replies

Visual Studio :: Can't See Standard Toolbox

Apr 28, 2010

I have visual studion express edittion 2008 but i can't see the standard toolbox (i can see the html toolbox).

how can i solve this?

View 1 Replies

AJAX :: ToolBox Does Not Load At VS Start Up?

Oct 25, 2010

I went to the Code Plex site and down load the latest toolkit. Then followed the instructions on how to set up the toolkit to the letter. When I first loaded the toolkit everything worked. But now every time I start up my computer and start VS all the AJAX controls I have on any page has the green squiggly line underneath it and the error says:Element <AJAX Control Name> is not a known element. This can occur if there is a compilation error in the web site, or the webconfig file is missing.The only thing I can do is delete the Ajax Toolkit tab then add the tab again and then "Choose Items..." and load the Ajax controls again. Then I have to add an AJAX control from the toolkit to any webpage. Once that is done all the green squiggly lines go away and I can continue.This is becoming an incredible pain. Please let me know what I can do to fix this.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved