explorer

How can I browse the classes and methods of an ActiveX DLL?

浪子不回头ぞ 提交于 2019-12-03 12:12:29
问题 Basically, what I want to is be able to explore an ActiveX DLL. I normally fire up VB 6, add the DLL to the "References" of the project, and use Object Explorer. However, in this particular machine I can't install VB / VS. I'm sure there's a tool out there that does this. Does anyone know of one? Thanks 回答1: Is it possible to download the component from that machine and examine it locally in Visual Studio? (That'd be my first suggestion.) (And BTW, the .NET versions of Visual Studio also

Using Resource Hacker for changing the icon after the build

半腔热情 提交于 2019-12-03 12:10:29
问题 This question is written in several places (like here and here). In the second question there is a comment that says to use ResHacker.exe -addoverwrite "Project.exe", "Project.exe", "ProgramIcon.ico", ICONGROUP, MAINICON, 0 I also tried using -modify instead of -addoverwrite ResHacker.exe -modify "Project.exe", "Project.exe", "ProgramIcon.ico", ICONGROUP, MAINICON, 0 but the result is the same. The icon is changed: if I right click on the exe file and check the properties I see that the icon

Where does windows explorer store file meta data?

落爺英雄遲暮 提交于 2019-12-03 12:04:48
In Windows 7 I can add meta data to files for example title, rating and so on. Where is this meta data stored exactly? For NTFS they may use alternate data streams but I this meta data also happen to work in FAT32, so how ho they do it? Is there an API to make use of this feature? Starting with Windows Vista, metadata is now stored inside the file itself. Windows stores this in COM Structured storage . The implementation is either in the file itself (Office docs support this, or any file format that supports structured storage), or in NTFS itself. The API is available here: Structured Storage

MQ Explorer - Could not load SWT library

匿名 (未验证) 提交于 2019-12-03 09:14:57
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Installed IBM MQ 8.0.0.4 developer instance in Linux VM (Centos). When launching MQ explorer, using command strmqcfg (getting the following error). !ENTRY org.eclipse.osgi 4 0 2016-01-14 13:33:43.226 !MESSAGE Application error !STACK 1 java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /home/mqm/.eclipse/com.ibm.mq.explorer.ui.rcp.RcpApplication_8.0.0.201510171407_1624510073_linux_gtk_x86_64/configuration/org.eclipse.osgi/bundles/500/1/.cp/libswt-pi-gtk-4333.so (libgtk-x11-2.0.so.0: cannot open shared object file: No such

How to extend windows explorer functionality?

安稳与你 提交于 2019-12-03 09:09:43
How would I go about extending the functionality of windows explorer in XP? Is there some way whereby I could create a "plugin" of some sorts that could hook into explore.exe to add additional folder browsing functionality? What language could I use to achieve this? This is an expansion of a question I asked here. There's a great series of tutorials on CodeProject which might help you. C++ is required there. There is an old O'reilly book called 'Visual Basic Shell Programming' that explains the API's for this in some detail. While taken from a VB6-centric point of view, the API's are all

How to write one IE conditional comment to target all IE versions at once?

匿名 (未验证) 提交于 2019-12-03 09:06:55
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to use a JavaScript only for all IE version 6,7 and 8. 回答1: Nested conditions ( WRONG ): <!--[if lte IE 8]> <!--[if gte IE 6]> <!-- your stuff here --> <![endif]--> <![endif]--> EDIT: As Martha highlighted, nested condition don't work, use " & ": <!--[if (lte IE 8) & (gte IE 6)]> <!-- your stuff here --> <![endif]--> Other examples from MSDN : <!--[if IE]><p>You are using Internet Explorer.</p><![endif]--> <![if !IE]><p>You are not using Internet Explorer.</p><![endif]> <!--[if IE 7]><p>Welcome to Internet Explorer 7!</p><![endif]-->

Open a folder and highlight a particular file with WPF

霸气de小男生 提交于 2019-12-03 08:52:20
问题 Is there a way to launch an Explorer window and highlight a file in that folder with WPF ? I've already tried the following : Process ExplorerWindowProcess = new Process(); ExplorerWindowProcess.StartInfo.FileName = "explorer.exe"; ExplorerWindowProcess.StartInfo.Arguments = ConfigFile.File.FullName; ExplorerWindowProcess.Start(); ... but that opens the file (in my case an XML file) with the default application in Windows Explorer, which I very much don't want. I know that the Aptana tools

Problem with Internet Explorer Padding

匿名 (未验证) 提交于 2019-12-03 08:44:33
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I can't get IE padding around my <a> tags to work correctly. This only works in Firefox, Safari, Chrome, but not IE - please help! My simplified HTML code looks like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns = "http://www.w3.org/1999/xhtml" > <div id = "mydiv" > <table> <tr> <td> <a style = " padding : 20px ; background : red ; " href = "#" > Some link </a> </td> </tr> </table> </div> </html> Firefox Result (which is what I want): alt text http:/

Windows CDROM Eject

匿名 (未验证) 提交于 2019-12-03 08:41:19
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Does anyone know a method to programmatically close the CD tray on Windows 2000 or higher? Open CD tray exists, but I can't seem to make it close especially under W2k. I am especially looking for a method to do this from a batch file, if possible, but API calls would be OK. 回答1: Here is an easy way using the Win32 API: [DllImport("winmm.dll", EntryPoint = "mciSendStringA", CharSet = CharSet.Ansi)] protected static extern int mciSendString(string lpstrCommand,StringBuilder lpstrReturnString,int uReturnLength,IntPtr hwndCallback); public void

Internet Explorer Extensions

匿名 (未验证) 提交于 2019-12-03 08:28:06
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I created an IE extension from this source: How to get started with developing Internet Explorer extensions? And it work great. But i want to change int IOleCommandTarget.Exec(IntPtr pguidCmdGroup, uint nCmdID, uint nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut) { var form = new HighlighterOptionsForm(); form.InputText = TextToHighlight; if (form.ShowDialog() != DialogResult.Cancel) { TextToHighlight = form.InputText; SaveOptions(); } return 0; } to this: int IOleCommandTarget.Exec(IntPtr pguidCmdGroup, uint nCmdID, uint nCmdexecopt, IntPtr pvaIn