Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rmarma

    ldap date query

    why does (&(umhsSkelEffectiveDateS>=02/10/2011)(umhsSkelEffectiveDateS<=02/15/2011)) return records with umhsSkelEffectiveDateS = 02/15/2010 yymmddhhmmssZ doesnt work as the field is a string in the directory thanks
  2. rmarma

    determining selected items in multi select listbox

    this is what eventually worked Dim SelectItems As DataRowView For Each SelectItems In ListBox1.SelectedItems Console.WriteLine("Display Member = {0}", SelectItems.Row.ItemArray(0)) Console.WriteLine("Value Member = {0}", SelectItems.Row.ItemArray(1)) Next
  3. rmarma

    determining selected items in multi select listbox

    get "Additional information: Specified cast is not valid." when try Dim s As String = "" For index As Integer = 0 To lstAnimals.SelectedItems.Count - 1 Dim drv As DataRowView = CType(lstAnimals.SelectedItem(index), DataRowView) s &= drv.Item("name or...
  4. rmarma

    determining selected items in multi select listbox

    sample code from intro to vb using .net (dana l.wyatt) is as follows ******************************** Private Sub btnShowAll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowAll.Click If lstAnimals.SelectedItems.Count < 1 Then Exit Sub End If Dim s As...
  5. rmarma

    beginner ? re. RI functions

    using CR 5.0 .2 110 what is the difference between the function RIDTSToSeconds(DateTimeString) and DTSToSeconds(DateTimeString) I cant seem to find documentation on date functions that begin with RI Thanks

Part and Inventory Search

Back
Top