Recent content by Reynold

  1. R

    Question Min and Max Date range that we can enter to progress DB

    Can someone tell what date range we can enter to OpenEdge DB. Is it correct it could be in the range of 01/01/1950 - 01/01/2049 ? so if someone enters from application (mm/dd/yy format) a date of 12/20/80, then progress understands it as 1980 date instead of 2080? is that right? Or this is...
  2. R

    Question Shared memory in use.

    Hello All - I am Beginner in Progress DB, So could you guys please help me to move forward in my process. Actually I want to do the truncate BI files for our Test Database which is installed on the same windows drive where the production DB is installed. I shutdown the Test DB and when running...
  3. R

    Can we do tabanalys while the DB is Up and Running

    Hello All - I am little new to the DB admin tasks and I need your expert advice. I need to count the Database Table Records for the production DB. So could anyone suggest whats the best way to do so. I know using tabanalys we can get the record count of each table in the DB. proutil...
  4. R

    Question Condition Basis - For each

    Hello All - I am stuck in one situation where I need to understand - How can I achieve the For each block on the basis of some condition. I am using OpenEdge 11.1. I want to achieve something like that as I mentioned below (I know the below one is erroneous): If condition-1 then do...
  5. R

    Concept: Diff between FORM and FRAME

    ALL - Could any one explain whats the basic differences between FORM and a FRAME. And what we can achieve from the one which we cannot from the other. Because till now I am not able to find any such difference. So please help in understanding the actual concept behind the 2 for most of our...
  6. R

    Font

    You can either do it at the time of variable definition by specifying the font for that variable like: DEFINE VARIABLE xyz AS CHAR NO-UNDO FONT <Specify a font for the variable>. OR you can also define it at the time of FORM and FRAME definition, like for which field in that form and frame have...
  7. R

    Data not visible in For each. But visible in Dump.

    I believe you need to use format with some more width for that data in for each while display. Is that data is char or date??? Progress usually returns "?" for unknown value in date or when the data is more in widht than the display width of that field. you can use display field-name format...
  8. R

    Help: Search Calling Programs of Include Files

    I don't think that will be a good solution to compile each file and then serach each files xref file. Because in actual I have 1545 files in the directory and it will also take a lot of space to save each files Xref. Could anyone suggest something other than that with some code snippet. I will...
  9. R

    Help: Search Calling Programs of Include Files

    Hello All, Could anyone help me - to find the file names (in a particular directory) which uses some particular include file. I am using progress 10.2B and Unix evn. E.g. I am in a directory say /rd/src/ This directory contains 100 .p's and 10 include files - total of 110 files Now I have to...
  10. R

    How to disable the Fill-in?

    Thanks everyone for answering my doubt and specially "trx" because that was most useful to me.
  11. R

    How to disable the Fill-in?

    Thanks ... but I mentioned in my earlier mail too, that I can't change the properties of the fill-in, so I can't make it native = true in property sheet. All are mentioned in my earlier mails ... and whatever i tried that too i mentioned in my earlier mail ... Could you let me know is it...
  12. R

    How to disable the Fill-in?

    Yes right I am aware of it that through Native I can achieve that (as i mentioned in my earlier replies). But, that is what my doubt is which i explained above. By default properties of fill-in are set as "DISPLAY" "ENABLE" "NO-UNDO" checked. and I can't change those properties. I need to...
  13. R

    How to disable the Fill-in?

    @SergioC : As I mentioned in my earlier doubt, that I don't want Sensitive as it won't show the fill-in box. Any other suggestion will be helpful.
  14. R

    How to disable the Fill-in?

    I tried: myFillin:read-only = true. >>> But we don't want that as it will allow the cursor to that fill-in (using tab or mouse). myFillin:sensitive = false. >>> But we dont want that as it will disappear the whole fill-in box. myFillin:hidden = true. >>> but we dont want that as we...
  15. R

    How to disable the Fill-in?

    Hi, On a smart window, I placed one Fill-in. Now my requirement is to grey-out the fill-in (or we can say to disable the fill-in but it's box should be visible) by the use of coding (not by setting it's property). I.e. suppose when we add a fill-in on smart-window - by default properties...
Top