Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: AhmetSinav
  • Order by date
  1. AhmetSinav

    Using ChartFx OCX in Progress

    OpenEdge 10.1.B Hi All, How can i send my data to chartfx? Best Regards.
  2. AhmetSinav

    XML Parsing

    openedge 9.x and 10.x supports xml but 8.x not support it. you can make it with put stream. if you can solve xml documents structure you can make like following. for each mytable: put stream data "<row field1=" field1 "</row>". end.
  3. AhmetSinav

    Configuring Microsoft Word's document structure

    Hi, How can i configure Microsoft word's document structure (Rules) while i exporting my data to word application. Best Regards.
  4. AhmetSinav

    Changing Control-Box property in runtime

    we can make it via following code. {windows.i} FUNCTION DisableWindowClose RETURNS LOGICAL ( /* parameter-definitions */ ) : /*--------------------------------------- Purpose: Notes: -----------------------------------------*/ DEFINE VARIABLE hSysMenu AS INTEGER NO-UNDO. DEFINE VARIABLE hParent...
  5. AhmetSinav

    Changing Control-Box property in runtime

    Hi, How can i change the c-win control-box property to false in runtime. Best Regards.
  6. AhmetSinav

    Changing Font Size, Type and etc. while printing the document

    Hi; Thanks for your answer. Can u send me an example about this? Best Regards.
  7. AhmetSinav

    Changing Font Size, Type and etc. while printing the document

    OpenEdge 10.1B. Hi, i can change font via the following code, PROCEDURE runPrintTest: OUTPUT TO printer. MESSAGE "This is a test". OUTPUT CLOSE. END PROCEDURE. RUN runPrintTest. LOAD "SOFTWARE\PSC\PROGRESS\10.1B\" BASE-KEY "HKEY_CURRENT_USER". /* Set PrinterFont */ PUT-KEY-VALUE...
  8. AhmetSinav

    insert an item in to selection-list which is list-item-pairs

    hi, ok i understood. one of our datas must be an integer. so i made my program with browser. Best Regards.
  9. AhmetSinav

    insert an item in to selection-list which is list-item-pairs

    hi, can we insert char items in stringlist. for exp. my items. 1,a 2,b 3,c insert item 4,d can we make this? Best Regards.
  10. AhmetSinav

    insert an item in to selection-list which is list-item-pairs

    Open Edge 10.1A i can use insert command with selection-list whiich attribute is a list-items. but i can't use insert command when i set the list-item-pairs attribute to selection-list. my items 1,1 2,2 3,3 my insert item 4,4 i want to insert 4,4 item between 2,2 and 3,3. Best Regards.
  11. AhmetSinav

    Focusing Button

    Hi all; apply "entry" btn-mt. is better then the wait-for choose of btn-ext focus btn-mt. code. because of the second code is sometimes give an error.
  12. AhmetSinav

    getting fields in the table

    hi; field properties for example char X(15) integer logical....etc. _File table include only field names but i want to take field properties like my example. i think i explain my problem about this topic. Best Regards.
  13. AhmetSinav

    getting fields in the table

    hi Thanks but i know it. i want to make it manuallay in runtime. Regards.
  14. AhmetSinav

    getting fields in the table

    how can i get the field properties from specified tables?
  15. AhmetSinav

    getting fields in the table

    i found it. FOR EACH _FILE NO-LOCK: SELECT-1:ADD-LAST(_FILE._FILE-NAME). END. this code is insert the fields which table we connect.
  16. AhmetSinav

    getting fields in the table

    Hi; how can i get the field list from specifed table. Best Regards.
  17. AhmetSinav

    inserting and removing items from/to selection-list

    For insert item SELECT-1:ADD-LAST(SELECT-2:SCREEN-VALUE). we can use first phrase about last. for remove item SELECT-2:DELETE(SELECT-2:SCREEN-VALUE).

Part and Inventory Search

Back
Top