You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
lazy loading
About this tag
Lazy loading is a design pattern that defers initialization or data retrieval until the moment it is needed. On WindowsForum.com, discussions cover its use in software development, such as in Svelte JavaScript enhancements for progressive web apps and in Windows API programming with EnumPrinters for tree node population. The tag includes practical troubleshooting, like handling error code 87 in Windows Vista when implementing lazy loading for printer enumeration. These threads explore performance optimization and compatibility issues across Windows platforms, making the tag relevant for developers working on efficient data loading and UI responsiveness in Windows environments.
Editor’s note: This is the fifth in a series of posts from the team that built the 10k Apart contest site, exploring the process of building for interoperability, accessibility, and progressive enhancement in less than 10kB.
In the previous post in this series, I discussed my approach to CSS...
10k apart
accessibility
ajax
cache
conditional comments
dom manipulation
enhancements
form handling
html5
javascript
lazyloading
performance
progressive enhancement
responsive design
service workers
svg
task runners
user experience
web development
web standards
Hello, my application has a feature that shows printers details as tree node and I use EnumPrinters API to fill nodes of this tree. i.e., the provider name, domain names and printer names etc. We have used Lazy loading concept in this tree formation. EnumPrinters API is called for any node level...
api
app development
coding
console application
debugging
enumprinters
error
error handling
interop
lazyloading
memory management
platform invoke
printer
printer enumeration
sample code
windows api
windows development
windows vista