Search results

  1. M

    difference between Put and display command in progress

    If you still haven't found the problem :eek:, maybe you can put some sample code in the thread. (TomBascom already suggested it)
  2. M

    difference between Put and display command in progress

    PUT statement: Sends the value of one or more expressions to an output destination other than the terminal. DISPLAY statement: The same as PUT, but can also send the info to the terminal. A main difference is the use of frames in DISPLAY and not in PUT.
  3. M

    Parse a path from comma delimited field?

    If you want to read them out 1 by 1 use something like below: DEFINE VARIABLE cPath AS CHARACTER NO-UNDO. DEFINE VARIABLE iNum AS INTEGER NO-UNDO. ASSIGN cPath = "//server/folder1,c:/folder2,//server/folder2". /*------------------------------------------------------------------- With...
  4. M

    Problem with BROWSE

    Hello alex10, CREATE gtd_dmstr. ASSIGN gtd_ord = "00000001" --> is this a unique field?? (stands for ordernumber?), maybe that's the problem?! If this isn't the problem, please give some more info (field info) about the problem.
  5. M

    How to integrate .w program into mfg/pro

    Hello mfg_newbie, You can better put this thread in the QAD's MFG/PRO section of ProgressTalk. Maybe you will find/get a quicker answer there. Good Luck.
  6. M

    bi file growth

    Hello Longhair, I don't see in your code where and how you delete the records. Can it be that your transaction scope is to big. Maybe your deleted records are thrown away after you have added records etc. This can result in bi-file growth. I would suggest you narrow down your transaction...
  7. M

    count of "/*" and "*/"

    Hai confidentbala, The only way without getting an error: 1) Make a backup. (always handy) 2) Convert the file you want to count in by replacing every "/*" into "/.!!.*" for example. You can use every unique string between the "/" and the "*". 3) Do the same for the "*/". Use the same unique...
  8. M

    pattern matching

    hai mchinnansm, try: - the MATCHES operator - the BEGINS operator - the LOOKUP function - the INDEX function
  9. M

    How to get table properties?

    Hello balasenthilsp, Use: /* for the table names */ for each _file no-lock: display _file with 1 col width 200. end. /* for the field names */ for each _field no-lock: display _field with 1 col width 200. end. /* for the indexes */ for each _index no-lock: display _index with 1 col...
  10. M

    Start-search on the smartdatabrowser

    Hello memoxoz, Try something like this: DEFINE VARIABLE hDataObject AS HANDLE NO-UNDO. /*--------------------------------------------------------*/ FUNCTION getWhere RETURNS CHARACTER ( ) FORWARD. FUNCTION setQuery RETURNS LOGICAL ( ) FORWARD...
  11. M

    Get Pixelsize of an image

    Try something like below: DEFINE VARIABLE lOK AS LOGICAL NO-UNDO. DEFINE IMAGE imPhoto FILE "..." ASSIGN lOK = imPhoto:LOAD-IMAGE("..."). DISPLAY imPhoto:WIDTH-PIXELS imPhoto:HEIGHT-PIXELS. Good luck. :-)
  12. M

    Center window in working-area (multiple displays)

    Hi all, I've got a problem with centering my window or dialog. I'm working with 3 monitors (and 2 types of resolutions). Can somebody tell me how 2 get this information with Progress. When I know this, I can make a matrix in which I'm calculating the place for my window or dialog. So I want 2...
  13. M

    Newbie Question

    Hi Dave, I've Looked up the message for you in Progress: Character string is too long (8184) An unexpected system error has occurred. Please do the following: 1. If the error occurred while running an existing application or during database admin functions, the error may be due to a...
  14. M

    Transaction and procedure external

    If possible: Use buffers for the tables you want to update/add/delete records from, then you can break down transaction blocks and you'll have more control over it.
  15. M

    Selecting a Fill-in from another fill-in

    maybe you can use MOVE-BEFORE-TAB-ITEM() in the on leave event.
  16. M

    Dialog-box screen-position outside visible screen

    thanx for the reply, I think some explanation is required here. The application is a transportplanningstool that uses more than 1 monitor, sometimes 3 monitors (and with different resolutions). These dialog-boxes and windows contain several smartobjects. When using the hidden and visible...
  17. M

    Dialog-box screen-position outside visible screen

    Hello all, Maybe I have a new challenge for some Progress 10.1A problemsolvers. Description: In a software application build in version 9 of Progress, I show Dialog-boxes by displaying them first outside of the visible screen and then relocate it to the visible part of the screen...
Back
Top