Search results

  1. G

    New IE (internet explorer)

    Thanks
  2. G

    New IE (internet explorer)

    Hi, Does anyone know if the new internet explorer (IE) control is ready to use into Ms Access applications? If so, can i use it within my Ms Access Pro Plus 2016 version or i must upgrade my pack to newest? Thanks
  3. G

    Change Regional Settings Language

    Hi, this is to change region format to another language, I'm just looking to change the Location system language...
  4. G

    Change Regional Settings Language

    Hi, is it possible to change the administrative system language using vba? Attached is the photo on exactly what i mean
  5. G

    Enable Macro and ActiveX settings

    Hi, tried many things without any result. Yes, my DB is on trusted location......
  6. G

    Enable Macro and ActiveX settings

    Hi, about to enable the macros i found on web the following code, but i don't know why it doesn't work. The VBAWarnings : 1 its for Enable, 2,3,4 for disable macros.... any idea? Dim WshShell As Object Set WshShell = CreateObject("WScript.Shell") WshShell.RegWrite...
  7. G

    Enable Macro and ActiveX settings

    Hi all Is there a way to enable the Macro settings and ActiveX in Ms Access using vba? Thanks in advance
  8. G

    Moving one file to different folder

    Good morning, I have the test.drv file in a master folder on desktop and I would like to move it to C: \ Windows folder via script file. Please help Thanks in advance
  9. G

    Delete master folder including the application

    Already I explained in my last post why I want to do that. Of course I know that it's not normal this what I asked to do but it's request from customer. Of course I explained to him all these dangerous arguments if we can offer to him this opportunity but.....still want to work like this.. in...
  10. G

    Delete master folder including the application

    Hello again, it's better to explain what is the idea. This database running on monthly payment basis and customer ask from me if someone didn't pay the monthly amount, he ask from us to delete the application as is it..!! Of course I'm not agreeded with this requirment but the customer still...
  11. G

    Delete master folder including the application

    Hi, reallly thank you Sun_Force, this example is 90% what i'm looking to do. The only thing is if its possible to delete all master folders, subfolders and all file within the database working path, but anyway i wil try to modify your example. Thanks again
  12. G

    Delete master folder including the application

    Hi, theDBguy and thank you very much. I understand what you mean but I'm not able due to the fact of my VBA skills to do something like that. Is it possible to give me one sample please? Thanks in advance
  13. G

    Delete master folder including the application

    Good morning, In master application folder (MyApplication) I have all the files for installing my application. Is there a way so that through a command from the database I have in this folder I can delete all the files, including the application I gave the command? I have tried various methods...
  14. G

    Calculate age in a previous period

    Good Evening, How can calculate the age was someone in a previous period. For example Date of Birth: 01/01/2000 Posted: 01/01/2010 Should give a result of 10 years ... Thank you very much
  15. G

    Run vba code or routine stored into field

    Thanks all
  16. G

    Run vba code or routine stored into field

    Hi Doc_Man All the above appreciated by me, and of course I'm not going to deploy all the vba project into a several fields....I just wanted to use this for a small changes (e.g change the color lets say for example)...Anyway, all understanding by me and i would like to thank all for you time...
  17. G

    Run vba code or routine stored into field

    Thanks a lot
  18. G

    Run vba code or routine stored into field

    Hi MajP, First all thanks for your time to prepare the sample accdb file. Moreover, i understood the logic idea on how can work with Application.Run but what i'm looking to find is the solution to write the vba procedure into field and then to execute it using command. As an example, I have...
  19. G

    Run vba code or routine stored into field

    As I understood this code must be stored into a filed or not ? Option Explicit Private Sub Form_Load() Label1.Caption = "Move" ' Name of Move method. End Sub Private Sub Command1_Click() If Command1.Left <> 0 Then CallByName Command1, Label1.Caption, vbMethod, 0, 0 Else...
Back
Top Bottom