I apologise if some of these requests have already been suggested, I don't have time to go through all 7 pages. Also, if the feature is already in GameEx, please forgive me since I am a new user. - Please move cursor to bottom right corner of screen on bootup. - GameEx should remember the last menu on the last page you were on, so you always exit back to the previous position in the list. This should also apply for game/emulator lists. The last one selected should be highlighted by default. - How about having some options to automatically strip a window and force it full screen? Eg. int nX = GetSystemMetrics (SM_CXSCREEN); int nY = GetSystemMetrics (SM_CYSCREEN); // if user has requested to remove status bar HWND hWndStatusBar = GetDlgItem(g_wi.hWnd, 0xe801); // Get handle to status bar (you need to use Spy++ to get the ID) PostMessage(hWndStatusBar, WM_CLOSE, NULL, NULL); // Remove status bar // if user has requested to remove window borders SetWindowLong(hWnd, GWL_STYLE, NULL); // remove window borders // if user has requested to force application to full screen SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, nX, nY, SWP_SHOWWINDOW | SWP_NOZORDER); // go full screen // if user has asked to move cursor off the screen SetCursorPos(nX,nY); // move the cursor off the screen // if user has requested to remove menu bar SetMenu(hWnd, NULL); // remove menu bar UpdateWindow(hWnd); // update window // if user has requested to bring window to top BringWindowToTop(hWnd); SetForegroundWindow(hWnd); If i think of more features, I'll post later. Top work btw Tom!