The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
73 views

Python tkinter with ttk calendar

I am using this code to create a simple calendar on my Tkinter. When i put a calendar on my main root window, the calendar appear just fine. So, i decided to put another button that will create a ...
2
votes
2answers
345 views

Tkinter example code for multiple windows, why won't buttons load correctly?

There must be something very obvious about why this code is wrong. I'm hoping somebody will be able to point it out. I am new at Python and even newer at Tkinter. Can you tell? ; ) The reason I am ...
0
votes
1answer
38 views

How to get the value from tkinter toplevel in side a 0 attribute function?

How to get the value from tkinter toplevel in side a 0 attribute function? def Update(): Up = Toplevel() Up.title("Update") taskLabel = Label(Up, text ="Update", font=('Times', ...
2
votes
3answers
57 views

How to prevent two root windows from coming up when I start Tkinter?

Question How can I hide the two Tkinter root windows that are popping up in my program? I have tried to use root.widthdraw(). Here is a link to my Pastebin. Background I am trying to create a ...
0
votes
2answers
65 views

Tkinter GUI toplevel

from tkinter import* import tkinter as tk def topLevel(): top=Toplevel() top.title("Listbox test") notiLabel = Label(text ="----test----", font=('Times', 20)) notiLabel.pack() ...
0
votes
1answer
53 views

Python - Updating the background colour in Toplevel widget

I am trying to update the background color of a TopLevel widget via a radio button. What I want is to have the background color change when the user changes the radio button. Currently, the program ...
2
votes
1answer
71 views

Getting rid of ;; in OCaml toplevel

I like Try Ocaml's toplevel behavior: ;; is added implicitly when I press Enter, and I'm able to use Shift-Enter for multiline editing. Is this possible to get the same feature in standard toplevel ...
0
votes
1answer
160 views

Python - Tkinter - Widgets created inside a class inherited from Toplevel() appear in a different frame OUTSIDE the class, Toplevel() class is empty

I'm attempting to create a class and inherit from Toplevel() so that the GUI elements of the class can be contained within a separate window. Usually I would just inherit from Frame() but for my ...
1
vote
0answers
18 views

Looking for the opposite of flexglobals.toplevelapplication

If I want to refer to a textInput (for example) in the top level application from a custom component. Than I can use FlexGlobals.toplevelapplication but how do I refer to a textInput in a custom ...
1
vote
0answers
77 views

Qt treewidget sorting top-level items

I am having a difficult time overloading QTreeWidgetItem's < operator. I have a list of QTreeWidgetItems, some top-level items and some children. When the user activates the "date created" column ...
3
votes
2answers
123 views

ocaml top level and native library

I have a library that calls C code. It's compile with the -custom, -cclib, -l flags, which is working ok when I compile my code against the library with ocamlc, but when I use the "ocaml" top level ...
0
votes
1answer
179 views

jsTree - get only top level from checkboxes post

I am using jsTree with the checkboxes option inside of a regular form with this configuration: "checkbox" : { real_checkboxes : true, two_state: false } I have only two levels of data ...
0
votes
1answer
432 views

Tkinter Button does not appear on TopLevel?

This is a piece of code I write for this question: Entry text on a different window? It is really strange what happened at mySubmitButton, it appears that the button does not want to appear when it ...
3
votes
2answers
1k views

How do I delete a top level QTreeWidgetItem from a QTreeWidget?

I'm attempting to remove a top level tree widget item if there are no children nodes within the top level item. What is the correct way to do this? I can't seem to find the API call within Qt's ...
1
vote
2answers
127 views

How to generate unique names for Tk toplevel window paths?

I need a way to generate an unused name for Tk toplevel window paths, just like #auto does it for Itcl objects. How can I do that? Maybe Tk has a similar utility?
1
vote
1answer
343 views

Python - make a window appear on top of another, block access to other windows until button clicked

Python 2.7, PyQt4.8.5 I want to have a main app window and then a second pop up window to display com port settings. This window should always be on top of the parent window until either the ok or ...
5
votes
1answer
960 views

ocaml toplevel module loading

sorry if it may sound trivial, but I've been googling for a big while, still could not get it to work. I'm trying to load my modules in .cmo into the toplevel, I had tried: $ ocaml mymodule.cmo I ...
11
votes
1answer
524 views

OCaml toplevel with syntax extensions

I don't know how to accomplish this in general, but I'll ask about one instance in particular for clarity: Sexplib looks interesting to me. I want to play around with it. I've downloaded it, ...
3
votes
1answer
190 views

a ocaml code which compiles, but does not go with toplevel

I am doing an exercise of a free course. The following ocaml code compiles when I "make", but it complains once I am trying to put it into toplevel. Why? let main () = (* Parsing arguments *) let ...
1
vote
1answer
900 views

Problem with Tkinter Frame adding itself to main window

I have a program that is suppose to create a new Toplevel widget and then add a frame to it. Both the toplevel and frame classes are already created separately so when they are called my window fills ...
2
votes
2answers
268 views

Toplevel window in Python keeps appearing under the root window

I have a toplevel window that keeps appear underneath the root window, which is pretty annoying. Any idea how to make sure that the toplevel gets the focus when the function is called? def ...
5
votes
3answers
429 views

Modularity in Java: top level vs. nested classes

The Java tutorials that I read, like to use nested classes to demonstrate a concept, a feature or use. This led me to initially implement a sample project I created just like that: Lots of nested ...
2
votes
2answers
134 views

How can I prevent “- : unit = ()” from appearing after my output in the ocaml toplevel?

This code for i=0 to 5 do print_string "a" done;; will output aaaaaa- : unit = () But how can I output just "aaaaaa" without outputting the value of for-expression? (Totally newbie in OCaml). ...
4
votes
1answer
193 views

How do you inspect the type of (*) on OCaml's toplevel?

I wanted to see the type of the multiplication function (*), so I tapped it into the OCaml toplevel. # (*) However, the toplevel echoed: (*);; 1: this is the start of a comment. and then consumed ...
3
votes
5answers
3k views

Top level domain from URL in C#

I am using C# and ASP.NET for this. We receive a lot of "strange" requests on our IIS 6.0 servers and I want to log and catalog these by domain. Eg. we get some strange requests like these: ...
8
votes
3answers
395 views

making standalone toplevels with OCaml and Haskell

In Common Lisp, programs are often produced as binaries with a translator bundled inside. StumpWM is a good example. How would one do the same with Haskell and OCaml? It is not necessary to provide ...
0
votes
4answers
355 views

Side effects of creating top-level class in AS3?

Besides possible class name collisions, would there be any problems with or side effects of creating a top-level (no package name) class with a name like "Tracer" in ActionScript 3? I want to keep ...
22
votes
6answers
624 views

Saving my running toplevel for later

When working in the ocaml or ghci toplevels I often build up a significant "context" for want of a better word, values bound, functions, modules loaded, and so on. Is there a way to save all of that ...
2
votes
2answers
536 views

Inconsistent behaviour when attempting to highlight C# TextBox

I'm building a C# WinForms program, and my textboxes do not allow the user to highlight the text consistently throughout the program. In some places, the highlighting works normally: you type ...
3
votes
3answers
3k views

I Need a little help with Python, Tkinter and threading

I have a Python script which uses Tkinter for the GUI. My little script should create a Toplevel widget every X seconds. When I run my code, the first Toplevel widget is created successfully, but when ...
1
vote
2answers
514 views

A real top level window with Qt?

i use the last Qt version for a projet and the QProcess : http://doc.qt.nokia.com/4.6/qprocess.html. I have a question - i want to lauch program from my application by using QProcess . I want to ...
0
votes
1answer
111 views

How do I make it so a two top level widgets can't be open simultaneously?

I have a top level widget that is created when a button is pressed. How do I make it so when that same button is pressed again, while the top level widget is still open it simply moves the top level ...
2
votes
5answers
266 views

How to run python top level/interpreter with file input?

I've always wondered how to do this, it's useful for manual unit testing of individual python scrips. Say I had a python file that did something, and I wanted to run it in the top level, but after it ...
1
vote
3answers
1k views

Windows Forms: Unable to Click to Focus a MaskedTextBox in a Non TopLevel Form

Like the title says, I've got a Child form being shown with it's TopLevel property set to False and I am unable to click a MaskedTextBox control that it contains (in order to bring focus to it). I can ...
3
votes
1answer
310 views

How to access a toplevel entity in ruby, from inside a module which defines the same name

Inside a module I have a class named Process. module M Process= Class.new Process::wait(0) end This raises NoMethodError. How do I access the toplevel Process from inside the module? Is this ...
3
votes
1answer
909 views

Where are methods defined at the ruby top level?

At the top level, method definition should result in private methods on Object, and tests seem to bear this out: def hello; "hello world"; end Object.private_instance_methods.include?(:hello) #=> ...