Recent content by Schreiber FooF

  1. S

    Lower/Upper case

    why not directly something like that: Dummy-str = CAPS(SUBSTR(Dummy-str, 1,1)) + LOWER(SUBSTR(Dummy-str,2)). ??
  2. S

    How to have a input box

    Sorry Forgot to answer : both version work well, just some problems linked to XP (windows size... ) but all Ok !! Thank you both!!:toast:
  3. S

    AppBuilder sys : "you are about to undo past previous save"

    Hello all ! I have a problem when editing a procedure in my program... AppBuider sops editing and say :"you are about to undo past previous save" yesNoCancel ... Clicking on Yes do nothing... Stoping/Starting Appbuilder do nothing... And I can edit my program by Procedure Editor ... I...
  4. S

    Excel text file opening.

    Hello !! ? I have many problems by opening a text file via COM to Excel. (I'm doing my first steps therein ... ) How may I write that in COM ? : ChDir "P:\test\analytique\cloture 200305\origine" Workbooks.OpenText Filename:= "P:\test\test.txt", Origin:=xlWindows _ , StartRow:=1...
  5. S

    How to have a input box

    How to have an input box I'm very ashamed to ask this question... I'm not keen on GUI programming in progress... I need the code to have a simple input box in Progress 9.1C Can someone give me a common way to have a "simple" input box : - returning a string - with parametrable text and...
  6. S

    problems to print boxes

    hmm ah yes !! Haha !! I have the a LAST ( i hope ) question .... can you send me a simple example of using it ... That would be "the sugar on top" .... Thank you !!
  7. S

    problems to print boxes

    Thanks for your answer ! Hmm ... this should be working on a unix system ... I think ... But I'm on a windows progress, and can't find the "lib/pclbox" file ... can you explain me how to make it work on a windows system, and send me the unix library to be sure to make it work on a unix...
  8. S

    problems to print boxes

    hmm ...thanks fer answering as fast, but... Can you explain me why the program I sent upper works when I start with the "0th" codepage and not when I start with 10th ?? (the one I want to use ... ) Thanks !!
  9. S

    problems to print boxes

    I'm using an HP-8100 and the problems are : - I have no printed chars between 127 and 159, I get only "_". - When I send "codepage change" Esc sequences , It seems not to be corectly interpreted : When I send a lot sequences it works ( ideal to find the good one ), when I just send the...
  10. S

    problems to print boxes

    Hi All ! I have some problems to print boxes on my HP-8100... I wanted to put boxes on a document, but there's no chars between 127 and 159. only "_"'s... I use -lng "French" -cpcase French -cpcoll Basic -cpinternal iso8859-1 -cpstream iso8859-1 options in my startup.pf How can...
  11. S

    Problem printing boxes

    Code page change ... doesn't change...? I decided to get off my problem by using a code page change... i used this program to search the page code that fits : def var ligne as char format "x(35)". def var i as integer. output through lpr "-Plaser". def var esc as char format "x(1)"...
  12. S

    Problem printing boxes

    Hello All ! I have some problems to print boxes on my HP-8100... I wanted to put boxes on a document, but there's no chars between 127 and 159. only "_"'s... I use -lng "French" -cpcase French -cpcoll Basic -cpinternal iso8859-1 -cpstream iso8859-1 options in my startup.pf How...
Top