Search results

  1. jongpau

    Question IF CAN-FIND() THEN FIND...

    I believe that there is (or was, it may have been resolved) also an issue when using can-find on temp-tables where this sometimes will return a false while there actually is a record. The only time I would personally consider using can-find is if that is really all I want to do: know there is...
  2. jongpau

    Displaying an Array Within a Frame

    Dynamic widgets? Or if its display only show them in a selection list?
  3. jongpau

    Progress webclient license

    I think you should contact your VAR that supplies you with your Progress licenses, your Progress Sales rep or the Progress office in your country, wichever is applicable to you. They should be able to explain all the options to you and give you a quote (or provide you with a document on the...
  4. jongpau

    Working with temp tables

    Yes, you can run your compiled code and use the temp-tables to transport data to and from the appserver(s). You do (of course) have to make sure that you do not try to access any databases from your client code or you will get a database <dbname> is not connected error.
  5. jongpau

    Working with temp tables

    You can use "define like" on the client side as well as long as you compile your code before you run it - the compiler sticks the temp-table definition in the r-code (all fields, formats, help, labels, indices etc). It is a great "quick and easy" way to ensure you have the fields you need...
  6. jongpau

    Export the fields value from a table to a string

    It may be a way to do it but I would not necessarily call it a good way. It was a nice little challenge for a quick coding session though :)
  7. jongpau

    Export the fields value from a table to a string

    Easy, but I am not sure how efficient it is. DEFINE VARIABLE tableValues AS CHARACTER NO-UNDO. DEFINE TEMP-TABLE tt_mstr NO-UNDO FIELD tt_site AS CHARACTER format "x(10)" FIELD tt_line AS INTEGER format ">>9" FIELD tt_item AS CHARACTER format "x(25)". CREATE tt_mstr...
  8. jongpau

    Error Read-json - Euro symbol load

    I believe that is caused because the longchar variable (or your session) has the incorrect code-page set. Check out the fix-codepage statement FIX-CODEPAGE(<longchar variable>) = "<codepage>".
  9. jongpau

    Answered Generating a QR Barcode

    I was looking for a QR Code solution myself the other day and found this. http://www.codeproject.com/Articles/20574/Open-Source-QRCode-Library I have not had a chance to try it yet though - it would be great if you can post some updates (or PM me) with how you are going with this Paul
  10. jongpau

    Resolved FILL-IN will not fit in frame

    I think it is caused by the default font that is used in the Progress clients that Architect runs in the background. Try going Window > Prefrerences in Architect then go to section OpenEdge Architect > Startup You can set your startup parameters there. I added a reference to our ini file there...
  11. jongpau

    What is the maximum number of fields you can have in a table?

    Hi Neighbour, According to the documentation.... You cannot split a table or an index across storage areas. Each table and each index can be assigned to only one storage area. Therefore, the size of a table or index is limited to the size of the storage area in which it resides. The...
  12. jongpau

    Sorting Browser question

    If users do not have to be able to change the sort order by clicking the column headers then it is easiest to just open the browse query with a BY in it for the field you want to sort on.
  13. jongpau

    Is your OpenEdge Application severely obese too?

    Hi All, Thanks for taking the time to answer :) Yes, we are sifting through our code and cutting out "fat" , replacing some re-ocurring code with more generic code in super procedures so it can be re-used and more such things. But, as I said, the expectation is that we will reach a 20%-30%...
  14. jongpau

    Is your OpenEdge Application severely obese too?

    Hi All, First of all, it's been a while since I have been around on ProgressTalk for which I cannot give any other excuse than that I have simply been too busy to actively participate on the forum. I suppose that's how these things go sometimes. Please don't take this post as a one off, I will...
  15. jongpau

    recursive function

    Hi Andrew, Can you also post your Progress code so we can see what you have done so far?
  16. jongpau

    call progress 4GL from vb.net

    Hi itzss. Can you describe your requirement some more? What sort of code do you need to launch? Is it client side stuff that requires user input or is it "just" business logic that you can pass some form of data (dataset or datatable)? If you can provide some more information someone may be...
  17. jongpau

    Extracting table data and its column names

    I think you'll have to write a program for it yourself. If the format of the export is not too complex and if you don't use binary data and blobs etc, it should not all be that hard to do. You can get table and field names out of the _file and _field virtual tables and then dump your data out...
  18. jongpau

    Dynamically retrieve handles to all temp-tables and workfiles

    session:first-buffer could get you there, but it only works on dynamically created buffers. You can use the table-handle attribute of the buffer to get the handle of the temp-table the buffer is created for. I don't think this works for work-files though and as said... it only works with dynamic...
  19. jongpau

    How can I make a recursive menu?

    It would help if you also include the code you have created to do this...
  20. jongpau

    Roundtable_Login

    Userid: sysop no password should be required Enjoy :) Paul
Back
Top