Search results

  1. O

    Radgrid view localization

    From your screenshots it explains the purpose. Pleased the code has worked as it was just a basic guess translation to OpenEdge from the site you posted without really being sure if it was correct as I do not work with Telerik components.
  2. O

    Radgrid view localization

    You have not explained what you are trying to actually achieve so no one knows what to answer. Based on the contents of the site you posted I am guessing you have to create an ABL class that has a method in it which expects a character parameter and returns a value based on what is passed to...
  3. O

    Daatagridview - OpenEdge GUI - Sort

    I think you are correct in that you have to do programming when using a DataGridView in Progress. One solution may be to detect the ColumnHeaderMouseClick event and open the query sorting it based on the column header clicked. Attached is this example with code added for...
  4. O

    Daatagridview - OpenEdge GUI - Sort

    As Tom says we require something to look at. There is a basic example here, and although using all kinds of things you were not looking for it will give you a start: https://documentation.progress.com/output/ua/OpenEdge_latest/index.html#page/dvngp/prodataset-binding-example.html I have...
  5. O

    Populate selection-list based on value in a combo-box

    Which of these options are you using to populate the selection-list?: vSelectionList:add-last(vValue). or vSelectionList:LIST-ITEMS = vValues. Can you provide a code sample.
  6. O

    Question Access child widgets to change the properties

    You may have to run the same code/internal procedure recursively similar to the WalkChildTree internal procedure example here to accomplish: https://knowledgebase.progress.com/articles/Knowledge/P34236
  7. O

    Question Tutorial for simple crud application

    Unfortunately the only samples available are for the later versions and do not think they exist anywhere for 9.1E:- https://knowledgebase.progress.com/articles/Knowledge/000032829 Depending on your PDF viewer, can you not copy and paste from the 9.1E proghand.pdf and paste into the procedure...
  8. O

    Question Tutorial for simple crud application

    In the old manuals Progress used to do some really basic examples and you may find these in the programming/ABL handbooks in the OpenEdge 9.1E Documentation and OpenEdge 10.1C Documentation downloads: https://docs.progress.com/category/openedge-archives I seem to recall various sample files...
  9. O

    Could not Load DLL procedure zlib1.dll

    That exact file name was referenced in pdf_pre.i which was part of PDFInclude: /****************************************************************************** Program: pdf_pre.i Written By: Gordon Campbell Written On: July 6, 2005 Description: Preprocessor defintions for PDFinclude...
  10. O

    .NET - Call NotInheritable Class

    Right-click the shortcut and select Properties.
  11. O

    .NET - Call NotInheritable Class

    What is noticeable from your last image is Spire.Pdf.dll is missing, and so as a test I removed this from my directory and it then stopped working! So that seems to be the answer, links are being made with Spire.Pdf.dll. I assumed Spire.Pdf.dll was for PDF work and not required for Excel...
  12. O

    .NET - Call NotInheritable Class

    Unfortunately the three dll files are too large to attach but they were downloaded from here and all unblocked: https://www.nuget.org/packages/FreeSpire.XLS The assemblies.xml file is blocked from sending so have changed to text to show you how it looks. The start-up parameters for the...
  13. O

    .NET - Call NotInheritable Class

    Yes, version 4.0 of the dll: Really odd that you are not seeing any classes for it. What do get when you run this: DEFINE VARIABLE oAssembly AS System.Reflection.Assembly NO-UNDO. oAssembly = System.Reflection.Assembly:LoadFile("C:\PathToFile\Spire.XLS.dll"). MESSAGE oAssembly:FullName...
  14. O

    .NET - Call NotInheritable Class

    Progress 11.7. That screen is the Class Browser screen in Progress Developer Studio: Expand the relevant project - only available if you have created one - and Referenced Assemblies, right-click the component and select:
  15. O

    .NET - Call NotInheritable Class

    What you have done seems correct, and as per the first two attached images it should work okay. Where are you getting the NotInheritable information from? As you can see from the last three attached images Progress Developer Studio does not say they are NotInheritable and only seems to have...
  16. O

    .NET - Call NotInheritable Class

    Forgot to add, you may need to unblock the two dll files: https://knowledgebase.progress.com/articles/Knowledge/Unable-to-add-assembly-references-in-PDS-after-downloading-3rd-party-DLL-and-copying-it-into-the-project
  17. O

    .NET - Call NotInheritable Class

    If this is the message then it means your Progress session is not seeing/knows nothing of the relevant component: Try the following: Place Spire.License.dll and Spire.XLS.dll in the Progress/Project working directory - MESSAGE SESSION:TEMP-DIRECTORY VIEW-AS ALERT-BOX. As per this site -...
  18. O

    .NET - Call NotInheritable Class

    I have no experience with NotInheritable Classes so cannot answer that part, but the version of Spire.Xls found here works fine with Progress: https://www.nuget.org/packages/FreeSpire.XLS/10.10.0 When you say it does not work what error message are you getting?
  19. O

    Save Output as an Excel file.

    Yes, DocxFactory was great for this. I think it is still being maintained but is now called AKIOMA.Docs and is probably now a paid for solution: https://akioma.de/en/products/docs
  20. O

    Answered TAB-Problems mixing NET-controls AND ABL-widgets

    Does this help?: https://knowledgebase.progress.com/articles/Knowledge/How-to-trap-the-BACK-TAB-SHIFT-TAB-key-combination-in-an-ABL-Net-form
Back
Top