explorer

jQuery/Ajax content not appearing/loading in Explorer

不羁岁月 提交于 2019-12-13 18:55:24
问题 I have been working on a template using almost all jquery/javascript. Mostly I am learning jquery/javascript. My site is at http://chainery.comoj.com. The site works well in FF and Safari but alas, IE doesn't load the first page. The ajax indicator shows up and that is it. On the first page it loads data from an xml file and displays it. I thought I had stayed away from stuff that was sketchy in IE but I missed something. The 'product' pages do load all of the content correctly but on the

Closing a Specific Instance of Windows Explorer

依然范特西╮ 提交于 2019-12-13 14:27:57
问题 I'm having a problem trying to WM_CLOSE a Window Explorer process in that sending that message will then try to close the Windows Shell explorer process and prompt the user to shut down windows. This is not the intended behaviour and I was wondering how I could work around it? How can I close individual explorer windows gracefully, without shutting down the whole PC at the same time? The goal is to have the same behaviour as if the user had clicked on the X button themselves. EDIT: I've found

How to customize the right-pane of windows explorer using Shell extensions? [duplicate]

心已入冬 提交于 2019-12-13 09:56:22
问题 This question already has an answer here : How to extend Windows Explorer with a custom panel (1 answer) Closed 5 years ago . Is there a way to create a custom right (or bottom) pane attached to a window in explorer as in the image below? I was already able to add a button as you can check in the picture. I already searched but didn't find any example for panels. Can anyone give me some hints? thanks 回答1: Is possible using Explorer Bar. http://msdn.microsoft.com/en-us/library/windows/desktop

What is the Programdata/Application Data folder?

北战南征 提交于 2019-12-13 02:13:21
问题 So I am writing an application that iterates through a specified directory tree and I was experimenting with the exception that handles permissions for folder access and there was one folder I came across that the compiler returned that had the directory of C:\ProgramData\Application Data Does anyone know what this folder is? It doesn't seem to exist within Windows Explorer. Like, the folder isn't there. It's not hidden. It just isn't there. I was able to get inside the folder using an

桌面应用图标或任务栏应用图标变成空白图标----(解决办法)

一个人想着一个人 提交于 2019-12-12 21:07:59
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 问题示例: 解决办法 : 新建记事本将以下代码复制进去 将文件后缀名改为 .bat 类型 然后双击文件即可, 亲测有效 taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%/AppData/Local/IconCache.db" del /f "%userprofile%/AppData/Local/IconCache.db" attrib /s /d -h -s -r "%userprofile%/AppData/Local/Microsoft/Windows/Explorer/*" del /f "%userprofile%/AppData/Local/Microsoft/Windows/Explorer/thumbcache_32.db" del /f "%userprofile%/AppData/Local/Microsoft/Windows/Explorer/thumbcache_96.db" del /f "%userprofile%/AppData/Local/Microsoft/Windows/Explorer/thumbcache_102.db" del /f "%userprofile%

Which APIs are used by explorer.exe in Windows 7 to list files?

强颜欢笑 提交于 2019-12-12 12:37:00
问题 I am coding a rootkit-like program which hooks functions used by Windows to list files in a folder. I know that in Windows XP explorer.exe uses FindFirstFileW / FindNextFileW each time we open/update directory, to list files that are contained in that folder. Different story for Windows 7, and I can't manage to understand which functions are used here to do the job. 回答1: In windows 7 windows explorer use IShellFolder for every browse of specific directory it call to EnumObjects and from that

Get path that file explorer is displaying using its window handle

旧街凉风 提交于 2019-12-12 10:11:03
问题 I've succesfully obtained the handle to the current File Explorer window using 'Get handle to active window Dim hWnd As IntPtr = GetForegroundWindow() I have not been succesful finding the object that contains the path the aforementioned window is displaying. This path is supposed to reside in the process of the window, obtained too by Dim ProcessID As UInt32 = Nothing Dim ptr As UInt32 = GetWindowThreadProcessId(hWnd, ProcessID) Dim Proc As Process = Process.GetProcessById(ProcessID) However

Getting the results of an explorer shell search in a program that was launched from a search window

那年仲夏 提交于 2019-12-12 06:03:47
问题 Is there a way to implement useful 'open next/previous file in folder' functionality when a program is launched as a result of the user opening a file found using an Explorer search? For example, an application is associated with *.jpg. The user searches for foo*.jpg in Explorer and opens foobar1.jpg. The application launches. When the user uses the application's 'next file in folder' command, the application opens the next file returned by the search, not the next file in the same folder as

IShellBrowser::BrowseObject isn't called

我是研究僧i 提交于 2019-12-12 05:35:40
问题 I'm trying to implement explorer-like frame in my application. This must work under WinXP too. I've implemented IShellBrowser in my window-class + i've implemented IUnknown interface. My class atributs: IShellViewPtr m_shView; HWND m_wndHolder; CListViewCtrl view; Here is the code of WM_CREATE handler m_hWndClient = view.Create(m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, WS_EX_CLIENTEDGE); // view isn't null after it CMessageLoop* pLoop = _Module

from VBA, run a search in explorer within a designated folder

試著忘記壹切 提交于 2019-12-12 03:03:35
问题 I'm relatively new to VBA and working on something for work that will launch a given folder in explorer, run a search in explorer for files in that folder whose names contain a certain string, and show me the results in explorer. I've been using shell, and was able to individually open a specific folder, and run a search...but I can't figure out how to do both tasks simultaneously. Here's some different things I've tried: nothing has worked. Sub search_Files() Dim folderName As String