Search results

  1. P

    Transparent Text Background

    It is very easy in 10.2. In older versions win API can be used to create trasparent look. Theres was a lot of documentation and sample code on oehive.org for win APIs including transparency.
  2. P

    Help me

    you can also have a look at the progress manuals ... although they are not as good as training but they will get you started. psdn.com is a good place to begin You can find appserver manual here http://communities.progress.com/pcom/docs/DOC-48088 It is a good place to start. Does have some...
  3. P

    Directory name check

    Try File-info:file-name = "path of your directory". if file-info:full-pathname <> ? then message "directory exists" view-as alert-box.
  4. P

    FIND FIRST vs FOR FIRST (moved)

    FOR can use multiple indexes FIND uses only single index. To add to question is: FIND FIRST better than FIND ...performance wise?
  5. P

    Converting CHUI to WEB APP

    Just out of curiosity: Why no PS:Escript?? -Parul.
  6. P

    How to use multi-dimensional array in progress

    Have a look at KB ID:20382
  7. P

    Read Write XML

    Since you are on 10....... it is as simple as: /*coded directly ..check for syntax errors*/ def temp-table tt1 field tf1 as char field tf2 as int. def var a as logical no-undo. create tt1. assign tt1.tf1 = 'test' tt1.tf2 = 2. a = temp-table...
  8. P

    WebSpeed Workshop in Development Mode

    I was once told by Alan wilkinson that he went throught the same exercise. He mailed the website admins. some of them responded well some did not. You are doing them a big favour. I don't think you have to be anonymus about it. If something goes wrong progress as a community gets a bad name...
  9. P

    Passing blank numbered parameters to an include file

    Have you tried single quotes {include.i ' ' param2}
  10. P

    Not optimal code

    I don't know if it will be an overkill in this case but in general profiler is also a good way of seeing which line of the code is taking most time. have a look at KB id 19495 for more about profiler system handle. -Parul.
  11. P

    How can we deploy ultra controls in Webclient

    Do you have the latest web client (10.2) on the client machine? To contact progress you can go to the knowledge base and click on the contact support tab. here is the link. http://progress.atgnow.com/esprogress/tabs.do?x=&mainTabs=contactus Looks like a version issue to me. I was able to...
  12. P

    truncating BI

    Performs three functions: Uses the information in the before-image (BI) files to bring the database up to date, waits to verify that the information has been successfully written to the disk, then truncates the before-image file to its original length. Sets the BI cluster size using the...
  13. P

    patches openedge 10.1c for linux support

    There is a download center http://www.progress.com/openedge/esd/index.ssp If you have the login ID and password for your company you should be able to go to this link and download 10.1C and the service packs. -Parul.
  14. P

    Executing dynamic user defined formula/string

    Have a look at this: http://progress.atgnow.com/esprogress/jsp/AnswerControls.jsp?directSolutionLink=1&tabs=true&docPropValue=p39990 -Parul.
  15. P

    VB Pro Looking For Code Samples To Learn P4GL

    Hi Stephano, oehive.org is good place to search for code samples. on psdn.com you can find the documentation and white paper sort of things. It has forum also where people form Progress keep an eye. peg.com is also a good resource for learning. -Parul.
  16. P

    Base or derived class?

    That makes some sense now. Thanks Casper. -Parul.
  17. P

    Base or derived class?

    Bear with me while I explain this: I have a class a.cls b.cls inherits a.cls and has a method getMessage(). Now if I say def var dCls as class a. dCls = new b(). it works fine, which is good. now if say dCls:getMessage(). The compiler complains that getMessage was not found...
  18. P

    Database Connection Issue

    TBL_TENANT Is not usually part of sports2000 database. Are you sure you have create a new table in the database and commited the changes?
  19. P

    Wsdl issue

    Open the XPXG file (Using proxygen). Click on generate. Yo will find Appservice on general tab. There is a check box on the side that says use default. Uncheck that and supply the appserver name, if you are using something different from default. -Parul.
  20. P

    Wsdl issue

    Is your appserver running. Did you give the right appserver name while generating the proxies? -Parul.
Top