Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
6answers
519 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 ...
8
votes
3answers
294 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 ...
5
votes
1answer
120 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, ...
5
votes
3answers
187 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 ...
3
votes
1answer
111 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
1answer
114 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 ...
2
votes
1answer
82 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 ...
2
votes
1answer
106 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 ...
2
votes
5answers
911 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: ...
2
votes
2answers
307 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 ...
2
votes
5answers
143 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
2answers
41 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
333 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 ...
1
vote
2answers
285 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 ...
1
vote
3answers
713 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 ...
0
votes
1answer
55 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 ...
0
votes
2answers
120 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 ...
0
votes
3answers
214 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 ...
0
votes
2answers
640 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 ...
0
votes
1answer
59 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 ...
0
votes
1answer
457 views

Where are methods defined at the ruby top level?

EDIT: this post only applies to Ruby 1.9 Hi, At the toplevel method definition should result in private methods on Object, and tests seem to bear this out: def hello; "hello world"; end ...