windows-7

Wampserver 2.1 gives orange icon after install on Windows 7

淺唱寂寞╮ 提交于 2019-12-18 14:17:05
问题 I just installed Wampserver 2.1 on my windows 7 64bit computer and the icon that should turn green, turns orange, saying that the server is not ready. The result is that on opening the browser on http://localhost/ it just timed out. anybody an idea, I tried google on this, but without any correct result. The apache error log says this: [Fri Mar 11 14:40:58 2011] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations[Fri Mar 11 14:40:58 2011] [notice] Server built:

How do you get System default font settings in Qt?

泪湿孤枕 提交于 2019-12-18 14:15:26
问题 I am building a desktop app using Qt, my dev machine is win 7 x64 with japanese locale, standard system font is Meiryo. Most of win 7 UI is in this font, though classic/older programs such as ui font customization window itself uses different font which is MS UI Gothic. This doesn't bother me until I found that QtCreator builds my app with MS UI Gothic in one place, and Meiryo in the other. For example, qlabels, qlineedits, qcombobox all uses MS UI Gothic, but a custom completer with a

Run an application with PowerShell and wait until it is finished

冷暖自知 提交于 2019-12-18 14:08:24
问题 Is it possible to run an application with PowerShell and wait until it is finished ? For example I want to run Thunderbird and after user closes it, then print something to the output ? Second thing - is it possible to search for this application using thunderbird keyword like in Start Menu (when we type it manually, it returns a result Mozilla Thunderbird ) - and also run it ? Thanks ! 回答1: You can do something like: Start-Process myprogram.exe -NoNewWindow -Wait Or if you would like a more

Android emulator window top bar out of the screen

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-18 14:01:27
问题 I am using windows 7 when my windows toolbar on the right hand side, the android emulator out of the screen. This causes me cannot move the window. How to fix this 回答1: Press the Alt-Space keys and you should get the window with the option allowing you to move the emulator window. Then move it e.g. using keyboard arrows. It works for me on Windows 7. 回答2: Try to change your screen resolution temporarily (e.g. to a lower value). Then switch back to your original screen resolution. That should

Replacing the Windows shell with a WPF app

核能气质少年 提交于 2019-12-18 13:36:15
问题 I want to replace Windows 7 Shell (32 and 64 bit) with my WPF application which should work as a Shell. The goal is WPF application will launch my Kiosk application and provide few services. My questions are How do I replace the Windows 7 Shell by my WPF application ? Do I have to do something special in my WPF application code or required registry changes to execute WPF application as a shell? Thanks. 回答1: 1.) Change the user's Registry entry at HKEY_Current_User\Software\Microsoft\Windows

No devices detected when remote debugging in Chrome Developer Tools from Windows 7 Enterprise to Samsung Galaxy Tab A

﹥>﹥吖頭↗ 提交于 2019-12-18 13:31:41
问题 I am having problems with a web application on Chrome in Samsung Galaxy Tab A. I want to troubleshoot them with Chrome's Developer Tools . On tablets you do not have access to Chrome's Developer Tools , so you need to set up Remote Debugging . The process, according to Google's official documentation, should essentially be: 1) Install the required driver on the PC so the tablet can be recognised. 2) Connect the tablet to the PC via USB cable. 2) On PC, go to Chrome > Developer Tools > Menu >

auto run a bat script in windows 7 at login

℡╲_俬逩灬. 提交于 2019-12-18 13:01:32
问题 I have recently acquired a windows 7 laptop from my late grandmother. I have been using it for work and other things. I decided to create a VM using VirtualBox And now I want to create a user on the (Windows 7 Host) machine so that when I log into that user it autoruns a .bat script to start the VM. To make it clear I only want to run it only if the user "VM" logs in and not my normal user and it would be super awesome if it would autostart in full screen. I have a shortcut on my desktop that

Setting environment variables requires reboot on 64-bit

蹲街弑〆低调 提交于 2019-12-18 12:46:45
问题 I am working on an installer using Wix 3.5 that needs to set the system PATH environment variable. This is how I am setting the environment variable: <Directory Id="DirectoryName"> <Component Id="ComponentID" Guid="{BE20AF67-5943-4AF4-BE66-226E2D4B844F}"> <Environment Id="EnvironmentID" Name="PATH" Action="set" Value="the path" Part="last" Separator=";" System="yes" /> </Component> </Directory> This seems to be working on 32-bit systems without requiring a reboot for the changes to be

Terminal session when minimized\disconnected returns a blank screen upon capturing desktop snapshot

痞子三分冷 提交于 2019-12-18 12:18:28
问题 I am using the below JAVA code to capture the desktop of a remote machine Robot robot = new Robot(); BufferedImage screenShot = robot.createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize())); ByteArrayOutputStream imageBytes = new ByteArrayOutputStream(); ImageIO.write(screenShot, "PNG", imageBytes); return imageBytes.toByteArray(); However the captured image is blank, when the terminal session to the remote machine is either minimized or disconnected. I appreciate your

ClickOnce application does not start through Process.Start(“x.abc”) with *.abc associated to the ClickOnce application

家住魔仙堡 提交于 2019-12-18 12:18:10
问题 I have successfully developed and deployed a ClickOnce application which registers an associated file extension, for instance *.abc . When I click on a file named x.abc or if I type x.abc from the command prompt, the ClickOnce application starts, and I can retrieve the file through the dedicated API. I can also launch the application programmatically with the following code: System.Diagnostics.Process.Start ("x.abc"); Everything works fine on my Windows Vista 64 bit box. However, if I try to