Search results

  1. I

    Use arrow key in drop-down list

    thanks, John. it works. :) imdl
  2. I

    Use arrow key in drop-down list

    Hi, I have a form with multiple drop-down lists. Currently, when I go to each field, I still to use the mouse to click the "inverted triangle" to show the options in the list. I would like to just use the the arrow down key (instead of the mouse) to show the list. How do I go about that? imdl
  3. I

    password for navigation pane

    thanks for your help. i was able to split the database and create a back-end database where i can update tables. it works, when i open the front-end database, i could see the update. however, when i tried creating a query on the back-end, it does not show up on the front-end. is there a...
  4. I

    password for navigation pane

    hi, i have created a database being used by around 50 people. for security of forms and queries, i can hide the navigation pane through the office button > access options > current database > uncheck Display Navigation Pane. however, i need 3 people to have access to the navigation pane to be...
  5. I

    DoCmd.TransferSpreadsheet not consistently working

    thanks guys, for your replies. my understanding is that append means "add," right? it should overwrite the sheet and should not delete the file. i have actually two sheets in the Excel file. the first sheet contains formulas based on the second sheet being overwritten using the code...
  6. I

    DoCmd.TransferSpreadsheet acExport

    :) thanks a lot
  7. I

    DoCmd.TransferSpreadsheet not consistently working

    Hello, I'm using the code below to transfer a query to a specific Excel file. It works, and when I click the command button again, it overwrites the existing Excel sheet. However, after several times of overwriting the Excel sheet, it stops working or it does anymore overwrite. Is there an...
  8. I

    DoCmd.TransferSpreadsheet acExport

    thanks for your prompt reply. i've attached pictures of the query in datasheet and design view. please help. imdl
  9. I

    DoCmd.TransferSpreadsheet acExport

    hi, i have a query with Trace Number in "ascending" order. when i use the code DoCmd.TransferSpreadsheet acExport, the output Excel data are NOT in ascending order by Trace Number. Why is it so? please see attached output Excel fie. imdl
  10. I

    duplicate data

    it works. thank a lot for your help ;)
  11. I

    duplicate data

    Hi, I am currently developing a database of invoices. I'd like to know if there's a way to put a message box that whenever a user enters a new record with the same invoice number as an existing record, the message box should say, "A record with that invoice number already exists." imdl
  12. I

    listbox of queries

    thanks a lot for your replies. i put the combo box with the query names (from David's message :)). At the on click event of the command button, i put this code for each of the query names. If Me.[comboboxname] = "queryname" Then DoCmd.OpenQuery "queryname", acNormal, acEdit End If
  13. I

    password input box should display asterisks

    I have the code below that works fine, except that the input box for the password displays the actual password, and not asterisks (*****). Private Sub cmdOpenForm_Click() Dim strInput As String Dim strMsg As String Beep strMsg = "Please contact your Administrator to reset your password." &...
  14. I

    access to word macro

    i got the same error. compile error: user: defined type not defined this line is highlighted - appWord As Word.Application please help. imdl
  15. I

    VB code to send a form to email

    thanks, that's useful information. however, still, i've been trying my luck to find how to send a form as the "email body" (not as attachment). any further help would be appreciated. imdl
  16. I

    Populate UserName into a field

    :) yeah, here's the code: Private Sub Form_BeforeInsert(Cancel As Integer) Me.txtName = fOSUserName() End Sub (txtName is the text box on the form) :) imdl
  17. I

    Populate UserName into a field

    Never mind, i found the answer. =)
  18. I

    Populate UserName into a field

    I found the module [http://www.mvps.org/access/api/api0008.htm] and I have the text box =fosusername() that shows the user's login name. I need help on how to populate the user's log in name onto the field in the table whenever a new record is created. imdl
  19. I

    Object invalid or no longer set

    Help please...I can't open my database. It says, "Microsoft Office Access has detected that this database is in an inconsistent state, and will attempt to recover the database. During this process, a backup copy of the database will be made and all recovered objects will be placed in a new...
  20. I

    listbox of queries

    thanks, david. i was able to create the list box of query names. further, i would like to run the query upon selection of the name in the list box, or there could be button to run the selected query. can you help again? imdl
Back
Top Bottom