Recent content by fmf1966

  1. F

    unhide main db window

    If you use VBA to hide main window, move the Access File to an unsafe location (not trusted) , for ex. Desktop. Then open the file and do not enable vba. This wont work if you had disabled security. To enable toolbars when you dont have acces to options, right click QuickToolbar and chose...
  2. F

    Question How to undo updated record in a table

    You must use Transactions. Create a DAO.Workspace object and link it to DBEngine.Workspaces(0). Then call BeginTrans and after update all tables, if it´s all ok do a CommitTrans, if you want to undo it call Rollback.
  3. F

    Read UTC DateTime From File

    Anyone, please! One of the files is: box.net/shared/ac3lh988gh Starting with: 40424F315ED1CB01 = 21-02-2011 00:27:59 UTC Confirmation with DCode.exe link incomplete due to limitations of this forum
  4. F

    Read UTC DateTime From File

    I have some files generated by a SCADA Software, and I want to read the DateTime from it. It is in Windows: 64 Bit Hex Value - Little Endian Ex.: 40CA582BD984CB01 = 2010-11-15 15:24:18 UTC In VB.Net I use a Int64 variable to read from the file and then convert to DateTime as ticks...
Back
Top Bottom