Search results

  1. arnelgp

    Solved ACCDE for assets records.,

    beware of "Ghost" projects, vhung..
  2. arnelgp

    RegExp Added to VBA Library with Office Version 2508

    it's not my Way, it does regularly updates and your info is incorrect that it does not update.
  3. arnelgp

    How to update current application and maintain the current version?

    1. procedure11.accde should have a startup form/routine to create the necessary Link table, via dsn-less connection. 2. creating desktop link , you can google the vba/script for it. 3. using shell, you can run procedure11.accde and close the current db, procedure10.accde.
  4. arnelgp

    Back End Read-Only Issue

    Grant Full Access right to user Everyone on your backend folder to prevent being read-only. you should also Split your db, the BE should reside to the Shared folder and distribute the FE to your users. don't worry of the Locking files, ms access will take care of it's deletion.
  5. arnelgp

    Solved Copy Paste Text Too Long error

    here is an update, Base64 from Clipboard. open Form1.
  6. arnelgp

    Solved Copy Paste Text Too Long error

    here is a demo, open form1. see the code behind the buttons. see the other modules.
  7. arnelgp

    Solved Copy Paste Text Too Long error

    Base64 is a series of Byte array, meaning it is binary. you need a VBA decoder to decode the base64.
  8. arnelgp

    Solved Class Properties Assigned From Procedures

    he's dead right alright and your all wrong on your Let Property.
  9. arnelgp

    Solved Class Properties Assigned From Procedures

    i think you only need to do that on another Class that you want to Implement
  10. arnelgp

    Solved Class Properties Assigned From Procedures

    I would change it to a Public Sub rather than a Let Property. since you are assigning the value directly through query. how do you supposed to assign Value from your code? Public Sub AssignPropName() Dim rs As DAO.Recordset Set rs = CurrentDb.OpenRecordset("UnionQueryName", dbOpenSnapshot...
  11. arnelgp

    Expression After Update you entered as the property setting produced the following error

    it's hard to troubleshoot with limited info.
  12. arnelgp

    resizing an image

    you can also try ImageMagick using shell command to manipulate the image size. see for yourself which one is faster, WIA or ImageMagick.
  13. arnelgp

    Force Exit on Timer

    i think that is already covered by the "hidden startup" form of isladog. on the db startup, it first check the "linked" table if the Yes/No field is checked for maintenance. if it is checked, the database will not continue to open. if not checked, it has a timer event that continuously checked...
  14. arnelgp

    Experience with Ms Project and Access?

    it's an ebook, no link.
  15. arnelgp

    Close worbook vba not working.

    Try Renaming your Closethis() sub to anything other than that name, ie: Sub subCloseThis() Thisworkbook.Close End Sub
Back
Top Bottom