windows-7

Button turns invisible on Windows 7 machines without Visual Studio installed

柔情痞子 提交于 2019-12-11 17:23:34
问题 We have a window that displays fine on all of our Windows 7 development machines with Visual Studio but not on the ones without Visual Studio installed. We have a simple OK/Cancel button pair and on the affected machines the OK button is invisible but if you click in the place where it should be it still works. Here are the styles used: <Style x:Key="OptionsOkButton" TargetType="{x:Type Button}"> <Setter Property="HorizontalAlignment" Value="Right" /> <Setter Property="Width" Value="100" />

VS 2005, SQL 2008, KB954961 Won't Install - Win7 x64 Issue?

只谈情不闲聊 提交于 2019-12-11 16:56:49
问题 I recently installed Win 7 x64 on my machine. I have Visual Studio 2005 Standard, and need to install the update for SQL 2008 support, so I can connect to the remote SQL Server within VS. http://www.microsoft.com/downloads/details.aspx?FamilyId=E1109AEF-1AA2-408D-AA0F-9DF094F993BF&displaylang=en When I try to run the update, I get this message: The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing or the upgrade patch may

copy files created or modified today with robocopy

喜你入骨 提交于 2019-12-11 16:49:37
问题 I'm trying to create a batch file in Win7 that will copy any files that have been created or modified today and copy them to a destination with a similar directory structure. This is what I have so far: set today="20180721" robocopy "C:\temp\" "D:\backup\temp\" *.* /s /DCOPY:T /MINAGE:%today% I know that /e copies empty directories and /xf excludes all files, but I'm not sure if that helps me. The code above seems to copy all files regardless of date, so I'm a little lost here. 回答1: Assigning

Application.exe has encountered a issue and needs to be closed error at the time of Application Launch

给你一囗甜甜゛ 提交于 2019-12-11 16:48:26
问题 I have made a windows form application using Visual Studio 2010 in Windows 7.Every thing is working fine into my System.I have build the application on Visual studio 2010 and it is ok.Application.exe is getting created under the Bin in Release Mode of the Visual Studio. Now i am trying to launch this application On Clients PC which is Windows XP but it is giving following. Application has encountered a problem and needs to be closed.we are sorry for inconvenience. I am not getting the reason

JavaFX window sizing

空扰寡人 提交于 2019-12-11 16:33:16
问题 My app looks different at same OS. This is Windows 7 rich interface: And Windows 7 regular interface: The only thing that makes me angry is sizing. In FXML it's 640x445 , but Windows 7 makes it wider. How can I avoid that? Is there an approach to make TextArea fullscreen or something? 回答1: To resize your stage at initialize you can use following code (i assume you use javafx-2?) //stage.setResizable(true); Screen screen = Screen.getPrimary(); Rectangle2D bounds = screen.getVisualBounds();

Broken text in Qt Creator UI

感情迁移 提交于 2019-12-11 16:25:25
问题 Sometimes (not always), certain text items in the Qt Creator UI are broken: Any idea what causes it? Or a workaround? Maybe the problem is my cheap video card (an Intel on-board one). This theory is supported by the fact that Creator is probably QML-powered by now, meaning it's running on OpenGL. I tried restarting Creator and that fixed it, but after switching between the Welcome and Edit tabs a few times, it happens again. I tried making Creator's UI use the software QML renderer, rather

Trouble getting sockets to connect in windows7 64bit

允我心安 提交于 2019-12-11 16:04:21
问题 Hey. I've been searching around for a solution to this problem with no luck. I was wondering if this is a known issue when switching socket code from WinXP 32 bit to Win7 64 bit. I have a fairly simple socket routine which works fine in WinXP 32bit, but the socket.connect call is throwing the exception "No connection could be made because the target machine actively refused it 127.0.0.1:48000" I've added an exception to the win7 firewall for the program, and doubled checked to make sure the

FileCopy of NSIS installer not working in Windows 7 but working in Windows XP

天涯浪子 提交于 2019-12-11 15:24:54
问题 I am using FileCopy of NSIS installer to copy a folder along with its all subfiles from a source to destination. This works on XP but not on Windows 7. When i run the installer on Windows 7 , then the FileCopy dialog doesn't even appears, it is just skipped out. But in Windows XP, it properly shows the dialog box of "Copying Files" and succeeds. What's the problem? Please help. !define FileCopy `!insertmacro FileCopy` !macro FileCopy FilePath TargetDir CreateDirectory `${TargetDir}` CopyFiles

Custom WebDAV server does not work with Windows 7 mini-redirector

若如初见. 提交于 2019-12-11 14:38:40
问题 I am maintaining a custom WebDav server, which works smoothly with most WebDav clients such as Cadaver, Mac OSX, etc, but does not work with Windows mini-redirector, i.e. net drive in Windows Explorer. The server implemented Digest authentication. The symptom is: I was always prompted for entering username and password even after I entered correct credentials. Even more weird thing is, when I am using Fiddler, the problem is gone. I have looked into several possibilities: 1. persistent

Suppress Windows7 messages in Session 0

六月ゝ 毕业季﹏ 提交于 2019-12-11 14:26:19
问题 We have a windows service that gets installed and runs on users system in the background, but on some windows machine user get an error "A device or program has requested your attention" This is specific to Windows 7. This is because when we are installing the .exe on the user machine using MSI(created with WIX), the installer job I believe runs on Session 0, and when any prompt appears the user is prompted that a program has requested attention and he gets switched to Session 0. Can we