VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1717 - 1719 of 16363)

Ticket Resolution Summary Owner Reporter
#11042 worksforme Cannot Install Windows 8 Pro x64 in VM Stewart Berman
Description

AMD Athlon(tm) 64 X2 Dual Core Processor 6000+ AMD64 Family 15 Model 107 Stepping 2, AuthenticAMD Host: Windows 7 Ultimate x64 with all patches

Logged in with a userid with administrator rights.

Started Virtual Box 4.2.0 Created a new VM

Type: Microsoft Windows Version: Windows 8 (64 bit)

Took all the defaults Inserted Windows 8 RTM CD in Host Drive 'D:' Selected Host Drive 'D:' as the drive attached to the new VM

Received a warning that the VM window is optimized to work in 32 bit color mode but the virtual display is currently set to 24 bit

Pressed OK

Saw CD drive briefly actived and the blue window devided into four parts appeared agains a black background. The icons at the bottom right of the window did not show any activity. Opened Task Manager:

The instance of VirtualBox.exe that was the VM:

Using 51-54% of the CPU Rapidly generating page faults A small amount of I/O reads No I/O writes

Powered VM down after about 12 minutes of nothing happening.

I then installed a spare SATA drive in the host and installed Windows 8 Pro X64 on it without any problems. Windows 8 Pro X64 runs fine on the host hardware.

#6762 invalid Cannot Move Cursor Using Windows API SetCursorPos Function -> working as designed Stewart Berman
Description

VirtualBox 3.2.0 Add-ins 3.2.0

Host: Windows 7 Ultimate x64 Guest: Windows 7 Ultimate x64 Application: MS Access 2007

I am trying to move the mouse using VBA code in an Access 2007 form. I setup a test form with one button in the center of the form. In the click event of the botton I put:

Private Sub cmdMoveMouse_Click()

MoveMouseToTopLeftCorner Me.hwnd

End Sub

The listing for the module containing the MoveMouseToTopLeftCorner is at the end of this ticket.

If I open the database and press the button the cursor does not move although it does change from a hand (the hover cursor is set to hand) to an arrow which seems to indicate that the system thinks it has left the button. But it hasn't as I can click on the button again.

If I copy the database to a real Windows XP machine and do the same as above the cursor moves to the top left corner of the form and changes to an arrow (which is the expected resuls).

Module1:

Option Compare Database
Option Explicit

Private Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type

Private Type Point
x As Long
y As Long
End Type

Private Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT) As Long
Private Declare Function ClientToScreen Lib "user32" (ByVal hwnd As Long, lpPoint As Point) As Long
Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long


Public Function MoveMouseToTopLeftCorner(ByVal vlHwnd As Long) As Boolean

Dim lReturn As Long

Dim pnt As Point

Dim rec As RECT

lReturn = GetWindowRect(vlHwnd, rec)
pnt.x = rec.Left
pnt.y = rec.Top
lReturn = SetCursorPos(pnt.x, pnt.y)

MoveMouseToTopLeftCorner = (0 <> lReturn)

End Function
#9278 obsolete Cannot Open ARC Files in Basis IDE with Guest OS Windows 7 on Mac OS X Host Christopher Mukherjee
Description

I have VirtualBox 4.1.0 installed on my Mac OS X Host. I created a Windows 7 (64 bit) vdi Guest OS.

I have properly installed Basis IDE. The Basis IDE is based on the open-source NetBeans IDE.

I am able to open the .src code files, but cannot open the .arc GUI files. This means that I can create the code behind my program, but cannot easily create the look of it.

When I try to open the .arc files, the Windows Guest OS crashes and tries to reboot, but freezes at the Windows Logo screen (before the Log In). If I manually "Power off the machine", it starts properly the next time.

I need to be able to work on the ARC files. Is there a fix to this problem? Thanks

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy