windows-7

Rendering Bugs IE11 in Windows 7

守給你的承諾、 提交于 2019-12-07 06:56:28
I have had several problems with rendering documents with images in IE11 and Windows 7. Swtiching browsers is not an option for me. If I try to use some openlayers tools, the IE11 freezes. If I put altRows=true in a JQGrid, scrolling won't work properly. I guess this is due to the different background images in each row of the grid. The problems disappear if: I use the same version of browser in windows 8 or higher. I use older versions of IE or if I use IE 11 in compatibility mode. I have tried to execute IE without add-ons, as well as disabling the rendering by gpu. Moreover, I have tried to

Replace() not working on question mark in image dimensions string from Shell

喜你入骨 提交于 2019-12-07 06:45:06
问题 I'm trying to get the height of a bitmap by using the Shell object in VBA. Here is the relevant portion of code ( bmp is a member of a custom class, and .Width is a property defined as an Integer.) Set objImg = objShell.Namespace(subfs(sf)).ParseName(bmp.Name) tmpDim = objShell.Namespace(subfs(sf)).GetDetailsOf(objImg, 162) tmpDim = Replace(tmpDim, "?", "") tmpDim = Replace(tmpDim, " pixels", "") bmp.Width = CInt(tmpDim) I'm getting a Type Mismatch error on the last line because the value of

How do I execute .jar java program on Windows 7 command line?

耗尽温柔 提交于 2019-12-07 06:27:21
问题 I have been looking things up online and could not find a good answer so far. I want to execute the YUI compressor tool to obfuscate/minify my javascript file. I do have JRE installed. It looks like the file association is fine as you can see here: C:\directory\tempFiles>assoc .jar .jar=jarfile I set up file association using ftype: C:\directory\tempFiles>ftype jarfile jarfile="C:\Program Files (x86)\Java\jre6\bin\javaw.exe" -jar "%1" %* The compressor tool is saved as a .jar file and is

How to make babun/cygwin home directory equal windows home directory?

让人想犯罪 __ 提交于 2019-12-07 05:53:45
问题 I just installed babun, a variant of Cygwin. I want the cygwin user home directory to equal my windows home directory. So, to be clear, I don't want to add the cygwin home to the C:\Users as a new user, I want it to be the same as my current windows home directory. Now, according to this post, How can I change my Cygwin home folder after installation?, there is a neat way to make the cygwin home directory point to your windows home directory. You open the file /etc/nsswitch.conf and make sure

UTF-8, PHP, Win7 - Is there a solution now to save UTF-8-filenames on Win 7 using php?

丶灬走出姿态 提交于 2019-12-07 05:19:44
问题 Update: Just to not make you reading through all: PHP starting with 7.1.0alpha2 supports UTF-8 filenames on Windows. (Thanks to Anatol-Belski!) Following some link chains on stackoverflow I found part of the answer: https://stackoverflow.com/a/10138133/3716796 by Umberto Salsi (and on the same question: https://stackoverflow.com/a/2950046/3716796 by Artefacto) In short: 'PHP communicate[s] with the underlying file system as a "non-Unicode aware program" ', and because of that all filenames

Problem launching a System.Diagnostics.Process under Windows 7

久未见 提交于 2019-12-07 05:15:18
问题 I’m trying to launch an application (Operating System, My Application and the application I want to launch are all 32 bits), from .NET 3.51. The code that launches the Process is used for other applications, but there’s one that is giving us a headache. If we “double click” on the application’s icon, it works as expected, meaning that it works fine as an application in the computer. Double clicking the .exe directly, also works. The operating system is Windows 7 32Bits (Home and/or

Build Cordova App for Windows 7

*爱你&永不变心* 提交于 2019-12-07 05:04:25
问题 Is it possible to build Windows 7 applications with Cordova/Phonegap? The documentation only mentions Windows 8, Windows 8.1 and Windows Phone 8. Searching for Windows 7 compability gave me nothing. Setting the values of target-platform to "7.0" in config.xml and default.xml doesn't work either and will just tell me that I can't build Windows 7 apps in my OS or Enviroment, which is false, given that I can just do one natively. 回答1: Improved version https://github.com/eposjk/cordova-windows7

Get directories included in Windows Media Center libraries

自作多情 提交于 2019-12-07 04:41:17
问题 I'm writing an add-in for Media Center (the version that comes with Windows 7) and want to retrieve the list of physical directories which the user has included in the media libraries (pictures, videos, recorded tv, movies, music). The Media Center object model ( Microsoft.MediaCenter.* ) does not seem to have any provision to get this information. The registry has a key at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Media Center\MediaFolders , however these are always empty.

Why can't I test the return code in Windows 7?

可紊 提交于 2019-12-07 04:15:23
问题 I have a very complicated program that is failing, and I've simplified it to this test set with a batch file and C program. My C program uses ExitProcess to pass back the errorlevel to a batch file. Sometimes on Windows 7 (Microsoft Windows [Version 6.1.7600]), the errorlevel is not being interpreted correctly. I think this should run forever. On Windows XP it appears to run forever. On two different dual-core Windows 7 machines (one 64-bit one 32-bit) it fails within a couple minutes. I can

IFileSaveDialog - choosing folders in Windows 7

ε祈祈猫儿з 提交于 2019-12-07 04:08:16
问题 In Vista, I have been using an IFileSaveDialog to let users pick a "save-as" folder. Users export a folder of images, say, and need to choose a new or existing target folder. Briefly, the code goes like this: IFileSaveDialog* dialog; // created dialog->SetOptions(FOS_PICKFOLDERS); dialog->Show(NULL); dialog->GetResult(&shellItem) In Windows 7, the FOS_PICKFOLDERS option appears to have been disallowed (and is marked as such in the API). The return value on the SetOptions call is E_INVALIDARG