• memory low

    From aurora baccio@21:1/5 to All on Sun Sep 12 03:10:38 2021
    Good morning,
    since a few days in a medical record application appears the error code 11 [memory low].
    description : dynamic memory low
    callstack: strtrani[line 11]
    folderprint_mask:buttonclick(line 385)
    the line in question should print the name of the base doctor
    it happens occasionally when you press the print button, but it is an error i cannot reconstruct on my pc.
    can you clarify what it is ?
    thanks
    Aurora Baccio

    Translated with www.DeepL.com/Translator (free version)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Phil McGuinness@21:1/5 to All on Sun Sep 12 04:36:08 2021
    Aurora

    SetMaxDynSize(0x8000000) // Changed 22/05/2021 .. only thing worked large data converter
    DynSize(512)

    I would suggest you use the memory configuration. I had crazy errors ,random is a big app doing a lot of data conversion.
    Would run for 5 or 6 or 10 hours and crash.

    Found the above fixed it and now in every app I have.

    StrTran(c, cSearch, cReplace )

    I imagine using memory under a circumstance i does not have adequate memory... see above.

    Phil McGuinness




    Good morning,
    since a few days in a medical record application appears the error code 11 [memory low].
    description : dynamic memory low
    callstack: strtrani[line 11]
    folderprint_mask:buttonclick(line 385)
    the line in question should print the name of the base doctor
    it happens occasionally when you press the print button, but it is an error i cannot reconstruct on my pc.
    can you clarify what it is ?
    thanks
    Aurora Baccio

    Translated with www.DeepL.com/Translator (free version)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From dlzc@21:1/5 to aurora baccio on Mon Sep 13 08:18:57 2021
    Dear aurora baccio:

    On Sunday, September 12, 2021 at 3:10:40 AM UTC-7, aurora baccio wrote:
    Good morning,
    since a few days in a medical record application appears the error
    code 11 [memory low].
    description : dynamic memory low
    callstack: strtrani[line 11]
    folderprint_mask:buttonclick(line 385)

    Your code has a memory leak, forces the base VO code to produce a memory leak, or a Windows update has made your printer driver obsolete. You can either track down the leak (not an easy process, might check threads here), or have your code restart "
    overnight", so that it wipes the stack clear. Does this program run for a long time?

    You say that this started recently. Have there been source code changes? Have there been Windows updates?

    It may be your printer driver, since you say this happens when you go to print...
    https://howtofixwindows.com/fix-driver-overran-stack-buffer-blue-screen/
    ... not saying this applies EXACTLY here, but Windoze is famous for forcing us to buy new stuff.

    David A. Smith

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From aurora baccio@21:1/5 to All on Tue Sep 14 05:33:36 2021
    Il giorno lunedì 13 settembre 2021 alle 17:18:58 UTC+2 dlzc ha scritto:
    Dear aurora baccio:
    On Sunday, September 12, 2021 at 3:10:40 AM UTC-7, aurora baccio wrote:
    Good morning,
    since a few days in a medical record application appears the error
    code 11 [memory low].
    description : dynamic memory low
    callstack: strtrani[line 11]
    folderprint_mask:buttonclick(line 385)
    Your code has a memory leak, forces the base VO code to produce a memory leak, or a Windows update has made your printer driver obsolete. You can either track down the leak (not an easy process, might check threads here), or have your code restart "
    overnight", so that it wipes the stack clear. Does this program run for a long time?

    You say that this started recently. Have there been source code changes? Have there been Windows updates?

    It may be your printer driver, since you say this happens when you go to print...
    https://howtofixwindows.com/fix-driver-overran-stack-buffer-blue-screen/
    ... not saying this applies EXACTLY here, but Windoze is famous for forcing us to buy new stuff.

    David A. Smith

    Microsoft's updates, as you know, are monthly and ongoing.
    I can try reinstalling the printer driver, a Canon LBP252. However, it didn't create a blue screen, but the classic VO error with the error window.
    However I'm also following Phil McGuinnes' advice, and it seems to be working. I thank you anyway for your attention and today I'll look for updated drivers for the printer. No harm done.
    thanks
    Aurora Baccio

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From aurora baccio@21:1/5 to All on Tue Sep 14 05:25:37 2021
    Il giorno domenica 12 settembre 2021 alle 13:36:09 UTC+2 Phil McGuinness ha scritto:
    Aurora

    SetMaxDynSize(0x8000000) // Changed 22/05/2021 .. only thing worked large data converter
    DynSize(512)

    I would suggest you use the memory configuration. I had crazy errors ,random is a big app doing a lot of data conversion.
    Would run for 5 or 6 or 10 hours and crash.

    Found the above fixed it and now in every app I have.

    StrTran(c, cSearch, cReplace )

    I imagine using memory under a circumstance i does not have adequate memory... see above.

    Phil McGuinness
    Good morning,
    since a few days in a medical record application appears the error code 11 [memory low].
    description : dynamic memory low
    callstack: strtrani[line 11]
    folderprint_mask:buttonclick(line 385)
    the line in question should print the name of the base doctor
    it happens occasionally when you press the print button, but it is an error i cannot reconstruct on my pc.
    can you clarify what it is ?
    thanks
    Aurora Baccio

    Translated with www.DeepL.com/Translator (free version)


    Thank you,
    I applied your suggestion and everything seems to be working fine.
    Yesterday there were no hiccups of any kind despite being a 'normal' day (thirty patients) so a few hundred write prints.
    I'll let you know if the problem persists.
    However before this update the error would occur at least three times in a day. I have inserted what you suggested in 'Start' as you see below:

    self:Initialize()
    *DynSize(120)
    SetMaxDynSize(0x8000000) // Changed 22/05/2021 ... only thing worked the big data converter
    DynSize(512)

    Before I used 'DynSize(120)' and that's it.
    Aurora Baccio

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)