Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Issue saving across VPN
#8
@dano Here's something to try:

1) GO into source/ide/ide_methods.bas and navigate down to SUB idesave.
2) Replace that sub with this one:
Code: (Select All)
SUB idesave (f$)
    ideerror = 6
    OPEN f$ FOR OUTPUT AS #151: close #151
    OPEN f$ FOR BINARY AS #151
    ideerror = 1
    FOR i = 1 TO iden
        a$ = idegetline(i)
        if INSTR(_OS$, "WIN") then
           outfile$ = outfile$ + a$ + chr$(13) + CHR$(10)
         else
           oufile$ = outfile$ + a$ +chr$(10)
        end if
    NEXT
    PUT #151, 1, outfile$
    CLOSE #151
    IdeSaveBookmarks f$
    ideunsaved = 0
END SUB

3) Save that and then navigate up to the /source folder and recompile QB64pe.BAS. (Make certain the "Export EXE to Source Folder" option is **DISABLED***.)
4) This should now make you a QB64pe(2).exe file, which you can run and see if it corrects the issue for you.

If the fix works, I'll push it into the repo later, and we'll start doing binary file writes with the next release. If it doesn't help, then you know the issue lies somewhere else and you'll just have to keep digging to see what might be affecting the performance for you.
Reply


Messages In This Thread
Issue saving across VPN - by dano - 11-07-2023, 03:08 AM
RE: Issue saving across VPN - by TerryRitchie - 11-07-2023, 03:20 AM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 03:43 AM
RE: Issue saving across VPN - by dano - 11-07-2023, 04:20 AM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 04:48 AM
RE: Issue saving across VPN - by SpriggsySpriggs - 11-07-2023, 01:40 PM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 03:17 PM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 03:39 PM
RE: Issue saving across VPN - by SpriggsySpriggs - 11-07-2023, 05:08 PM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 05:50 PM
RE: Issue saving across VPN - by dano - 11-07-2023, 06:29 PM
RE: Issue saving across VPN - by TerryRitchie - 11-07-2023, 06:38 PM
RE: Issue saving across VPN - by SpriggsySpriggs - 11-07-2023, 07:37 PM
RE: Issue saving across VPN - by SMcNeill - 11-07-2023, 07:45 PM
RE: Issue saving across VPN - by dano - 11-08-2023, 03:44 PM
RE: Issue saving across VPN - by SpriggsySpriggs - 11-07-2023, 08:24 PM
RE: Issue saving across VPN - by SMcNeill - 11-08-2023, 01:53 AM
RE: Issue saving across VPN - by SMcNeill - 11-17-2023, 03:24 PM
RE: Issue saving across VPN - by dano - 11-17-2023, 07:11 PM
RE: Issue saving across VPN - by SMcNeill - 11-17-2023, 08:13 PM
RE: Issue saving across VPN - by dano - 11-30-2023, 03:50 AM
RE: Issue saving across VPN - by SMcNeill - 11-30-2023, 04:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Linux Lubuntu INKEY$ issue TempodiBasic 7 648 09-09-2025, 02:53 PM
Last Post: hsiangch_ong
  CrowdStrike issue also with Linux bert22306 9 1,940 07-24-2024, 08:14 PM
Last Post: Pete
  Issue differentiating between Ctrl-DEL and Ctrl-Backspace dano 4 982 05-31-2024, 04:29 PM
Last Post: SMcNeill
  Is this an issue? bobkreid 11 2,662 07-04-2022, 03:48 AM
Last Post: DSMan195276
  Another issue: Changing one variable instantly changes the value of another variable hanness 14 2,458 06-17-2022, 05:20 PM
Last Post: bplus

Forum Jump:


Users browsing this thread: