Search results

  1. PDECODE

    List of all subprograms and includes

    Procedure Explorer Or you can try Procedure Explorer: Procedure Explorer can show you what files are called from your source (*.p, *.w, *.i, *.r ...) or it can display includes *.i from your RCode. You can define your own include types, it also support some MFG runtime includes, some basic...
  2. PDECODE

    Piew - Free Progress Code Editor

    New version: 2.2 - [18.04.2009] + Bookmarks (very handy !) + Check Syntax in PROGRESS environment + Run program in PROGRESS environment + Customize buttons * After new or load file, display instantly filename in caption + Jump to position from command line + Some settings moved from reg to ini...
  3. PDECODE

    Piew - Free Progress Code Editor

    Rectangular block selection: with mouse - ALT + Mouse with keyboard - ALT + SHIFT + cursors
  4. PDECODE

    Piew - Free Progress Code Editor

    New version: 2.1 - [06.04.2009] + Show whitespace + Show/hide line numbers + Setting tabulator width + Insert tabs as spaces * Set focus after options dialog + (Un)comment single line if no selection + (Un)indent single line if no selection + Color & BW printing support
  5. PDECODE

    Piew - Free Progress Code Editor

    No problem, i will try add it in next version, this was only "first working release", i have some ideas that i want add later ...
  6. PDECODE

    Piew - Free Progress Code Editor

    Piew is free, fast and light-weight PROGRESS 4GL/ABL code editor for Windows with some basic and additional features that support syntax highlighting. Why another editor? Sometime you don't want load whole PROGRESS environment just for small change, for source viewing or maybe you want use some...
  7. PDECODE

    Check whether a file is xcoded or not

    maybe ,you can get 2 bytes From the beginning of this file if xcode then 2 bytes = 0x13 0x59 Not 2 bytes, but only one and check for byte 0x13 or 0x11 (old version of XCode)
  8. PDECODE

    Procedure Explorer - Show dependency calls from source

    Procedure Explorer - Free win32 tool that show dependency calls from/to source Procedure Explorer is free win32 application that show you what programs are called from your PROGRESS source (.p, .w, .i, .r ...) or it can display includes *.i from your rcode (if it's debug segment...
  9. PDECODE

    How to convert RTF to plain text?

    i have 2 ideas how to do it: 1) use RichTextBox control (ActiveX), load rtf inside and use "save as text" and you have pure txt 2) replace all RTF signs until you get txt, not very good way but in simple rtf works ...
  10. PDECODE

    Decompiler for Progress 4GL

    PROGRESS 4GL Decompiler ... and that direct link PROGRESS R-code Decompiler :) Decompiler has support for PROGRESS v6, v7, v8, v9, v10, v10 64bit and v11. Its paid service but it helps recover your lost sources in most cases or can save a lot of time by preventing developing some programs...
  11. PDECODE

    Program Source code from .r??

    You can't find it ... It's paid service look at information on: http://progress-tools.x10.mx/decom.html
  12. PDECODE

    beauty.p Reformats Progress Source Code

    Reformats Progress Source Code Also some basic beautify function (auto indenting blocks) has this simple viewer/editor (win32, freeware): http://progress-tools.x10.mx/piew.html
  13. PDECODE

    Program Source code from .r??

    Sure it works :cool:, and currently i have developed method to retrieve also variable names in "some" cases... So recovered rcode has closer look to the source...
  14. PDECODE

    Progress Decompiler

    Check this: http://progress-tools.x10.mx/decom.html Supported version PROGRESS v6, v7, v8, v9 and v10.
  15. PDECODE

    crc check

    Some time ago i develop small utility which can check if source (+ includes) was changed against rcode or if you have database CRC dump then it can also check rcode against database CRC. There are also other interesting checks. It's small, no installation, Win32 and freeware :-) Check...
  16. PDECODE

    Strings I/O (Delphi DLL)

    Hi ! Do you have some experience with parsing strings to Delphi DLL ? Working with LONG i have no problem: IN DELPHI: Function GetV(): Longword; begin Result := 111; end; ----------------------- IN PROGRESS: Procedure GetV EXTERNAL "My.dll": DEFINE RETURN PARAMETER retVER AS Long. END...
  17. PDECODE

    Properties of r-code

    > I am looking to find out where the source resides? or you can use "Procedure Explorer" - it show you also names of includes that are used in your rcode ... or "RCode Source Checker" this will also auto search valid source if you set propath and it checks also if this source, includes or DB...
  18. PDECODE

    Source code from .r

    Rabbit, contact me via mail and i look what i can do for you :-)
  19. PDECODE

    Progress Decompiler

    Yes, it was a long, long jorney beause there exist no documentation, it's "true false" method :-) pure experimentation ...
  20. PDECODE

    Progress Decompiler

    Decompile v6, v7, v8, v9 & v10 is possible. Read more on http://progress-tools.x10.mx/decom.html
Back
Top