PythonCard help? Programming Software Development by vmars …stepping thru the "Changing a PythonCard Application" @ [url]http://pythoncard.sourceforge.net/walkthrough1.html[/url] With…$" """ # from PythonCard import model <==Original, next line = change from… PythonCard import dialog, model class Minimal(model.Background… Re: Pythoncard notebook Programming Software Development by floatingshed Clearly no-one has any knowledge or interest. For future reference this link is to the necessary documentation and examples which for some reason were left out of the distributed docs... [url]http://ignum.dl.sourceforge.net/project/pythoncard/PythonCard/0.8.1/testNotebook.zip[/url] Pythoncard radio buttons Programming Software Development by floatingshed I'm just starting out with Python and like the way pythoncard handles the graphics for me. However I cannot work out how to get the data from the radio buttons. The radiobutton.html page is missing from the docs! I've exhausted google (its 4.30am!) and have had no luck. Please somebody give me some clues... Pythoncard notebook Programming Software Development by floatingshed Does anyone here have any experience of the notebook widget in PythonCard? I can't figure it out and it is missing from the docs... Thanks. Help in pythonCard Programming Software Development by radical43144 This is my class project to be made in pythonCard : A local community centre desires to have a user friendly … groups, and what kind of list should i use in pythonCard to carry this out ! Re: Help in pythonCard Programming Software Development by radical43144 …) pickle_file.close() [/code] ---------------------------------------------------------------- filename = adduser.py [code] from PythonCard import model from user import * class addUser(model.Background): global…15 22:13:31 $" """ from PythonCard import dialog,model import wx from adduser import * from … Re: Help in pythonCard Programming Software Development by radical43144 [CODE] # Filename: MultiCol.py from PythonCard import dialog,model import wx from adduser import * from user … Re: Help in pythonCard Programming Software Development by radical43144 [CODE]filename = adduser.py from PythonCard import model from user import * class addUser(model.Background): global … Re: Help in pythonCard Programming Software Development by vegaseat For those who might be interested, PythonCard is a somewhat outdated (last activity 2006) form builder for wxPython projects. Browse...(Pythoncard) Programming Software Development by james.lu.75491856 How do you get this: ![78dfa722ac966be9e9aa3a44ef62d566](/attachments/large/3/78dfa722ac966be9e9aa3a44ef62d566.PNG "78dfa722ac966be9e9aa3a44ef62d566") with pythoncard? Re: Browse...(Pythoncard) Programming Software Development by vegaseat Not sure if PythonCard has this in its widget list. With wxPython you have to ... **import wx.lib.filebrowsebutton** Re: Pythoncard radio buttons Programming Software Development by woooee Generally you use GetLabel() or event.GetEventObject().GetLabel(). Search on those for some examples. pythoncard standaloneBuilder trouble Programming Software Development by SamarthWiz I am having trouble with the standalone builder I keep on getting this Message: [CODE] I: Dependent assemblies of C:\Python27\python.exe: I: x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none checking Analysis building Analysis because outAnalysis0.toc non existent running Analysis outAnalysis0.toc Analyzing: C:\Users\Samarth\Desktop… Re: pythoncard standaloneBuilder trouble Programming Software Development by SamarthWiz It just started working ike magic no help needed now Re: Help in pythonCard Programming Software Development by woooee [QUOTE=;][/QUOTE] You would use a dictionary of lists, The dictionary key is the person's name or ID, pointing to a list that can contain multiple activities for that person. Re: Help in pythonCard Programming Software Development by TrustyTony Please fix your enter key and use CODE tags. Please explain your package structure and what does not function in it. Re: Help in pythonCard Programming Software Development by radical43144 [CODE]#filename: user.py import pickle # The User class holds data about the user details. class User(): id = 1 #The __init__ method initializes that all attributes are null. def __init__(self): self.myList = [] self.id = User.id User.id +=1 name = None address = None contact = None email = None # The set_name method … Re: Help in pythonCard Programming Software Development by radical43144 Now the problems: 1. I cant get my self.id to display in the list. I want the ID to increase by 1 as each user is added. I used this method [CODE]self.id = User.id User.id +=1[/CODE] 2. i want to diplay only (self.id,self.name) in the multicolumn list self.components.multiCol.items but it treats row = ("", self.name, self.address,… Re: Help in pythonCard Programming Software Development by vegaseat Please use code tags with your code to preserve the indentations. Otherwise the code is very difficult to read and not too many folks will help. [noparse][code][/noparse] your properly indented Python code here [noparse][/code][/noparse] Re: Help in pythonCard Programming Software Development by woooee A proof that your concept is correct, so any problem must lay somewhere else. And you should not use "id" as a variable name as it is already used by Python. [code]import pickle class User(): id = 1 def __init__(self): self.id = User.id User.id +=1 dict_of_classes = {} for name in ["Bill", "Sally… Re: Browse...(Pythoncard) Programming Software Development by vegaseat For an example take a look at ... http://www.daniweb.com/software-development/python/code/459779/select-a-sound-file-and-play-it-wxpython Re: struggling with custom dialog Programming Software Development by floatingshed Pythoncard called my custom dialog dialogTemplate so I have … original it looks like this: [CODE]import wx from PythonCard import dialog, model import dialogTemplate class MyApp(model.Background): … event): self.MyDialog()[/CODE] Everything else is just as Pythoncard created it. The second piece of code is called dialogTemplate… struggling with custom dialog Programming Software Development by floatingshed …'m trying to create a custom dialog using pythoncard. My main program looks like this (I…'m only testing!): [CODE]import wx from PythonCard import dialog, model import MyDialog class MyApp(model.Background…self.MyDialog()[/CODE] The simple Pythoncard dialog looks like this: [CODE]from PythonCard import model class MyDialog(model.CustomDialog… Chinese Dictionary Programming Software Development by trihaitran … OS 10.4 and I have tried going through the PythonCard tutorial, but there is one thing I cannot figure out…. How do I turn the PythonCard files into a *.app executable that will run on the… Mac. Also is PythonCard even the best thing to use for this project? I… Another newbie question about buttons Programming Software Development by floatingshed I've used Pythoncard to create my gui. Here it is in heavily condensed … from Tkinter import * from pathman import path from PythonCard import dialog, model from PythonCard.components import button, statictext, radiogroup class VidToad(model… Re: struggling with custom dialog Programming Software Development by John_43 read the pythoncard doc on child windows, that should work Re: Another newbie question about buttons Programming Software Development by floatingshed … posted so there is nothing to disable. [/QUOTE] This is Pythoncard so the button setup is contained in the resource file… Re: Another newbie question about buttons Programming Software Development by woooee You have to have access to the button object and set enabled to False. I don't know of anyone here who uses PythonCard so we can't help much. FITS image dispaly using python Programming Software Development by anderson I am writing an application using python to display a FITS image file. I am using pythoncard to build GUI for my application.I can display image files in jpeg, .png, etc . but I am not able to dispaly FITS image in the same application...I donot understand why I am unable to display fits image.... Simple appendText problem Programming Software Development by p34i … # print line ref=ref+1 using python 2.7 and pythoncard on win64