Search results for query: *

  • Users: kkemerait
  • Content: Threads
  • Order by date
  1. kkemerait

    Configuration best practice?

    I will be deploying a windows forms based application from a network share which needs to have several things setup before being able to function ... namely Active Directory information, database location and the administrative group name (AD). What is the best way to do this, so that each...
  2. kkemerait

    Linq over entities DataGridView - no Display

    Using a Linq statement to select objects from a custom collection Private Items As New Generic.List(Of T). The funtion is as follows... Public Function AllChildren() As Generic.IEnumerable(Of T) Dim Query = From Child As T In Items Select Child Return Query.ToList End...
  3. kkemerait

    Identifying Generic Types

    Is there an alternative way to identify within a generic method the type that was passed in (of T) without having to create a bogus object and check typename? Public Shared Function Create(Of T)() As iManager(Of T) Dim BogusVar as T -- don't want to do it this way if possible to avoid...
Back
Top