Search results

  1. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    screen.ActiveDatasheet.SubdatasheetHeight = 300 Works to make the height smaller, but you can't make it bigger then the original Height. It's interesting that you can get a subform into a datasheet form, but not into the detail section of a continuous form..
  2. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    I understand, but the (linked) table datasheet is showing individual row Heights. So it’s possible. I am trying to find A way to get this done. Like the position of a textbox in a continuous form, a lot of people are saying (for many years) that you can’t determine this, but it’s just one of...
  3. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    Thanks Edgar, that’s exactly what i wanted to know, if i could trigger an event directly on the table. When the table is linked and you exppand the subdatasheet, the rowsize of that particular row is made larger. (Click on the + sign in your activities table) .Can you see/find a property with...
  4. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    I adjusted the post, to make the question a clearer.
  5. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    The question is, is the table you are seeing on your screen in reality a datasheet form?
  6. MsAccessNL

    Solved Is the Table you see in Access a Datasheet Form? Yes.

    If I open a table and type in the immediate window: ?screen.activedatasheet.form.name, i get the Table name. The next step was to get all the properties of this table/form and if i could manipulate them. It appeared to work. So my question to the experts on this forum. Is a table view in reality...
  7. MsAccessNL

    VBA Outlook SQL problem

    I am also working on a Project-TaskMailer app and I encountered the same problem with the EntryId. I read somewhere that it changes when you move the email to another folder (i didn’t check it yet). I was thinking about putting an id from access into one of the custom email properties fields. I...
  8. MsAccessNL

    VBA Outlook SQL problem

    Thanx for sharing the info, good to know. Also curious to your solution.
  9. MsAccessNL

    VBA Outlook SQL problem

    LastModificationtime works with a pound sign, i only tried it with date not with time.. SearchTime = #..........# strFilter = "[LastModificationTime] >= """ & searchtime & """" 'or try [CreationTime]
  10. MsAccessNL

    Access 2021 Runtime

    I have 365 runtime installed next to Access 2010 and office 2013. The strange thing is that office 365 shows as office runtime 2016 on the form installed apps config. I have to rightclick on a db when I want to open it for n runtime 365. No other db should be open in 2010 at that moment...
  11. MsAccessNL

    Access 2021 Runtime

    I recently downloaded 365 runtime. It’s with the new webview2 control. I am curious if the new edge control is also in 2021 version?
  12. MsAccessNL

    Solved Office 2021 - Outlook Calendar event replication

    Does Access 21 contain the webview2 control?
  13. MsAccessNL

    Using FTP

    Every user only updates his/het local databse. One drive is only holds small textfiles with edited data. so you can map one drive with ftp?
  14. MsAccessNL

    Using FTP

    How did you solve the new ID problem when entering a new record?
  15. MsAccessNL

    Using FTP

    That’s correct. Short name + date/time suffix. The file with latest date get imported first. I think it would also be a great sollution for big databases which are becoming slow over the internet. Having the main data stored locally and only transport the transaction. I started to make the test...
  16. MsAccessNL

    Using FTP

    I made a testdb with syncing edited data over onedrive. Every record update is written to a small text file. The idea is to work with seperate databases and only transfer the changed data. I found a need trick to overcome the ID number problem when entering a new record. The nice thing about...
  17. MsAccessNL

    Create Navigation Pane or ListView to be used in Runtime Version

    The short question is. How Can I replicate the Navigation pane.Especially the color when you hoover over an object. I want to use this in the access Runtime Version.
  18. MsAccessNL

    Create Navigation Pane or ListView to be used in Runtime Version

    I got this "little" issue. I am working with Access 2010 and i wanted to test the New Webview2 control. So I downloaded the webview db from Daniel's Devhut.net and installed the Access365 runtime on my pc (seems to work next to 2010). I mist the navigation pane to open the several forms quickly...
  19. MsAccessNL

    Hello all, newby from Amsterdam here with an ACCDE security quest

    I don’t mind to check my hack skils.
  20. MsAccessNL

    Optimising Routes

    Excel has also a “solver” where you can run (algorithms. I can take a look if i can adopt my courier algorithm, but then i have to know all your restraints. They are not totally clear to me. Tip: I reversed engineered a lot of shortest path code from JavaScript into vba. I didn’t knew at that...
Back
Top Bottom