VirtualBox

Changeset 22239 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 13, 2009 2:41:49 PM (15 years ago)
Author:
vboxsync
Message:

VBoxGINA: Fix for domain combo box selection.

Location:
trunk/src/VBox/Additions/WINNT/VBoxGINA
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxGINA/Dialog.cpp

    r9680 r22239  
    118118    static UINT_PTR timer = 0;
    119119
    120     Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc\n"));
     120    /*Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc\n"));*/
    121121
    122122    //
     
    161161                        SendMessage(hwndPassword, WM_SETTEXT, 0, (LPARAM)g_Password);
    162162                    if (hwndDomain)
    163                         SendMessage(hwndDomain, WM_SETTEXT, 0, (LPARAM)g_Domain);
     163                    {
     164                        /* search the domain combo box for our required domain and select it */
     165                        Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: Find domain entry ...\n"));
     166                        DWORD dwIndex = (DWORD) SendMessage(hwndDomain, CB_FINDSTRING,
     167                                                            0, (LPARAM)g_Domain);
     168                        if (dwIndex != CB_ERR)
     169                        {
     170                            Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: Found domain at pos %ld\n", dwIndex));
     171                            SendMessage(hwndDomain, CB_SETCURSEL, (WPARAM) dwIndex, 0);
     172                            EnableWindow(hwndDomain, FALSE);
     173                        }
     174                        else Log(("VBoxGINA::MyWlxLoggedOutSASDlgProc: Domain entry not found!"));
     175                    }
    164176
    165177                    /* we got the credentials, null them out */
  • trunk/src/VBox/Additions/WINNT/VBoxGINA/Helper.cpp

    r21227 r22239  
    7676    }
    7777    bool fAvailable = ((vmmreqCredentials.u32Flags & VMMDEV_CREDENTIALS_PRESENT) != 0);
    78     Log(("VBoxGINA::credentialsAvailable: fAvailable: %d\n", fAvailable));
     78    /*Log(("VBoxGINA::credentialsAvailable: fAvailable: %d\n", fAvailable));*/
    7979    return fAvailable;
    8080}
Note: See TracChangeset for help on using the changeset viewer.

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