
jumper
MemberContent Type
Profiles
Forums
Events
Everything posted by jumper
-
360 Extreme Explorer Modified Version
jumper replied to Humming Owl's topic in Browsers working on Older NT-Family OSes
Except when it still works....- 2,340 replies
-
2
-
It's probably not in the source code, but inserted by the compiler for try-except blocks.
-
MSFN forum editor - Inserting of certain links impossible
jumper replied to AstroSkipper's topic in Site & Forum Issues
</pre><li> In code box? </li> <li> line Hmm. Definitely not what I entered.... Edit: And garbled upon edit. The inline editor has never been as good as the old full-featured editor that opened full-window. -
Try: Msvcr80.dll V8.00.50727.762 Mozcrt19.dll V8.00.0000 These load for me in ProcWin on 98fe.
-
Please add "SE" to the topic title. Without it, first edition is implied.
-
Perhaps off-screen compositing is using a YUV color space or other compressed bitmap to reduce memory consumption.
-
Posting test: string boot .ini causes HTTP 403 forbidden error
jumper replied to jaclaz's topic in Site & Forum Issues
boo+.ini ? boot.ini (dot is in italics) -
IE 5.01 or 5.5 For 98fe or 98se?
-
KernelEx with ProgramData folder and User Profiles?
jumper replied to awkduck's topic in Windows 9x/ME
The combination of things you want might not be possible. So install IE5.5, test, then try "removing" it and testing again. -
KernelEx with ProgramData folder and User Profiles?
jumper replied to awkduck's topic in Windows 9x/ME
Don't extract, install! You need other supporting files as well. -
Dr Watson for system snapshots with versions and descriptions of drivers. System File Checker for detecting file changes. Both available from the Tools menu in System Information, or directly from %WinDir%. Revert system to last working. Take snapshot with DrWatson and have SFC scan and update. Try installing USP2.1, then USP3.0beta. Take new snapshots and have SFC report changes.
-
The logs look correct. I'll check out the garbled text.
-
KernelEx 2022 (Kex22) Test Versions (4.22.26.2)
jumper replied to jumper's topic in Windows 9x Member Projects
Very good. Then these should also work: CryptEnumProvidersW=>CRYPT32:CryptEnumProvidersU CryptSetProviderW=>CRYPT32:CryptSetProviderU CryptSignHashW=>CRYPT32:CryptSignHashU CryptVerifySignatureW=>CRYPT32:CryptVerifySignatureU -
Try the "Desktop... -Position" page. (Down two in left-side menu.)
-
KernelEx with ProgramData folder and User Profiles?
jumper replied to awkduck's topic in Windows 9x/ME
I'm also on Win98fe. IE is 4.0. Shlwapi.dll is part of IE. Win98se has IE 5.0, ME has 5.5. Best way to update Shlwapi is to update IE to 5.5. (IE 6.0 sometimes causes Explorer hangs.) -
Is W2k detecting it via P-n--p and correctly reporting the make and model? If not, you might need a create a custom driver for it.
-
Analog cable? Use the auto-resize button on the monitor. Check the advanced display properties for H and V synch options.as well as size.
-
A stub for GetGlyphIndices{A|W} should take five parameters and return GDI_ERROR. A small, full version that calls Usp10:ScriptGetCMap is in KernelEx:UberGDI.c.
- 46 replies
-
- Firefox
- Windows 9x
-
(and 3 more)
Tagged with:
-
Seeking Bluetooth 3.0 (UD-300M) USB Drivers for Windows 98SE/ME
jumper replied to FantasyAcquiesce's topic in Windows 9x/ME
Image link is dead already. -
In Display Properties>Settings>Advanced>Performance, try reducing the Graphics Hardware Acceleration level to correct problems with the mouse pointer. Also try different color depths and resolutions.
-
Excellent read. Kernelex 4.5.2 only fixed the delay; the sqlite3 write problem still exists. LockFile in 9x works differently than in NT, so can't be used directly to implement LockFileEx and also needs to be fixed itself. Sqlite3 uses file locking to maintain database integrity on multithreaded, multi-core systems. Because 9x doesn't support multiple cpus/cores/hyperthreads, the simplest solution might be to replace the *LockFileEx failure stubs MS provided in Kernel32.dll with success stubs: LockFileEx = o6 UnLockFileEx = o5 Also for NT modes: LockFile = o5 UnLockFile = o5 These will work as NT expects with FileMapping while faking all flags and overlapped I/O. Create a new compatibility mode in Core.ini by cloning XP3 or Vista. Use these stub definitions in a new copy of Kexstubs and add it to Contents. Use this new test mode for mozsqlite3.dll or sqlite3.dll in Firefox going back to 3.6.
-
Can someone with this working try clearing their logs, then refreshing a webpage or adding it to Bookmarks? The new log entries might reveal what API sqlite is having trouble with when trying to update its database files.