Asp.net - Add New Item, "Web Content Form" Option Is Missing?
Apr 6, 2009
Today I realized that I no longer have a "Web Content Form" option (where you select a MasterPage) when I add new items to my ASP.NET web application. I know how to manually add a MasterPage to a web form, it's just such a pain - and I really don't understand why Web Content Forms suddenly are missing.
Visual Studio Team System 2008, SP1, VB.NET, ASP.NET 3.5
I recently installed and uninstalled VisualSVN. My best guess is that screwed up my poor VS somehow.How do I get Web Content Forms back?
View 4 Replies
ADVERTISEMENT
Oct 29, 2009
Does anyone know why there would be no option to create a database project in VS 2008? In the New Project dialog, under Project Types I have no node for Database Projects. I've looked under Other Project Types as well. Every tutorial I read says this option should be in one of those two places, but not for me :-( I do have SQL 2005 installed on this machine.
View 2 Replies
Jun 14, 2009
I have installed WCF / WPF Extension with Visual studio 2005.
I developed the sample WCF services and to consume it I have developed the client project.
In client project I need to give the service reference, however I noticed here Add service reference option is missing.
View 4 Replies
May 19, 2009
For some reason in VS2008 Configuration Manger 'Release ' option is missing and I can't build and deploy the application I worked on for weeks! Debug option works fine.
View 5 Replies
May 25, 2012
Regarding my college project. i'm working on a sales system . i have a form which consist of all the following information( item code , item name , item price , quantity of item ) which is display using a data grid . data input by user using text box and all this information will be stored in a database(sales database) i'm using ms access 2007. the grand total will be displayed in a text box . and amount paid will be input in a text box too , my major problem now is how to i create a reciept that will have all this information of the purcase. i have a reciept button . what the next step ? i dont have any idea how to get the reciept done.
Imports System.Data.OleDb
Public Class Form5
Dim con As New OleDbConnection
[CODE].......................
View 9 Replies
Oct 7, 2009
I recently downloaded VB2008 express. Iam trying to create a link to an SQL table, but the LINQ to SQL class is missing in my add new item menu. is there another way to grab data from a database without using the LINQ to SQL?
View 1 Replies
Jan 23, 2012
I am trying to delete an item from a text file based on if an item appears in a listbox but keep getting an error " Index was out of range. Must be non-negative and less than the size of the collection." The line it is returning the error on is the the first IF statement of the below text.
Code:
Dim Lines As new List(Of String) (IO.File.ReadAllLines("Carl.txt"))
For i As Integer = 0 To Lines.Count -1
If Lines(i).Contains (listBox1.text) Then
Lines.RemoveAt(i)
End If
Next
IO.File.WriteAllLines("carl.txt", Lines.ToArray)
End If
View 1 Replies
Nov 24, 2009
Problem: I have one ListBox and One FileListBox.What's the VB code that when I click on an item from the ListBox to open and see the content of an FileListBox of a certain folder.
View 12 Replies
Oct 12, 2010
I try to minimize my form to system tray but when I do, the form disappears and the notification icon doesnt work [code]...
View 2 Replies
Sep 6, 2011
I have VS 2008 installed and cannot seem to get the form template to show when I try to add a new item to a project. I have tried the dev /installvstemplates from command line and I checked my zipfiles are in the 1033 folder, I think that is where they are meant to be but still no form showing in add new item?
View 9 Replies
Sep 30, 2010
I have a form in VB Express 2008 and my form has lost some of its controls. The form size suddenly changed to 945, 591 pixels and every control outside of this is lost. I have all the codes intact and application can run. I simply cann't see the controls and its contents.
View 11 Replies
Sep 26, 2011
One of our users cannot see two buttons on a form, that everybody else can see. I'm not sure if the buttons are not there or the window is smaller than it should be. The size of this window is fixed, so it cannot be adjusted manually. (it is like a pop-up window infront of the main window). Our application is used by employees of our company all over the world. So they all have windows xp in different languages and their regional settings differ. But I can't see how that would make a difference.
View 1 Replies
Nov 5, 2010
I can add NavigatorMenu item in Master Page like this:
Partial Class Site
Inherits System.Web.UI.MasterPage
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
[code]....
View 2 Replies
Sep 1, 2008
i have a form with 6 tabs on 3 of which have controls, spent a lot of time putting it all together, set it up to link to a SQL DB, all working fine,Until....at the bottom of the form (in design mode) you have the icons that say BindingSource1 and CustomerDataSet1 etc.Well i accidently deleted some, now when i run the form i got an error saying that it couldnt load, i see the code is there but the form is just the blank form you get when you start(the form is still the same name and if i click view code all the code is there, but on the form are no controls, no tabs ... its all gone....(i only deleted a binding source ) i dont understand where its all gone.
when you click on the undo it didnt put the deleted items back (and i am not sure which one there were) now that the form has gone back to normal there are no Binding sources at the bottom I opened the designer code, i see the names of all the missing items, e.g. CustomersDataSet1 and TblCustomers1BindingSource1 e.t.c do i just re add those back to the bottom of the form and then the main controls will re appear?
I have looked through the code and re added the binding sources and adapters that are referenced in the code along with the Binding navigator, if i run it the form is still blank.I have tried to add the controls back and when i do it adds it as e.gTblCustomers1BindingSource2 if i try to rename them to the name they should be ie. TblCustomers1BindingSource1 it says it already existsI am using VB 2008 Pro?
View 2 Replies
May 6, 2011
I have a project which still runs fine without issue however i dont seem to be able to access the design view of Form1. The icon in soultions explorer has also changed from a form to a sinple vb reference. Im unable to right click in solutions explorer and view designer as there is no option there.
View 6 Replies
Nov 26, 2011
I am missing something simple. I know how to bind asp.net datagrids and webforms, but this is my first time trying to bind to an object list of T in a windows form. (I am use to using datasets with datatables and im trying to get away from doing that).I have a simple object list that gets populated on the form load. However if I click a button to add a dummy record the datagridview does not display the new record added. The bindingNavigator (if clicked nextrecord) and "debug stops" all show that the new record I just added to the object list is there.
Even adding the datasource object in the watch list shows the new records are there. They are just not displaying.
I cannot seem to figure out as to why the new record is not being displayed in the datagridview when I can see the record got clearly added to the datasource.
[Code]...
View 4 Replies
Jan 20, 2010
I working in a tool based in various excel VBA forms. In these forms are a lot of combo boxes, and when I select an intem inside this combo box I cannot select the same item again. So I need to close the form or chosse another item to be able to select the same item. how can I re-select again a same intem inside a combo box?
View 1 Replies
Feb 22, 2011
I really like the coding speed that vb.net provides, but I don't like the possibility to forget to declare variable types, return types of functions, etc. and that is why in each class I use[code]..
Is there a way to define those two options on the project/solution level?
View 2 Replies
Jan 26, 2010
the combo box style 1 has both the drop down option but also a manual entry option. I need to know how to code it so that when you manually enter data, it takes that data and places it in a text message "The shipping charges for "data" is $15" displaying in a text box. Shouldn't be hard but have developed a mind block.
View 4 Replies
Feb 8, 2012
I have one main form, and i want to dynamically change it's content, via pressing some buttons.Let's say i have a button "New user" and "Login", and if I press new user, i don't want to make new form + show, i want all labels and buttons of new user to be displayed right in the main form. And if i press login, the main form content to change to some labels and textboxes? All I can now, is just make new forms and show them to the user via .Show() command.
View 3 Replies
Mar 29, 2012
is it possible to change the content of the form rather than close one form and opening another in vb.net?
View 2 Replies
Feb 7, 2009
I have a very busy form with 120 textboxes on it. They are all named box1, box2, to box120. this form is a template for 10 other forms. I dont want to create 10 new forms and put all these textboxes on it, so is it possilbe to create a new form; form2, form3, form4 etc...and somehow copy all the content from one form to the other and retain the textbox names. I tried to cut and paste and got some strange errors, then i tried in the solution explorer to copy and past there. I got some odd error about Private components...which i did not understand. As you can imagine with all these forms and 120 textboxes on each to create them is a real effort. Is there not a simpler way?
View 9 Replies
Apr 30, 2011
[Code]...
above the sql statment, I want to use in my login form. When a user loging in software then it will set up all above option in sql end but how to set in code
View 1 Replies
Jan 18, 2010
I have 3 forms..
Form1, frmBridge and frmConfig
I want frmBridge to be the startup.. but only Form1 and frmConfig shows up in the dropdown.. what would make frmBridge not show ??
View 5 Replies
May 22, 2012
so i am trying to work out how much content is on the clipboard in the form of an integer. I have tried Dim ClipItems as integer = clipboard.containstext.tostring however this does not work as it is just a boolean value. is there anyway to do this?
View 6 Replies
Jul 9, 2011
I want to import various parts of the webpage by string match. Can some one tell me how I do this as this may also involve HTML. For example consider that I import the headlines from the source of url...
View 2 Replies
Dec 5, 2010
I have all my project finished and have know idea how to do this. I have to get the program to print the invoice and have all the code done in the form but not the print button. i have the printdialog1 and PrintDocument1 on my form and can't get any further. here is the code i have so far in my invoice form.
[Code]...
View 2 Replies
May 6, 2009
I am trying to save forms containing PDF and Pictures on DVD at run time then be able to load them back trough the DVD
View 6 Replies
Oct 5, 2011
I have placed the following code on a button where it opens the new mail window with the mail ids . I am wondering if there is a way to send the form contents as the body of the mail.
Sub ContactUsToolStripMenuItem1_Click(ByVal
sender As System.Object,
ByVal e
[code].....
View 4 Replies
Apr 23, 2009
Is their any option to maximize form automatically on run time?
View 1 Replies