Search results

  1. F

    Confused why am getting this error?

    Yes they are , you say it in the next sentence .. Both your database are called ARCHIVE .... the path does not count has a different physical name. MaximMorin Solution is the right solution.
  2. F

    default port number for progress database

    There is no default database broker port for a progress database... To network a progress database you need to add the -S parameter and you must specify the port you want the broker to run on (there is no default for it because if you don't specify -S it wont be networked ) . The servers that...
  3. F

    .db content

    No the database size does not shrink if you delete data from it . It will free up the blocks so that when you add new data , it will not make the database size grow until it runs out of free blocks.
  4. F

    how to create the check box and browser widgets side to side using app builder

    I asked my 10 year old nephew to create a tutorial to show you how to do it .... Here it is ...
  5. F

    Sax Reader

    It explained in this book .. http://documentation.progress.com/output/OpenEdge102b/pdfs/dvxml/dvxml.pdf There is an entire chapter on using the Sax-Reader.
  6. F

    Information Request

    http://www.qad.com/mfg-pro.html
  7. F

    Fifibonacci series

    If you can't write a program that adds up the 2 previous number in a sequence to get the next number you really need to reconsider if you want to work in computer programming ... Or you shouldn't be asking on a forum how to do your homework :P Since i love helping even tho giving you this will...
  8. F

    DATASET-HANDLE Guru Needed

    He is not adding the same temp table 3 times. Each time he calls his procedure , he passes the pseq parameter and depending on that value he adds ttable1 , ttable2 and ttable3 ... It weird code but it should work. IF pseq EQ 1 THEN DO: w_addok = phdsinout1:ADD-BUFFER ( "ttable1" )...
  9. F

    "mmc could not create snap-in" error on windows 7

    Progress Explorer does not work in Windows Vista , Windows 7 and windows 2008 . They created a new interface called OpenEdge Explorer wich is web based but more flaky to use. It does not come built in with version 10.1B but i think you can download it has a add-on. It comes with version 10.2 .
  10. F

    Dynamic temp table to a static temptable

    And here is from DYNAMIC TO STATIC. DEF VAR mptr AS MEMPTR. DEF TEMP-TABLE ttTest FIELD fld1 AS CHAR FIELD fld2 AS INT INDEX ttTest IS PRIMARY fld1. DEF VAR hTable AS HANDLE. DEF VAR hBuffer AS HANDLE. CREATE TEMP-TABLE hTable. hTable:CREATE-LIKE(TEMP-TABLE ttTest:HANDLE)...
  11. F

    Dynamic temp table to a static temptable

    Here is a simpler way to do it (STATIC TO DYNAMIC) : DEF VAR mptr AS MEMPTR. DEF TEMP-TABLE ttTest FIELD fld1 AS CHAR FIELD fld2 AS INT INDEX ttTest IS PRIMARY fld1. DEF VAR hTable AS HANDLE. CREATE TEMP-TABLE hTable. hTable:CREATE-LIKE(TEMP-TABLE ttTest:HANDLE). CREATE...
  12. F

    Temporary read-only access to production server

    Enhanced Read-Only is only available if you use OE Replication Enterprise Edition. The target databases can be access in "Enhanced Read-Only" (if you have Enterprise replication and not the Standard replication) but it only apply to a Replication Target Database. There is no -RO parameter...
  13. F

    Help needed on Index

    hBuff:PRIMARY will give you the primary index name. for the field , you will have to loop thru the INDEX-INFORMATION till you find it .
  14. F

    Progress and Managing Font + Fint Size

    This must be one of my biggest annoyance with OpenEdge , one dark age limitation that should not exists in any programming language ... Being able to dynamically be able to use any fonts that system has available should be a no brainer ... but no , we have to define them in a stupid INI file...
  15. F

    CD ROM Application

    OpenEdge isn't that great for deployments. Especially if you want to install a multi-user Database. I have done it for a large customer who wanted to have an installation package with multi user database. You have 4 parts that you have to take care of . 1) Install OpenEdge. 2) Install...
  16. F

    Progress Terminate a session.

    It not too hard to do . Create a Progress App that shows the content of the _user table so you can find connected users. Then you can use the connection ID from that table to run a OS-COMMAND that disconnect only that user. This program would need to be run on the Database server machine...
  17. F

    How to use Progress to develop program as background jobs like MSN style ??

    He wants his application to appear in the notification area next to the time when he closes (runs in the background) his application just like MSN does when you close it . Instead of closing msn leaves a little icon in the notification area of the task bar and double clicking on it brings it...
  18. F

    When neither \ nor "" works ...

    I assume you are using PHP. You need to escape both your " characters. $sql = "select something1, something2 from \"some-file\"";
  19. F

    Remove cgi-bin/cgiip.exe/ from URL: How?

    You will need to use the mod_rewrite of Apache to rewrite your URL in your Apache Server to replace the long webspeed URL with a simpler URL. Step 1 : Uncomment the rewrite module in your Apache configuration file. remove the # in front of LoadModule rewrite_module modules/mod_rewrite.so...
  20. F

    Call C# dll from within Progress 4GL

    .Net .dll cannot be called from Progress using the EXTERNAL procedure qualifier. You can add .Net DLL if you have progress 10.2A but not with previous version.
Back
Top