Search results

  1. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    It used as database the own Workbook .exe and SQL via DAO connection, making the call to the database with the code below: Set db = OpenDatabase (ThisWorkbook.FullName, True, False, “Excel 8.0”) I used PathToComplileFile as you indicated in your last answer, but it didn’t work either. When I...
  2. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    How to update, save attached .xlsm file inside .exe?
  3. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    Grateful for the answer. But it didn’t work out for what I need, it was my fault that I didn’t explain better. In the same Workook some spreadsheets are front end and others are backend (database). This is the process: 1.Enter the value in the cell (Spreadsheet-Frontend) 2.The value is copied...
  4. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    How do I access the .xlsm of the virtual drive to write information? If possible I may communicate between two protected workbooks (.exe). I use the active workbook itself as a database, and to connect it I use: db = OpenDataBase (ThisWorkbook.Fullname, False, False, Excel 8.0) But it is not...
  5. C

    Creating and/or saving changes to ActiveX controls

    I create at runtime Combobox, Textbox, Checkbox. works, but does not save changes or additions to text in .exe
  6. C

    Creating and/or saving changes to ActiveX controls

    Hello! I use static ActiveX controls and also create them at run-time, but Workbook.exe does not save the changes made in Frontend. How do I save the changes? Thanks!.
  7. C

    Creating and/or saving changes to ActiveX controls

    Hello! I use static ActiveX controls and also create them at run-time, but Workbook.exe does not save the changes made in Frontend. How do I save the changes? Thanks!.
  8. C

    Creating and/or saving changes to ActiveX controls

    Sorry, I speak basic English, I used the translator to correct the post and the title. Waiting for your help. Grateful!
  9. C

    Creating and/or saving changes to ActiveX controls

    Hello! I use static ActiveX controls and also create them at run-time, but Workbook.exe does not save the changes made in Frontend. How do I save the changes? Thanks!.
  10. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    Grato pela resposta. Funciona quando a extensão não é .exe O 1º Arquivo é .exe e necessita abrir e referenciar célula no 2º Arquivo, também .exe Tentei o código fornecido por vocês mas não obtive êxito. O que estou fazendo de errado? Public Function PathToFile(Filename As String) Dim...
  11. C

    Conexão entre 2 ou mais executáveis, um abrir o outro e compartilhar dados

    Tenho um executável (.exe) Excel que necessita em tempo de execução abrir outro executável (.exe) Excel. O 1º .exe chama rotinas do 2º .exe, que executa uma consulta SQL e retorna ao 1º .exe o restultado. Como .xlsm está funcionando, mas ao compilar para .exe não consigo. É necessário que os...
Back
Top