Search results

  1. Marco Mendoza

    How To Get Screen Value Of A Pervious Field In The Next Field In A Form?

    Yes, is there a way, more than 1 way. Check EDITING phrase and FRAME-FIELD, READKEY AND "APPLY LASTKEY". or ON ENTRY trigger
  2. Marco Mendoza

    Cim File For Character Field

    Multy Entry is logical value, yes or no is expected. This should work: 1 - - "960" "tankfarm" "pn09319-001" '12"b"123'
  3. Marco Mendoza

    Question Recid

    His "for each" have the "no-lock" ...
  4. Marco Mendoza

    Question Recid

    Does the syntax will read 2 record IDs(vrecid) in the query above? NO. RECID was unique value; it depends your progress version...
  5. Marco Mendoza

    Question Openedge Math Functions

    If you don't need too much precision, here a very simple aproximation to atan2 (not valdiated for me) Atan2 Faster Approximation r = atan2 (y,x) in radians ------------- a := min (|x|, |y|) / max (|x|, |y|) s := a * a r := ((-0.0464964749 * s + 0.15931422) * s - 0.327622764) * s * a + a if...
  6. Marco Mendoza

    Question The Character Encoding Of The Html Document Was Not Declared.

    How about setting the form charset? HTML DOM Form acceptCharset Property
  7. Marco Mendoza

    Question HTM to EXCEL or CSV

    Progress KB - Dynamically Load a Table to EXCEL & Format Column Widths
  8. Marco Mendoza

    Question How To Disp Temp Table Rows In Html (front End)

    <table> <!--WSS FOR EACH yourtemptable NO-LOCK: {&OUT} '<tr><td>' yourtemptable.yourfield '</tr></td>'. END. --> </table>
  9. Marco Mendoza

    Error Issue Using Form With Enctype="multipart/form-data"

    OE 10.1C IIS 6.0 Tested on IE11 and FF 41.0.1 I have the follow webspeed program, called upload2.html: -start code------- <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Hi</title> </head> <body> <!--WSS DEF VAR thename AS CHAR NO-UNDO. thename...
Back
Top