Path: csiph.com!usenet.pasdenom.info!news.albasani.net!news.mixmin.net!feed.xsnews.nl!border-1.ams.xsnews.nl!xlned.com!feeder1.xlned.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.023 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'parameter': 0.07; 'received:mail-qc0-f174.google.com': 0.09; 'subject:not': 0.11; 'to:name:python-list': 0.15; 'boolean': 0.16; 'subject:program': 0.16; 'appears': 0.18; 'import': 0.21; 'required.': 0.22; 'work,': 0.22; 'header:In-Reply-To:1': 0.25; 'message-id:@mail.gmail.com': 0.27; 'url:mailman': 0.29; 'url:python': 0.32; 'url:listinfo': 0.32; 'to:addr:python-list': 0.33; 'code:': 0.33; 'hi,': 0.33; 'received:google.com': 0.34; 'subject:?': 0.35; 'received:209.85': 0.35; 'url:org': 0.36; 'should': 0.36; 'received:209': 0.37; 'received:209.85.216': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'url:mail': 0.40; 'subject:this': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=b7kfGQm4kiUNIujk0DUTAA11WQsqcwhnLJSu39LiTZ4=; b=nd11VekCO+3eTOPVMF2rFCXTlgiZMV46ihExLwK8TOA8/cWObMA3VNqj60D3pB9JWR s+8CFwkPCYnyetWqRB4eGGA3wHdmhn54qLYjY7jvoDYpeSZysuNcDiPEV7YSq/gb2wkY vg6quMi41kAB+JNUJqzuKybwKbS5zbEfQNWK14FjZpZF8hAi9+UbmWN8mQxPq9EXH+o8 icl64McgYjMmtDyJzmkgdMW8aHEuH6nrj7JOrVCb0zYg99dHKZrHz9vvx3RXz39cl2Yf 3Oe1Ghj8p/K0zfIimn/M0qcmuYGBHhmS+EENaxOoowCBJ1QQ4Co8M4yxGxpWE4mLJMx+ AHiw== MIME-Version: 1.0 In-Reply-To: References: Date: Tue, 25 Sep 2012 10:14:56 +0200 Subject: Re: why do this program not fullscreen? From: Vlastimil Brom To: Python-list Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1348560900 news.xs4all.nl 6916 [2001:888:2000:d::a6]:52409 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:30044 2012/9/25 Levi Nie : > the code: > import wx > app=wx.App() > win=wx.Frame(None) > win.ShowFullScreen() > app.MainLoop() > > > -- > http://mail.python.org/mailman/listinfo/python-list > Hi, win.ShowFullScreen(True) should work, the boolean parameter appears to be required. hth, vbr