Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39601 > unrolled thread

Basic Listview Example

Started byXx7 <xxxx7xx@gmail.com>
First post2013-02-22 10:03 -0800
Last post2013-02-24 20:40 -0800
Articles 12 — 6 participants

Back to article view | Back to comp.lang.python


Contents

  Basic Listview Example Xx7 <xxxx7xx@gmail.com> - 2013-02-22 10:03 -0800
    Re: Basic Listview Example Tim Delaney <timothy.c.delaney@gmail.com> - 2013-02-23 07:49 +1100
    Re: Basic Listview Example Terry Reedy <tjreedy@udel.edu> - 2013-02-22 17:12 -0500
      Re: Basic Listview Example Xx7 <xxxx7xx@gmail.com> - 2013-02-22 15:36 -0800
        Re: Basic Listview Example Terry Reedy <tjreedy@udel.edu> - 2013-02-22 18:57 -0500
        Re: Basic Listview Example Chris Angelico <rosuav@gmail.com> - 2013-02-23 11:25 +1100
          Re: Basic Listview Example Xx7 <xxxx7xx@gmail.com> - 2013-02-23 18:18 -0800
            Re: Basic Listview Example Chris Angelico <rosuav@gmail.com> - 2013-02-24 13:33 +1100
            Re: Basic Listview Example Michael Torrie <torriem@gmail.com> - 2013-02-23 20:53 -0700
          Re: Basic Listview Example Xx7 <xxxx7xx@gmail.com> - 2013-02-23 18:18 -0800
      Re: Basic Listview Example Xx7 <xxxx7xx@gmail.com> - 2013-02-22 15:36 -0800
    Re: Basic Listview Example Rick Johnson <rantingrickjohnson@gmail.com> - 2013-02-24 20:40 -0800

#39601 — Basic Listview Example

FromXx7 <xxxx7xx@gmail.com>
Date2013-02-22 10:03 -0800
SubjectBasic Listview Example
Message-ID<024d2304-e7e1-425c-973a-533e75c919eb@googlegroups.com>
Hi, could somebody possibly provide a basic listview example?  thanks!

[toc] | [next] | [standalone]


#39611

FromTim Delaney <timothy.c.delaney@gmail.com>
Date2013-02-23 07:49 +1100
Message-ID<mailman.2300.1361566190.2939.python-list@python.org>
In reply to#39601

[Multipart message — attachments visible in raw view] — view raw

On 23 February 2013 05:03, Xx7 <xxxx7xx@gmail.com> wrote:

> Hi, could somebody possibly provide a basic listview example?  thanks!
>

elements = [1, 2, 3]

for e in elements:
    print(e)

If you were after something else, please read:
http://www.catb.org/esr/faqs/smart-questions.html

Tim Delaney

[toc] | [prev] | [next] | [standalone]


#39620

FromTerry Reedy <tjreedy@udel.edu>
Date2013-02-22 17:12 -0500
Message-ID<mailman.2308.1361571288.2939.python-list@python.org>
In reply to#39601
On 2/22/2013 1:03 PM, Xx7 wrote:
> Hi, could somebody possibly provide a basic listview example?  thanks!

Hi, could you possibly explain what you mean by listview? thanks!

(There is no such class that I know of.)

-- 
Terry Jan Reedy

[toc] | [prev] | [next] | [standalone]


#39624

FromXx7 <xxxx7xx@gmail.com>
Date2013-02-22 15:36 -0800
Message-ID<1ae2f0e1-c949-4449-b5a1-41d99b8b7f9e@googlegroups.com>
In reply to#39620
Listview example in a GUI

[toc] | [prev] | [next] | [standalone]


#39629

FromTerry Reedy <tjreedy@udel.edu>
Date2013-02-22 18:57 -0500
Message-ID<mailman.2314.1361577509.2939.python-list@python.org>
In reply to#39624
On 2/22/2013 6:36 PM, Xx7 wrote:
> Listview example in a GUI

The documentation for each GUI framework should have an example for each 
of its widgets. Specific questions about any framework other than tk 
access though tkinter are probably best directed to framework-specific 
mailing lists.

-- 
Terry Jan Reedy

[toc] | [prev] | [next] | [standalone]


#39635

