Recent content by JeFernando

  1. J

    Database Change Request Form - Template

    Thank you everyone for their inputs. This is good stuff, I will be using this to compile a change form. Highly appreciated all.
  2. J

    Database Change Request Form - Template

    Thanks, @Rob Fitzpatrick and @TomBascom. This is great, even getting these small tips from senior members will help in compiling a whole list of good schema practices for anyone who needs it. Keep them coming guys!!
  3. J

    Database Change Request Form - Template

    Hello All, I want to implement a good database policy and integrity while making any database changes in our application. For this, I am looking for a template that must capture all the important information/steps for any DB changes requested by my fellow teammates. Can somebody point any...
  4. J

    External DLL 32bit vs 64bit

    Hello, Do you know any specific reason for that change to 32bit in OE12.2.5 or any changelog link I can refer to? Can't find it on the OE website.
  5. J

    External DLL 32bit vs 64bit

    That is right, its OE 12.0 and has 64bit AppBuilder. I did a workaround by making my AppBuilder to use prowin32 and hence when adding DLLs the 32 bit architecture is created in assemblies and as my ABL application is already in 32bit, I am not getting any error or issue and DLLs are working as...
  6. J

    External DLL 32bit vs 64bit

    Thanks Tom, this is great. Only thing is I believe the external keywords post v10.2 won't work on the .NET (forgot to mention that before) libraries code as it will give that entry point error. I can use .tlb files but then the issue remains the same. I want to code just like lib/windows.p and...
  7. J

    External DLL 32bit vs 64bit

    Hello Guys, I am having a weird problem with installing external DLL. My Process architecture is 64 bit with Progress version 12. As my ABL application uses crystal reporting tool which only support 32bit, it is set to use prowin32.exe instead of prowin.exe and I am assuming progress doesn't...
  8. J

    Piew - Free Progress Code Editor

    That is great, thanks a bunch. Can I ask how to get that dark theme for the editor with black background as seen in the second screenshot on the website?
  9. J

    PdfiumViewer.DLL implementation in ABL Code

    Almost forgot, in assemblies.xml the PublicKeyToken should not be null, which was the case when created DLL from my own. The Nuget file has this PublicKeyToken which picks up in no time. And after some work, Finally able to achieve what I wanted, In case someone wanted putting code here to have...
  10. J

    JasperReports

    Yes, I am doing the exact thing where we are migrating from Crystal to JasperReporting. Integration is actually pretty easy, You need an API call in your ABL code to JasperServer to download any PDF files created in JasperStudio, If you have used Crystal then its very similar. Once you have...
  11. J

    PdfiumViewer.DLL implementation in ABL Code

    Thanks for the reply. So as per the latest development, I was able to make this work. It was the issue with the PdfiumViewer DLL file that in fact need another pdfium.DLL to work on, I originally downloaded the project from github but it turns out the same project on the Nuget libraries works...
  12. J

    PdfiumViewer.DLL implementation in ABL Code

    I am trying to implement PdfiumViewer to have more control over my pdf printing (orientation, page size, tray etc.). I have generated its DLL file and placed in session directory along with newly created assemblies.xml file. But its not recognizing my Class definition still. I already got the...
Top