Recent content by Geo28

  1. G

    Add comparison file and work with it

    gdgsupport thanks you a lot. FileCopy works great, I cant use it before couse I dont know VBA very well. Problem solution is to copy DOCX file from EXE to some folder then work with it and then kill this DOCX file in decompressed folder how you say it to me. And can you tell me how hard it is...
  2. G

    Add comparison file and work with it

    I cant make VBA to find or see DOCX in EXE container, so i cant “Use VBA to copy the DOCX file from the EXE container to a temporary location”(( I think there is some ways to solve this problem: Make a function to fast decompressing files from EXE (MSWord or another problem files) and inserting...
  3. G

    Add comparison file and work with it

    If I use PLEvalVar(“EXEPath”) the macros cant open both Excel file “Mybook.xlsx” and “Test.docx” if they are located in compiled exe. But if I move them into the folder where the exe file is,macros can find and open them. But the goal is to hide them into exe container to prevent stealing them...
  4. G

    Add comparison file and work with it

    I tried many ways and this is my result: If i add as a comparison file Excel workbook “Mybook.xlsx”,Then i can open it with this code from my exe compiled file s = PathToFile("Mybook.xlsx") Workbooks.Open Filename:=s Where PathToFile is function Public Function PathToFile(Filename As String) On...
  5. G

    Add comparison file and work with it

    Thanks for your answer, but I have already use this function PLEvalVar. PathToFile it is from it. Public Function PathToFile(Filename As String) On Error GoTo Err Set XLSPadlock = Application.COMAddIns("GXLSForm.GXLSFormula").Object PathToFile = XLSPadlock.PLEvalVar("XLSPath") & Filename Exit...
  6. G

    Add comparison file and work with it

    Hello, I m thinking about to buy your program, and testing a demo fersion. I have one issue I can’t to solve. My Excel program contains two files, one ms word and another ms Excel. Excel is the main file where I inpute values. Then by macros I export this values to Ms word document. All works...
Back
Top