Recent content by plus_marca

  1. P

    SYSTEM ERROR: Cannot read field <field-num> from record, not enough fields. (450)

    Hi all, I just applied a delta file to one db, now when i try to read the table affected by the delta file I get error 450 but only when using OpenEdge Studio (10.1C) to access the db. If I run the same procedure in Unix, I get the expected result (no error whatsoever). the db is OpenEdge...
  2. P

    Queries and Can-Find

    Hi, Here's PROGRESS solution ID. P124992 http://progress.atgnow.com/esprogress/jsp/AnswerControls.jsp?directSolutionLink=1&tabs=true&docPropValue=p124992
  3. P

    doubt Tabstrip

    Hi, I'm was confused with your first post So at first I though that you were having problems with the statement as such and that's why I ask you about the initialization of the control, but now it appears that what you are trying to achieve is to prevent the user for getting confuse if they...
  4. P

    Winword process (4gl 9.1d)

    Hi, I think it has to do with the fact that as far as I know outlook uses MS-Word as the default editor, so maybe the winword process you are seeing in the task manager really belongs to the outlook session and not to the Automation Object you created in PROGRESS.
  5. P

    doubt Tabstrip

    Hi, Here's some questions, 1) What's the error you get? 2) To what object chventanas refers to? 3) How are you initializing the control? The code you post is ok, assuming chventanas is referring to the TabStrip control handle and had been properly initialized. So if you get an error that...
  6. P

    Winword process (4gl 9.1d)

    Hi, You have to release the object after you are done with it. RELEASE OBJECT chWordApplication NO-ERROR. chWordApplication = ?.
  7. P

    Connectig with JDBC drivers

    Hi. first the driver name is missing a "r" at the end. it should be: com.progress.sql.jdbc.JdbcProgressDriver also try adding the progress.jar to the CLASSPATH, SET PATH=%PATH%;%DLC%\bin SET CLASSPATH=%CLASSPATH%;%DLC%\java\progress.jar;%DLC%\java\jdbc.jar
  8. P

    Excel Chart - HTML/Publish

    Hi. I think you can try something like this: def var chPublishObjects as handle. chPublishObjects = vchWorkBook:PublishObjects:ADD(xlSourceChart,"C:\web1.htm","Sheet1","Chart1",xlHtmlStatic,"xx",""). chPublishObjects:Publish = True. or chPublishObjects:Publish.
  9. P

    Performing Select and delete on User Tables

    Hi. SQL access to PROGRESS data is deny by default, unless you get connected to the DB using a DBA login. To check DBA / Resource privileges in use, execute the following SQL statement in the SQL explorer: SELECT * FROM sysprogress.sysdbauth; the above SQL statement will show you which...
  10. P

    -------Help for accum---------!!!

    Hi. the correct syntax is. display accum total by op_wo_nbr std_run.
  11. P

    Read Uncommitted

    Hi. Try using the numeric value insted. Connection conn = DriverManager.getConnection"jdbc:jdbcprogress:T:host:port:db","login", "password"); conn.setTransactionIsolation(0);
  12. P

    OpenText in Excel for a semicolon-separated txt-file

    Hi. Try defining the DataType as xlDelimited (numeric value 1). chExcel:Workbooks:OpenText ( /*<anytype>-FILENAME */ cFileName , /*<anytype>-Origin */ , /*<anytype>-StartRow */ , /*<anytype>-DataType xlDelimited */ , 1 /*<anytype>-TextQualifier */ , /*<anytype>-ConsecutiveDelimiter*/ TRUE...
  13. P

    Dynamic COLUMN-LABEL values

    Hi, Will. you can try using diferent settings for the field format and for the column-label attribute initial value like this, def var L-array as decimal format "999,999.99" extent 5. form L-array column-label " " /* insert here 6 empty spaces in place of the label text */ with frame x...
  14. P

    Get Data from serial port

    Hi, pima. Take a look at this code. http://www.progresstalk.com/showthread.php?t=279&highlight=OpenCommunications
  15. P

    Dynamic COLUMN-LABEL values

    Hi, Ivor. Yes, that was the right fix. Sorry for this late reply.
Top