item

  1. A

    Question Getting all new emails (ItemAdd)

    Hello, i'd like to monitor a public OL2010 folder and put the incoming item into a dictionary. Everything ist fine with the following code, as far as only one email arrives at a time: *************SNIP************* Public Sub olInboxItems_ItemAdd(ByVal Item As Object) Handles...
  2. J

    Getting certain item from two related tables in a dataset

    Hi I am a newbie for vb.net. I am trying to related two tables in a DataSet. I have looked through a lot of threads but could not find the answer I want. Say, I have two tables: table1 : "ID", "ID in table 2" 1 3 2 4 table2 : "ID"...
  3. U

    Question Programatically select ITEM in LISTBOX if it CONTAINS text from a textbox

    Hi, I'm new to this forum, so please don't flame me if I post anything wrong.. I'm somewhat a "noob" at coding, but I try to learn..! (not just copy paste/leech/...) My problem: Can I let my program select an item in a listbox based on a string (f.e. textbox.text)? So basicly, if an item in...
  4. D

    Question Problem with move items of an array

    Hi, I have a problem with move items of an array according to a schema. This is the purpose of the code: arrayi= {1,2,3,4,5,1,2,3,4,5,1,2,3,4,5,1,2,3,4,5,1,2,3,4,5} Move items in the array to achieve this: arrayf= {1,2,3,4,5,5,1,2,3,4,4,5,1,2,3,3,4,5,1,2,2,3,4,5,1} So: 12345...
  5. solidsnake204

    Question ComboBox AutoCompleteSource as Items

    Hi, I want my ComboBox to display items from the AutoCompleteSource AllSystemSources. Basically, I want the Items property to get its items from the AllSystemSources. But I don't know how to do this. Any help appreciated. I am using Visual Studio 2008 Express (Not the WPF forms though)
  6. T

    Add attribute to every contol in project

    what is the best way to add an attribute to every <input type='text'> item in a project? {ex. <input type='text' onclick="alert('textbox was clicked.')"} I tried useing javascript and it would only add the attribute to the last one in the loop. I don't know how to do it in vbscript or...
Back
Top