Python and BOO Programming Software Development by bumsfeld A somewhat strange find in the Pyton Code Snippets here on this site. Is the BOO language very much like Python? It seems nice that one can compile and interpret the same language. Will it be worth to translate Python code to BOO just to get a nice small exe file? Does it have something like wxPython? Re: ctypes(python 2.5) cant work in win2000 platform!!! Programming Software Development by thian_seng Hi All, Urgent SOS!!! I developed my project using pyton 2.5 under winXP and had an issue in loading … "ciao" from Italy!! Community Center Say Hello! by balena … UML/C+++ !! But I already worked in JAVA/PHP/ASP/PYTON. but Never with the pointer!!! I signed here because when… Displaying .jpg in Tkinter (Python 3.1) Programming Software Development by Lingson … use the PIL package. But the PIL packages doesnt support Pyton 3.1 yet (from what I read on the PIL… Controlling two Text widgets with one scrollbar Programming Software Development by G_S … modified it, and it now works with text widgets and pyton 2.x. The problem is: the code is too advanced… Python 3.1.3 Programming Software Development by FAITH2011 … are any good Videos or computer based book that teach Pyton 3.1.3 for begginers that could be recommended. The… Starting with Python Programming Software Development by mang0 I just recently (one week ago) started learning Pyton. I'm using 2.7 as I heard that is … Python3 __call__ Question Programming Software Development by Ephexeve I am reading a Python book for Pyton 2.5 (But I am doing Python 3). I am … Father finder program, Sort algorithm, List-to-dictionary problems: Please help Programming Software Development by Tyler212 hi, I am currently taking a pyton programming class and having some extreme difficulties. I am in … Sentence Capitalization in Python Programming Software Development by pythonstudent11 I am in course that uses Gaddis' Starting Out With Pyton 2nd Edition. There is a problem in the course that … Multiprocessing causes BSOD Programming Software Development by delta_frost I have this simple first multiprocessing code in pyton,but I encounter a BSOD when running it.Can anyone … Little print newline problem Programming Software Development by ddanbe … finally decided to get my toes wet. So I installed Pyton 3.3.2 amd the plugin for Visual Studio 2010… need a help regarding "setup" in pyton using py2exe Programming Software Development by manukumar05 hi friends, help me in regarding , making a "setup " using py2exe, actually my project contains ( dlls,libs,and icons,sip file) so how can i wirte a steup for the project for example my pj name is : " manukumar " it cotains : m1.py,m2.py,m3.py etc files and it contains:: few lib files, few dll files,… Re: need a help regarding "setup" in pyton using py2exe Programming Software Development by Ene Uran Check out the Py2Exe sticky at: [url]http://forums.devshed.com/python-programming-11/py2exe-step-by-step-guide-209432.html[/url] Running a big exe program with pyton Programming Software Development by Oron123 hi, i have a big exe program that i wrote in c# (big means that i have a lot of class in it), i want to write a script in python that will check the program. what is the right way to check the program, convert the c# program to dll and to create an instants of my classes, or to load the Exe program to the python ? thanks, Oron Re: Running a big exe program with pyton Programming Software Development by jcao219 [QUOTE=Oron123;1165832]hi, i have a big exe program that i wrote in c# (big means that i have a lot of class in it), i want to write a script in python that will check the program. what is the right way to check the program, convert the c# program to dll and to create an instants of my classes, or to load the Exe program to the python ? thanks… Re: Running a big exe program with pyton Programming Software Development by Tech B you can also use ctypes. [code] from ctypes import * myDLL = cdll.LoadLibrary('nameOfDll.dll') [/code] Re: Running a big exe program with pyton Programming Software Development by jcao219 [QUOTE=Tech B;1166619]you can also use ctypes. [code] from ctypes import * myDLL = cdll.LoadLibrary('nameOfDll.dll') [/code][/QUOTE] He wrote the .dll in C#. cdll can only load dlls written in C or C++. C# dlls are .NET assemblies, built with MSBUILD, which are extremely different. I'm afraid IronPython is the only way for this … Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by momus How to suppress end user ability to edit/add/delete text in a Text widget? (Python v3.2.. and tkinter) The point is to [B]suppress only the ability to change/add/delete text[/B] but not to castrate other features. Perhaps a NoEdit Text widged would be a better name. I've tried [B].text['state'] = 'disabled'[/B] and it works [I]almost[/I] OK … Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by JoshuaBurleson Why don't you just use a label widget? Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by momus Because the Label widget does not provide features which I need (although Text also disables some of them with "disabled", which is the issue here). User will interact with program by selecting a line or a portion of the text. I think [B]Label does not allow user to select and see, nor the program to see what user selects[/B]. And … Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by woooee [url=http://pmw.sourceforge.net]Pmw[/url] has a nice set of extensions to Tkinter. I would take a look at ScrolledText for starters, as it has a [url=http://pmw.sourceforge.net/doc/ScrolledText.html]get method[/url], as do TextDialog and other similar widgets (I think). Pmw also has curselection and getcurselection methods, in the combobox and … Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by momus Re: Pmw Thanks, but I don't think I want to experiment with a new GUI library every time there is a problem. from what I read, all of them are buggy and with major problems. Many still do not work with v3.x Python, and behave different on different platforms or don't even support them. If I can't solve the basic problems with Python+Tkinter, I'd … Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by JoshuaBurleson [QUOTE=momus;1669708]Because the Label widget does not provide features which I need (although Text also disables some of them with "disabled", which is the issue here). User will interact with program by selecting a line or a portion of the text. I think [B]Label does not allow user to select and see, nor the program to see what user … Re: Read Only Text widged ; cross platform, tkinter+pyton 3.2 Programming Software Development by momus [QUOTE=pyguy62;1669853]What exactly do you mean select and see, how is the user selecting? I need more context.[/QUOTE] Two cases now: 1. User double-clicks on a word. In the program I catch this with a bind and get the line.column (Like [ICODE]self.txt.bind('<Double-1>', self.lineSelection)[/ICODE] ) The binding works … Unexpected behavior of static variables in pyton Programming by Prateek_2 I am learning django, here is the model i have created class UserProfile(models.Model): name = models.CharField(max_length=50, verbose_name="Name") login = models.CharField(max_length=25, verbose_name="Login") password = models.CharField(max_length=100, verbose_name="Password") … Re: Unexpected behavior of static variables in pyton Programming by Gribouillis I know very little about django, but obviously it is a part of the ORM magic. You could try return str(UserProfile._meta.get_field('name')) https://docs.djangoproject.com/en/1.8/ref/models/meta/ It is a strange way to define `__str__()` anyway, because `__str__()` is typically an instance method. Re: What's the story behind your username? Community Center Geeks' Lounge by mike_2000_17 … what it means! >Also python (the animal) is spelled pyton in Finnish. Yeah, when a finnish colleague of mine proposed… to use "pyton" for a project we had, said in the finnish… Re: What's the story behind your username? Community Center Geeks' Lounge by mrnutty … it means! > > Also python (the animal) is spelled pyton in Finnish. > Yeah, when a finnish colleague of mine… proposed to use "pyton" for a project we had, said in the finnish… Re: For loops with number Programming Software Development by MrShoot I made some progress, I'm using the range function built in pyton. All good now :)