Search results for query: *

  1. J

    Question create install file without the need for user to install SQL server

    Is there any way to create the app so that the DB and table contents are embedded in the install file so that the user does not need to install SQL server. it's a generally available application that i want to create and need a simple install process.
  2. J

    Question create install file without the need for user to install SQL server

    I have a project that i have created in Visual Studio express and SQL server express. i want to create an install file so that i can send to others to install. Currently it is requiring the user to install SQL server Express and 3.5 .net framework. what steps can i take to stop the user having...
  3. J

    Question Setting up dataset in vb code and querying dataset

    I can work with a datasets on forms ok. I am trying to load a dataset using code alone as the function needs to be run from a couple of forms. I am only running the function on 1 table so I could use a datatable rather than dataset. So I guess I need Dim dt as new datatable But how do load...
  4. J

    Question Setting up dataset in vb code and querying dataset

    And how do I set up the dataset ds? So far I have been using the controls/dataset builder in visual studio on forms. I want this code to run in a functions module so can't use these tools there. Thanks for you help.
  5. J

    Question Setting up dataset in vb code and querying dataset

    I have a table (tblSpanishVerbs) of spanish verbs and need a function to return the corresponding English verb after passing the Spanish verb. For example, from below i want to pass the verb "comer" and return the verb "eat". I am using Visual Studio Express 2008 and have imported a SQL Server...
Back
Top