Search results

  1. M

    Recordset trouble

    Hello all, I'm trying to loop through a DAO.recordset object and add its values to an access table and can't seem to find the right method to use. I'm used to using oledb datasets and accessing data that way so if I'm going about this the wrong way(which I think I am) then any input would be...
  2. M

    Incorporate SQL in VB Code

    I haven't used the dataset feature in VB 2008 yet but in 2005 I would use the OLEDB data access methods and they are fairly simple. Especially if you are using a VB front end and an Access back end as you are. There are 5 steps to gathering the data from the database First, Create and open a...
  3. M

    Get value from textbox in one form and show in textbox iun opther form

    First go into the Form2.vb file and instantiate a global variable to hold the value from the other form and then write a constructor that would look like this: public sub new(byref value as string) InitializeComponent() 'This is required to create the controls on the form...
  4. M

    MDE Locking Issue

    I have an Access Front-end that I made into an MDE file. I loaded the MDE onto a server and now there are multiple people accessing the MDE file via shortcuts on their desktop. I noticed since this update went into effect that the MDB file that the MDE file was made from is being locked when...
Top Bottom