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



Users browsing this thread: 5 Guest(s)