Posts by regissoares • 21 points
2 posts
-
1
votes2
answers86
viewsA: How to delete unreachable files from windows TEMPORARY folder with a C#application
As you want to skip the file and continue, put the instruction inside a Try.. catch block: try { fi.Delete(); } catch { }
c#answered regissoares 21 -
0
votes1
answer75
viewsQ: Problem capturing event scroll in iframe in iOS Safari browser
I’m having trouble handling the scroll event from an iframe using Javascript/jQuery in the iOS Safari browser. I was initially trying to catch the scroll event, but it doesn’t work. Searching, I saw…