Search results

  1. mrobles

    Database Disconnection

    Thanks a lot Rob.
  2. mrobles

    Database Disconnection

    Hi. We have: - Progress 11.5. - Windows server 2012 Standard - 5 databases. - Systems made Progress client/server working since 17 years (with upgrades). Since the last week users are disconnected from databases after 2 (+-) hours of connection. I suppose, the server administrator is doing...
  3. mrobles

    Field Too Large For A Data Item

    May be you are adding characters to the field in a cicle till it crashes.
  4. mrobles

    Excel Sheet Counting

    DEF VAR i AS INT. DEF VAR actual AS INT. DEF VAR nombre as CHAR. I = chExcelApplication:Sheets:COUNT. DO actual = 1 to i. chWorkSheet = chExcelApplication:Sheets:ITEM(cual) NO-ERROR. nombre = TRIM(chExcelApplication:Sheets:Item(actual):NAME). END.
  5. mrobles

    Question Log

    Thanks a lot Tom.
  6. mrobles

    Question Log

    Thanks a lot !!!
  7. mrobles

    Question Log

    It's ok. is the .lic file, now how can I interpret it?
  8. mrobles

    Question Log

    Hi All. I'm here again with a question. What is the name of the file containing the number of users accessing Progress? Thanks a lot. Mario Robles
  9. mrobles

    Promsgs

    Hi and thanks to everyone. Then, many times progress can not save in the registry, although I execute the install procedure as administrator. I searched promsgs in the registry and not found any entry. Normally I use an .ini file, but I have that "pebble in the shoe" from many time ago.
  10. mrobles

    Promsgs

    Hi. Why Progress not puts the environment variables at the time of installation? This happened in a) Windows 8 and Progress 11.1 b) Windows 10 and Progress 11.5 The variables are DLC and PROMSGS, Also not puts the DLC to the path variable Thanks a lot.
  11. mrobles

    Max Browse Columns

    Hi. A customer needs more tan 100 columns in a browse. We want to know, which is the maximum number of columns in a browse? If the answer is 128, is there a way to increase this number? Thank a lot.
  12. mrobles

    Help needed on COM-Handle.

    Siempre es agradable compartir ...
  13. mrobles

    Excel Copy and Paste losing Merged Cells

    Hi. You are using 2 sheets. I use something like this to walk between them chWorkSheet:Range('A1'):Value = 'HOLA'. chWorkSheet:Range('J10'):Value = 'ADIOS'. chWorksheet:range('A1:J10'):SELECT. chExcelApplication:SELECTION:COPY. chWorksheet:range('A1'):SELECT...
  14. mrobles

    Help: Search Calling Programs of Include Files

    I agree Stefan MRobles
  15. mrobles

    Help: Search Calling Programs of Include Files

    Hi. I made a little documentation system and the way i used is: 1.- Read the directory(s) where the programs resides 2.- Compile .W and .P programs with xref. COMPILE VALUE(prog1) SAVE XREF VALUE(txt_file) 3.- Analize each line of the txt_file with progress. If the line contains 'include'...
  16. mrobles

    Underline a word in a report

    Hi You can use different ESC sequences, but it is depending on the printer. As RZR writes you can underline data but it ocuppy 1 row
  17. mrobles

    Buffer-Copy

    This is due the scope and logic. If your code is like this ... CREATE X. FOR EACH Y. BUFFER-COPY Y TO X. END. then you only create a record, but If your code is like this ... FOR EACH Y. CREATE X. BUFFER-COPY Y TO X. END. then you create a X record and is filled in each iteration.
  18. mrobles

    COM objects

    I use this include for excel This is an example (change the face by double period) {excel.i}. DEF VAR i AS INT. DEF VAR rango AS CHAR. RUN abre_excel. RUN pinta ('Excel.i Use',2,2). t_ren = 5. /* t_ren is defined in excel.i */ DO i = 1 to 20. t_ren = t_ren + 1. RUN pinta(STRING(i)...
  19. mrobles

    convert .rtf to .htm

    This works with word 10 DEF VAR WORD AS COM-HANDLE. CREATE "Word.Application" WORD NO-ERROR. WORD:VISIBLE = TRUE. WORD:documents:OPEN("your_file.rtf"). WORD:activedocument:saveas("x1.htm",10). RELEASE OBJECT WORD
Top