FromChris Angelico <rosuav@gmail.com>
Date2013-02-23 11:25 +1100
Message-ID<mailman.2318.1361579113.2939.python-list@python.org>
In reply to#39624
On Sat, Feb 23, 2013 at 10:36 AM, Xx7 <xxxx7xx@gmail.com> wrote:
> Listview example in a GUI

Sounds to me like you may be talking about GTK, but I'm not 100% sure
there. You really need to give a LOT more information. Actually,
you'll probably find that Google Search has crystal balls every bit as
good as ours; if you type 'python listview example' and start adding
keywords to say what sort of example you're looking for, it'll find
something for you.

Meanwhile, over at DuckDuckGo, one does not ask whether or not they
have crystal balls. You instead ask whether they quack like they have
crystal balls, whether they can swim like they have crystal balls, and
whether you can type in 'python listview example' and get results like
they have crystal balls. And the answer is: Yes.

ChrisA

[toc] | [prev] | [next] | [standalone]


#39726

FromXx7 <xxxx7xx@gmail.com>
Date2013-02-23 18:18 -0800
Message-ID<6a92297e-af96-4116-99ba-502db8850988@googlegroups.com>
In reply to#39635
Thanks all!

I believe C# appears to be a better language for this type of GUI creation.  Better Listview Express has a tonne of options.

[toc] | [prev] | [next] | [standalone]


#39728

FromChris Angelico <rosuav@gmail.com>
Date2013-02-24 13:33 +1100
Message-ID<mailman.2391.1361673192.2939.python-list@python.org>
In reply to#39726
On Sun, Feb 24, 2013 at 1:18 PM, Xx7 <xxxx7xx@gmail.com> wrote:
> Thanks all!
>
> I believe C# appears to be a better language for this type of GUI creation.  Better Listview Express has a tonne of options.

No probs, glad that's settled. I hope that when you ask the C# people
for help, you provide enough information that they can actually answer
your questions!

ChrisA

[toc] | [prev] | [next] | [standalone]


#39732

FromMichael Torrie <torriem@gmail.com>
Date2013-02-23 20:53 -0700
Message-ID<mailman.2394.1361678031.2939.python-list@python.org>
In reply to#39726
On 02/23/2013 07:18 PM, Xx7 wrote:
> Thanks all!
> 
> I believe C# appears to be a better language for this type of GUI
> creation.  Better Listview Express has a tonne of options.

It's a common misconception that a language has anything to do with a
GUI.  I know of at least 3 different GUI frameworks for use with C#.
WinForms, GTK#, Qt-sharp, WX.net, Cocoa and doubtless dozens others.

On Python there are numerous toolkits too, such as Tk, Qt, Gtk,
wxWidgets, and others.

Additionally each operating system limits your choices too.  But most
GUI toolkits function very similarly.  Glad you found something that
works for you.

[toc] | [prev] | [next] | [standalone]


#39727

FromXx7 <xxxx7xx@gmail.com>
Date2013-02-23 18:18 -0800
Message-ID<mailman.2390.1361672332.2939.python-list@python.org>
In reply to#39635
Thanks all!

I believe C# appears to be a better language for this type of GUI creation.  Better Listview Express has a tonne of options.

[toc] | [prev] | [next] | [standalone]


#39625

FromXx7 <xxxx7xx@gmail.com>
Date2013-02-22 15:36 -0800
Message-ID<mailman.2311.1361576195.2939.python-list@python.org>
In reply to#39620
Listview example in a GUI

[toc] | [prev] | [next] | [standalone]


#39872

FromRick Johnson <rantingrickjohnson@gmail.com>
Date2013-02-24 20:40 -0800
Message-ID<48098d1b-8d56-4adb-8717-b57d7fbad87c@googlegroups.com>
In reply to#39601
On Friday, February 22, 2013 12:03:30 PM UTC-6, Xx7 wrote:
> Hi, could somebody possibly provide a basic listview example?  thanks!

Depends on your definition of a "listview". 

We NOW know you want examples of GUI widgets; but /which/ GUI library do you plan on using? If you are not sure which library is best for you, then have a look at this:

  http://wiki.python.org/moin/GuiProgramming

We cannot help you until you provide more "specific" information. Also, don't forget to mention the relevant platform(s).

  http://en.wikipedia.org/wiki/Computing_platform

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web