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
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
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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.