Search results

  1. D

    Highlighting records in a form

    Thanks Mike for your Macro. I have imported it in my database but I don't understand how it works. Daniel
  2. D

    Highlighting records in a form

    Hi Rabbie; Thanks for the link, I will give a look. Daniel
  3. D

    Difference when opening forms

    I don't think so because I am the developer of the database. I think that the difference comes from how you open the form but I don't know where I have to look. Daniel
  4. D

    Highlighting records in a form

    Changing color of records in a form Hi, Is is possible to change the color of some records in a form? I would like to change - for example- the color of every 10th record in my form. Daniel
  5. D

    Difference when opening forms

    Hi, I don't understand why, when I am opening some forms, I have at the button of the form a few boxes with filter, record and search and in other forms I don't have those boxes. Daniel
  6. D

    Sendkeys Ctrl+Alt doesn't work

    No, doesn't work but I will try to find another solution.
  7. D

    Sendkeys Ctrl+Alt doesn't work

    I didn't want to use the Shell function because with the Shortcut CTRL+ALT+U , I can directly launch a macro and this is impossible with the Shell function. Daniel
  8. D

    Sendkeys Ctrl+Alt doesn't work

    SendKeys "%^U" doesn't work
  9. D

    Sendkeys Ctrl+Alt doesn't work

    It launches a Macro application in an other windows program. ( in macro Expert) Daniel
  10. D

    Sendkeys Ctrl+Alt doesn't work

    + is for SHIFT Daniel
  11. D

    Sendkeys Ctrl+Alt doesn't work

    I don't think because To specify that any combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, enclose the code for those keys in parentheses
  12. D

    Sendkeys Ctrl+Alt doesn't work

    Hi, I have tried the following code: SendKeys "%(^U)" The purpose is to stimulate CTRL+ALT+U (all 3 keystrokes should be hold down together) but it doesn't work. What 's wrong? Daniel
  13. D

    Deleting an entire row in excel

    I have found it : Just replacing entireRow.delete by select Set c = ThisWorkbook.Worksheets("Sheet1").Cells.Find("abcde", LookIn:=xlValues) If c Is Nothing Then Exit Sub a = c.Address ThisWorkbook.Worksheets("Sheet1").Range(a).select
  14. D

    Deleting an entire row in excel

    Hi Brian, Thanks for your reply. Instead of alter the screen size, is it possible to go - when opening the spreadheet- with the cursor to a certain cell ? ( like in access with the command DoCmd.GoToRecord....) ?
  15. D

    Deleting an entire row in excel

    Hi Brian, Thanks for your reply, I will try it. Two other questions: When, I am running the code, It works and closes the Spreadsheet, but Excel is still open . Is it possible to close not only the file but also Excel? This is the code that I have written: xlwrkBk.Close 'Close the...
  16. D

    Deleting an entire row in excel

    I have found the solution: I have replaced Row by EntireRow and it works. Daniel
  17. D

    Deleting an entire row in excel

    Thanks for your reply but using the code as above , I am receiving the following error : "Compile error, Invalid qualifier" for ".Row " Daniel
  18. D

    Deleting an entire row in excel

    Hi Chergh, What do you mean by "xlValues" ? Daniel
  19. D

    Deleting an entire row in excel

    Thanks, I have tried and I am receiving the name "Singles" Daniel
  20. D

    Deleting an entire row in excel

    Of course not, but in this file, there is no tab at the bottom with name "Sheet1 Sheet 2 ....."
Back
Top Bottom