Recent content by Raptorke

  1. R

    Import with variable delimiter

    Hi is it possible to write a procedure to import files but one of the procedure parameters should be the delimiter character. example. def var delimchar$v as char no-undo format "X(1)". assign delimchar$v = ";". INPUT FROM c:\prices.csv. REPEAT: IMPORT DELIMITER delimchar$v...
  2. R

    Set entry to last row in browser

    REPOSITION query {{TO ROWID rowid [NO-ERROR]}| {TO RECID recid [NO-ERROR]}| {TO ROW n}|{FORWARDS n}|{BACKWARDS n}}
  3. R

    Check if field exists in table

    That's exactly how we do it now, one source copied 3 times and modified PER site... But I'm looking for a function that checks if a field exists in a table. example: ASSIGN Customer.CustNum = 500 &IF FIELDEXISTS(Customer.Phone) &THEN Customer.Phone = 02314342434 &ENDIF . In this case we...
  4. R

    Check if field exists in table

    You got a point there. We allready use this system of functionality with a table Parameters where we control all our functionality. But this is not going to solve my problem with fields that exist in one databse but still need to be updated in another db... The source just wont compile then...
  5. R

    Check if field exists in table

    No that's not what I'm looking for. We have a company with 3 sites. Every site uses the same software, BUT sometimes there are differences. We can't update the databases just like that because this takes weeks of planning and training (for the new fields that will be added). We now solve this...
  6. R

    Check if field exists in table

    Is there a way to check within preprocessort &IF if a field exists in a table. We need this to be able to compile 1 source into 3 different environments with 3 databases (overall the same but here and there some slight differences). Thanx Roel
  7. R

    Progress Explorer (NEWBIE)

    Ok, I didn't know you had to fill in the path as if you were on the Unix machine... It's working now, Thanx!
  8. R

    Progress Explorer (NEWBIE)

    Database is on UNIX, but we want to control it from a Windows 2000 client. So we do this by adding a database in our Progress Explorer tool under Management Console of Windows. Here the problem occurs... do I have to use the network name of the Unix server? example...
  9. R

    Progress Explorer (NEWBIE)

    Hello, we've setup our databases and a Unix machine and starten the Adminserver. Now when we try to connect to the databases with our Progress Explorer (on Win2k client) we do the following: 1. Right-click, New... 2. The pop-up window appears asking us a logical name for the db 3. On the...
Top