Search results for query: *

  • Users: Nik
  • Order by date
  1. N

    DataView.RowFilter problems

    All of these objDataView.RowFilter = "gebruiker_id LIKE *" & txtZoekCriteria1.Text & "*" objDataView.RowFilter = "gebruiker_id LIKE *'" & txtZoekCriteria1.Text & "'*" objDataView.RowFilter = "gebruiker_id LIKE %" & txtZoekCriteria1.Text & "%" objDataView.RowFilter = "gebruiker_id LIKE %'" &...
  2. N

    DAO to ADO.NET

    Imports System.Data.SqlClient PublicClass BTW Inherits DataTable Private _btw_id As DataColumn Private _omschrijving As DataColumn Private _percentage As DataColumn Private _BTWattest As DataColumn Private _actief As DataColumn Private _standaard As DataColumn Private objConnection As...
  3. N

    DAO to ADO.NET

    Hi there I'm working on a 3 month task for my school. I need to convert an MS Access JET-dbase based DAO application to an VB.NET MSDE-based application. They asked me to work with classes as much as possible. I'm trying to create classes for all the different tables. But I have no Idea what...
Back
Top