I found it unusaul that I can't load my toolbox items of my Visual Basic 2008 SDK after I just intalled Microsoft Windows7 Phone SDK. And, my property items are not complete, only the property of the main form is displayed, the properties of the controls in the form can't be displayed. I tried right clicking on the toolbox area -> choose items... and then I got this unusual message "an error occured loading this property".
I have a rather large project that several developers access via MS SourceSafe. The issue at hand is the ToolBox lists many, thirty plus, items that start Cached.(the name that follows Cached is the name of a class or Cyrstal Report in the project. There are also many items listed, they have the same "gear" icon, without the word Cached prefix on the class name.
My question is, how can I get these items out of the ToolBox so they never come back?
I am using Vb 2010 I am trying to generate a report in my project; however, i can't put the report viewer on the form. I can see it but can't drag it as if it's not enable.
I am trying to add a new user control to an existing project that contains about a dozen existing user controls. The project builds with no problems and my new control appears in the toolbox, but when I try to drag the new control on to a form I get a message box saying "Failed to load toolbox item 'XXXXXXX'. It will be removed from the toolbox" The project was originally created with VS2005 and has been upgraded to VS2008. What do I need to do to fix this?
Why do I have a Silverlight tab in "Choose Items ToolBox" when I never installed it?The problem is if I select that tab (by mistake of course ;) it locks up!Reproducable bug:Right click Toolbox to open context menu, select "Choose Items". In the "Choose Items ToolBox" window select SilverLight Tab, after that none of the tabs/buttons work so I am unable to cancel/close the window and have to kill devenv.exe with task manager.System:Windows XP Pro 32-bit VS 2010 Pro Silverlight is not installed!?
I was looking through the choose toolbox items window the other day and i saw one called Assembly Installer. I was wondering what this is and what it does?
Give me some kind of tutorial for using the FB API with VB.NET (2008). I tried installing the SDK, but the components don't show up in the toolbox nor in the 'Choose Items' List...
I have a menu strip. In the menu strip I have something for some saved urls in the database, I called it Bookmarks. So I'm trying to fetch the items from the database and have it load in to the menu items.. but it keeps adding items and I only want them added once. [Code]
This one has me stumped. My listview which is called Xlistview1 I would like for when the form opens it will automatically load the example.text file to the listview and also when the form closes to save it. And one more thing I would also like to give users the option to save it by browsing as well a save and load button. Is it possible to have both of these?
I've got a problem, I'm making a program that gives you the choice to add items to a listbox, these items are text. When the form loads, i need it to load text from a file into a listbox. For every line I need it to add that text to the listbox. My problem is when it loads, there's an extra line, but that's only after I close the form and open it again. The reason it happens when the form unloads is because the listbox items are saved on form unload. Now, I believe the problem is my code to save the items:
Dim Env As String = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) For Each item In Form1.TP1.Items Dim Save As New SaveFileDialog()
I want to create a combobox like winform control in VB.Net that makes suggestions dynamically; exactly as the address bar does in Google Chrome or IE 8/9. Basically on each keypress, get a list of items that match the entered text on a background thread(s) and show these items in the dropdown list as they are (possibly slowly) returned - either from DB queries, web services etc.
I have tried a couple of ideas, changing the AutoComplete list dynamically or binding to a list, which I then update. But I am getting some rather odd and incorrect results even when updating the list directly (on the main thread). I also tried implementing my own textbox control that shows a ListBox control where the dropdown would appear - this seemed a lot more reliable but I cannot get it to draw over the edge of forms etc when shown, as the combobox drop-down does.
i have an listview containing an normal listviewitem plus one subitem What i want to do is save the info in the listview in a textfile and load when i start my program. So that all the info will be saved, but how do i do this?
im just wondering if its possible to save the current state of a combobox,for example there are two combo boxes, i selected "3" on the 1st one and "apple" on the second one, is it possible to save that setting so that when i open my program again..i can load that settings?..
Linking Comb Box Items to a Button to load a new formCombo box 3 has 2 items.....Item 1, Item 2i want it so if you click on the button when item 1 is selected it will load form3 and if item 2 is selected the same button will load form 4
Im trying to effectively, Save a listviews items to A database (after clearing it) then load it all back in to the listbox, would this do it? becuase it just doubles what ever is in the listbox @ the time,
Dim ConnStr As String = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source = " + System.Windows.Forms.Application.StartupPath + "data.mdb" Dim DT As New DataTable() Dim SQLStr As String = "DELETE * FROM [keys]"
I need to load a large txt file that is in a fixed width format. There are over 45K lines, so speed is important.I need to load one of the fields into a dropdown box and have another field (label) display the text of another field in the related line.I could import the file to an access db if needed, but would rather not as i also want the txt file to update from a link on a regular bases. So having it in a DB would be more work to process that part.[code]
I added a few items in the combobox dropdown list at the form load event. [code] At the runtime I dont want to allow the user to write something in the combobox as a text.The user can only select an item from the dropdown list of the combobox.