Recent content by thek1907

  1. T

    search in a access database (query help)

    Hi again Sorry for the late reply. But this still return 0 hits. Any other hints? Thanks
  2. T

    search in a access database (query help)

    Because Chris Robinson on the .NET forum, told me to. http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataset/thread/48ab79cb-c33f-4fc9-8a47-a8df55879484/ Is this also the wrong forum?
  3. T

    search in a access database (query help)

    Because the application I'm making, must have a database attached to it. The company that need the application, do not allow the installation of SQL server, but MS Office is installed on all PC's, so it's a easy to use an Access database in the .NET application. Then I don't have to install...
  4. T

    search in a access database (query help)

    No. I'm making the query in "Query Builder" in .NET (VB), and it still not working. I get zero results, by using : Where Field Like "*" & [AnyText] & "*" According the MSDN "Walkthrough: Creating a Form to Search Data in a Windows Application ", then : Access and OleDb data sources use...
  5. T

    search in a access database (query help)

    Thanks, DCrake But I can't get it to work. This : WHERE (Heading LIKE '%') just returns til entire table. Can you show me how the syntax should look like?
  6. T

    search in a access database (query help)

    Hi guys I was wondering how to make a search in a access database. My query looks like this: SELECT ID, Heading, Description, Fix, Modified FROM CoreData WHERE (Heading = ?) Which work fine If I type in the entire “heading” text, but I would like to use an asterisk i...
Back
Top Bottom