sudah coba pake fungsi ini ? taskbar nya di hide, windows state nya maximized! local external function : Function Long FindWindowEx (Long hWnd1, Long hWnd2, String lpsz1, String lpsz2) Library "user32" Alias For "FindWindowExA" Function Long ShowWindow (Long hwnd, Long nCmdShow) Library "user32" Alias For "ShowWindow"
Window open : String ls_ShellViewWnd = "Progman" String ls_ShellTaskBarWnd = "Shell_TrayWnd" String ls_Null Long ll_HTaskBar, ll_HDeskTop setNull(ls_Null) // Hide task bar ll_HTaskBar = FindWindowEx( 0, 0, ls_ShellTaskBarWnd, ls_Null ) ShowWindow( ll_HTaskBar, SW_HIDE ) // Hide Desktop ll_HDeskTop = FindWindowEx( 0, 0, ls_ShellViewWnd, ls_Null ) ShowWindow( ll_HDeskTop, SW_HIDE ) deni_amin_sujana_004 <[EMAIL PROTECTED]> wrote: Dear all Ada yang tau caranya ngilangin fungsi shortkey tombol start di keyboard gak ? kalo di aplikasi PB nya sih udah bisa, cuman to Start Menu tetep nongol... Thx b 4 ----------------------------------------------- IndoPB - Indonesia PB User Group To Post a message, send it to: [EMAIL PROTECTED] To Unsubscribe,send a blank message to: [EMAIL PROTECTED] Yahoo! Groups Links Send instant messages to your online friends http://uk.messenger.yahoo.com [Non-text portions of this message have been removed] ----------------------------------------------- IndoPB - Indonesia PB User Group To Post a message, send it to: [EMAIL PROTECTED] To Unsubscribe,send a blank message to: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/indopb/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
