Search results

  1. C

    db locked and not accessible afterwards

    Hi I have a problem with a cleint-Server accessdb that I created and works fine. But rarely (may be once in a week), I get a record lock file (normaly 1kb size) which is not the normal record lock taht appears when the system runs. This file does not get closed even if the db is closed. Also, I...
  2. C

    Dlookup (criteria conflict)

    Hi All, I have a problem with Dlookup. I have s search function which should select a name corresponding to ibin number and then from the bound table, populate the text boxes in the form. this is the code I used. any body please tell me why thsi Dlookup is not giving the required output...
  3. C

    disappeared pop up form

    Hi all, I have a problem with access forms. I am around 2 months working with access. I created an application/dataentry form and it was working very well. suddenly today, I got an error which says. Run-time Error 5 "Invalid Procedure Call or Argument. together with that or may be...
  4. C

    Run a query monthly once.

    Hi, I want to run a query(to create a table) once in every month. But the application is run on a local computer. that means, on the first time when some one open the access, it should create the table. the next time it will be first time the application is run next month. that means, it must...
  5. C

    Populate textbox from table

    How to automatically populate the bound text box with data from a table for a specific entry. this is the code I wrote Private Sub ListBox_DblClick(Cancel As Integer) Dim ListBoxSel As String ListBoxSel = Me.ListBox.Value Call proc_Update_TxtBoxes(Me.ListBox.Value) DoCmd.Close End Sub...
  6. C

    Pop up search form

    How to open a search form with a mouse click on Button_Search My idea is to pop up a form where user can enter the search text and select the required name and get back to the old form with all details about the entry. refered to thread t=188663 in this forum (sorry i couldn't post links) to...
  7. C

    Open word document with VB

    Hi Can anybody please tell me how to denote variable in a word document. I am trying to open a word document with curresponding data filled from the text field of a form. I managed to get the word document with the help of previous pots in this forum. but I dont know how to give a variable in...
  8. C

    Logical Or

    Hi, I am trying to check whether either one of the following text fields are filled and only then to proceed. I used an If ElseIf loop where first criteria(name) should be filled. and minimum one textbox from rest of it. If IsNull(Me.FirstName) Then MsgBox ("FirstName Missing!") ElseIf...
  9. C

    Hello

    Hello everybody, I am a young IT professional freshly completed my graduation and doing an Internship. I am totally new too this VB access programming and I find it interesting.
Back
Top Bottom