Page 2 of 2
Re: XYPlorer crashed when I drag the mouse
Posted: 26 Feb 2012 07:01
by Twisten
Sounds like something that would only work if you're doing the debugging, seems to me the bug would have to be reproduceable before you can catch the exception.
Re: XYPlorer crashed when I drag the mouse
Posted: 27 Feb 2012 05:37
by shalongbus
admin wrote:shalongbus wrote:1. I tried to place the XYPlorer.exe to other folder, or directly into a root disk, there is still the same problem.
2. I downloaded and tried the latest version of 10.80.0316, the problem is still the same.
Since you are the only one having this problem a natural question would be: What could be different in your system from all other systems?
1. I changed the default "My Document" to a personal folder and there are some Chinese characters in the folder name.
2. I switched the mouse buttons on my machine.
3. I found XYPlorer enumerated the registry key "HKEY_CLASSES_ROOT\Drive\shellex\FolderExtensions" three times on my machine,
but only twice on a good machine, and the registry key structures of both machine are the same.
Re: XYPlorer crashed when I drag the mouse
Posted: 27 Feb 2012 11:03
by admin
shalongbus wrote:2. I switched the mouse buttons on my machine.
This one sounds interesting. Switched how?
Re: XYPlorer crashed when I drag the mouse
Posted: 28 Feb 2012 01:32
by shalongbus
admin wrote:shalongbus wrote:2. I switched the mouse buttons on my machine.
This one sounds interesting. Switched how?
In the mouse options of control panel, I switched the left and right mouse button. After restoring the mouse buttons, the problem is still there. Can you provide me the V10.4~V10.7? I can tell you which version introduced this problem.
Re: XYPlorer crashed when I drag the mouse
Posted: 29 Feb 2012 05:43
by rocex
Well, I also encountered this problem, my OS is xp with sp3, and the latest patches, when the memory is 2G, there is no problem, and later increased to 4G, when I use the mouse to drag the file,"memory read and write errors", my xy version is 10.90.0.0,see below:

- 2012-02-29_123251.png (4.33 KiB) Viewed 1713 times
Re: XYPlorer crashed when I drag the mouse
Posted: 04 Mar 2012 18:26
by admin
Window title "hide shell extensions from the context menu" -- what is that?
Re: XYPlorer crashed when I drag the mouse
Posted: 05 Mar 2012 01:36
by shalongbus
Do not pay attention to it, it is random, each time is different.
Re: XYPlorer crashed when I drag the mouse
Posted: 05 Mar 2012 06:02
by Twisten
Doesn't seem random, looks like some OS enhancement program maybe you can post some of the other messages.
Re: XYPlorer crashed when I drag the mouse
Posted: 06 Mar 2012 05:50
by shalongbus
Can you provide the MouseDown/MouseMove related code to me ? I can assist you to debug.
Re: XYPlorer crashed when I drag the mouse
Posted: 06 Mar 2012 07:30
by shalongbus
The following code work well on my machine. I can successfully drag the file "c:\Boot.ini" to Explorer.
Does XY has any special code?
Code: Select all
Private Sub Text1_OLEStartDrag(Data As DataObject, AllowedEffects As Long)
Data.Clear
Data.SetData , vbCFFiles
Data.Files.Add "c:\boot.ini"
AllowedEffects = vbDropEffectCopy
End Sub