Recent content by rwahdan

  1. R

    drag and drop within access form

    Hi, I am trying to make matching quiz with access. I have 8 pictures and 8 text boxes to match them together. Is there a way to do drag and drop in access?
  2. R

    Records inside a form

    Thanks for the reply, the reason is I am making an exam engine and i want to view next question which is in the record set. That didn't work as i am loading data on form load, when i click on button then i need to go to next record in the table, how can this be done? Thanks Private Sub...
  3. R

    Records inside a form

    Hi, I am using DAO to get the records from table. I have a form that has text fields to enter the records. I have a button called Next Record and i need it to show next record in recordset in the same form using same textboxes.
  4. R

    reference the correct button when selecting a record

    I have a continuous form that includes all records in one form. I added a button called "Edit" for each record and when clicked it changes its caption to "Update". Currently it is changing the caption of that button for all records to "Update". How to make it only change the caption of only the...
  5. R

    Display Table records with vba

    Hi, Is there away to display all records from Table inside forms using vba? I need to list all records and next each record I need two Buttons to Edit and Delete that specific record! Please guide me or show me link for tutorials on that.
  6. R

    File Path

    Hi, i found a sample database in this forum that can open the "open" dialog to chose a file and open it. what i am trying to do is to get the path of the file i selected and put the path in a text box. anyone can help me on that? Thanks.
  7. R

    link files to database records

    Hi, i am trying to have an inventory control system. in my table i will have inventory item with its fields such as product name and s/n ... i need to scan and attach the scanned document(s) to be attached to the record! is it possible in access and vba? Thanks... If anyone have sample...
  8. R

    Ado

    Hi, i am trying to use recorsets and i get an error and i am not sure what is the problem! maybe i am missing a referance or the code have something wrong that i cant see! please help! the code is below: Private Sub cmdLogin_Click() Dim rs As New ADODB.Recordset Dim cn As New...
  9. R

    vba access 2000

    i have a table that have quantity and i took that number and put it in a variable and then what i want is: i want to create combobox and put in it numbers from 0 to the number i got from the table. example is if the number i got is 10 i want the combo to give me options from 0-10.
Back
Top Bottom