Recent content by johanhjalmarsso

  1. J

    Bypass startup doesn't work!

    The problem was that I got password on my database and i must hold down SHIFT when I click OK button after entered password.
  2. J

    Delete a file

    I figured it out by a search on google. I should not use deletefile method. I should use kill. Kill takes a string as argument and deletes it.
  3. J

    Delete a file

    Hi! I just want to delete a file with VBA. Like this: Deletefile "c:\blabla.txt" But deletefile function needs some kind of object and I don't want that. Just to delete a file. How can i do this?
  4. J

    Bypass startup doesn't work!

    If I hold down the SHIFT-key and click on my access database the database boots up with the startup options! I can't get into my database even if I hold down the SHIFT key!! Help me, please
  5. J

    Alternative to Application.FollowHyperlink

    I solved it with Shell("C:\windows\hh.exe " & helpfilevariablename,1)
  6. J

    Alternative to Application.FollowHyperlink

    Hi! I have a helpfile that I want to open on a Event. But when i use Application.FollowHyperlink I get an annoying warning (the file can contain viruses or in other ways damage your computer) so I wonder if there is another alternative to Application.FollowHyperlink? Thanks, Johan Hjalmarsson
  7. J

    Add a column to a table

    Hi! I have two queries: Grade CountOfHello1 1 0 2 0 3 1 4 0 Grade CountOfHello2 1 0 2 2 3 1 4 0 I want these two like this: Grade CountOfHello1 CountOfHello2 1 0 0 2 0...
  8. J

    Graph (2 fields from query on x and y-axis)

    The solution for me was to edit the graph - click Data in menu and then Series by column or something like that! Thats the solution!
  9. J

    Graph (2 fields from query on x and y-axis)

    Hi! I have this table from a query: 1 1,34 2 1,23 3 1,21 1 0,65 2 0,55 3 ... 1 2 3 1 And I want 1,2,3 at the Y-axis and the X-axis to be the other values (1,34...) But I only get a graph that shows 1,2,3 at Y but only the value 1 at the X-axis and the 1,34-values as legends! Why?
  10. J

    Continuous form view - Formatting

    I want to place more records horizontally in continuous form. Is this possible? Thanks!
  11. J

    update subforms query result

    Forms!frmSearch.Form.subfrmSearchresult.Requery Worked!
  12. J

    update subforms query result

    i have a subform that is based on a query but i want that the subform should get updated when i press a button. how is this done? regards johan
  13. J

    Continuous form view - Formatting

    I want to display more records vertically than 1 column in my continuous form. Is this possible in some way? I want to have like 2-3 columns with 5-6 records each.
  14. J

    Open a file in windows association

    This is the solution: http://www.access-programmers.co.uk/forums/showthread.php?t=88923
  15. J

    Open a file in windows association

    I want to open a image file external outside access. I want to have a VBA line that opens a specified image with the default association of windows. Example: .jpg is opened with the same program as when doubleclicking in explorer and i want to do this in access. open a image with the...
Back
Top Bottom