Search results

  1. L

    Showing disabled text boxes gray andbled white with border ena

    Why not set / change the widget colours to custom colours? Then they will not be effected, if you select appropriate colours
  2. L

    Smart Window Browses Editing (Open Edge)

    The Smart widgets source code are all part of Progress. Open them using the AppBuilder from the install directory.
  3. L

    Got real newbee-questions I think...

    Indeed, you are NOT utilzing the product appropriately. You are confused with the development environment (ADE) Expecting this to be run time. You obviously need to attend training on the product. Though, the 4GL has now gone, long live the ABL and OpenEdge.
  4. L

    Alternative to ADD-LIKE-COLUMN

    It SHOULD work though head scratching why not. There are 2 options for setting this. At display time, using the required with format, which does not seem to be working. Or setting this at session level. Where you are executing prowin, supplying / setting the parameters for this. Hope you...
  5. L

    Preprocessor IF-ELSE and Variable Definitions

    Preprocessor expression Using the syntax you supplied: &IF expression &THEN ... Interpret expression to mean / imply simply condition. Think the statement is just simply saying, 'IF this occurs, THEN do this'. But it is wrapped in the preprocessor formant. Hope this helps you work...
  6. L

    Read-only browse

    Greetings, Simply do as Progress is asking. Move focus to a different widget, then assign the values for the browse widget. In your block, a later procedure assign the Browse attributes. Thus moving focus away from the browse. Eg if you have other wigets on screen at the same time, use...
  7. L

    Can we suppress the warning alone?

    You get the messages when you, 'compile my code'. Asking is there any way to surpress the messages, yes there is. Learn how to program in the ABL/4GL !!
  8. L

    Is it possible to determind the databases connected to a specific program?

    From a .p this would not be possible since Progress / OE is an interpreted development language.
  9. L

    Web page

    (please) HELP, I require a webpage to update a progress database. Help would be appreciated, for the sports db to give me an example how. Iam using OE 10 on windows TIA
  10. L

    update field in sdo with sdv connected to another sdo

    :o Greetings indeed you can. Progeress / OpenEdge is not interested in other links supplied to. The SDV has a data src link (directly to the DB) it is NOT interested in the other links just the data src. The tableIO link sends data fom the SDO back to update the DB. This is basic ADM2...
  11. L

    String Problem

    SUBSTRING Look into the SUBSTRING function. So basically take the length of the sting you wish to analize, then SUBSTRING through, looking at each char. If it is the char that you are interested in then do whatever wth it. This is the process you require. Yu simply wish to beak the string...
  12. L

    Return error

    do: if new-so.so_cust <> old-so.so_cust then display new-so.so_cust old-so.so_cust. return error. end. Lets look at the code block. if new-so.so_cust <> old-so.so_cust then /* we want to see it */ display new-so.so_cust old-so.so_cust. return error. /* this statement is firing what...
  13. L

    output to Excel File - xls

    If this is GUI, then you already know the basis (Outputting to CSV). Output a stream to WhatEverFileName.xls Let Windows do the hard work for you. You are only interested in thde data extracted from the database. Give that data to Windows and let that sort out the formatting. Its that simple.
  14. L

    Change SDO in SDB within a smart window

    Just change the links at run time.
  15. L

    Start and connect

    Greetings, I have an OpenEdge db (10.1) sat on my box (windows). How do I connect to it across the network? I think I need to start / piggy back a service. Then what syntax do I require to connect to it? I am thinking a shortcut to prowin32 supplying the different parameters eg -db, -p...
  16. L

    Web connect

    I have got my db on my box and I wish to connect from a web page. How do I do this? What is the required syntax? I have a button on a html page, that I wish to publish some thing to make my OpenEdge session connect, so I can transfer data <> OpenEdge 10.1 on Windows box. Thanks
  17. L

    Service how?

    Greetings To clarify my objective. I am attempting to simply start a database server and connect to it with ABL code. I wish to encapsulate this into a shortcut. For which will launch my app. TIA
  18. L

    Service confusion

    I am following some instructions I found on how to connect to a service, however I do not understand the following instruction: start the Progress Explorer Tool connect to “localhost” in (domain\username and password or just hit OK). I do not understand the connect to instruction. Howdo I...
  19. L

    Service how?

    I want to set up and connect to a service. OpenEdge 10.1 on Windows. I am trying to make my DB available on 1 instance then connect to it, to enable my app to update it. Thanks for any help. I would be greatful for example code.
  20. L

    Combo Box Maddness

    Aren't dispatch procedures a rather old and outdated method? The origional ADM used dispatch though that approach was abandoned. RUN dispatch IN handle ('name'). NOT very ABL approach
Back
Top