Forum: Python Feb 2nd, 2009 |
| Replies: 5 Views: 427 This might be of help
Pickle (http://docs.python.org/library/pickle.html) |
Forum: Python Sep 23rd, 2008 |
| Replies: 3 Views: 568 Ok so i found that out ... we need use the 'variable' and 'value' properties of the radiobutton
something like:
... |
Forum: Python Sep 21st, 2008 |
| Replies: 3 Views: 568 hi..
I havn't checked the links yet but this example is not what i want, Here we are calling a separate command for each menu option, however i have to be able to call the same command for each Menu... |
Forum: Python Sep 19th, 2008 |
| Replies: 3 Views: 568 Hi,
The same code as my previous post, but because of this list thing, i'm not able to run specific commands for different options. Here i have 2 options under the 'Names' Menu, 'rajat','prasun',... |
Forum: Python Sep 19th, 2008 |
| Replies: 2 Views: 2,294 simple and exact ... worked perfectly... Thanks a lot. |
Forum: Python Sep 19th, 2008 |
| Replies: 2 Views: 2,294 Hi,
Below is my test code, i have a list of names in a file, i read the names and i have to insert them as menu options in the menubar. Since its a dynamic menu and people can add new menu's it... |
Forum: Python Jul 28th, 2008 |
| Replies: 0 Views: 697 This is my code for a chat client. I create a simple UI with a text box for viewing the chat and an entry widget to write messages. There's a button called 'Connect', when i click this i start a new... |
Forum: Python Jul 18th, 2008 |
| Replies: 3 Views: 992 yes you need to make it multi-threaded. Everytime the user clicks on the button it can spawn a new thread which does the work and the button is free for input. i think this code should help you
... |
Forum: Python Jul 9th, 2008 |
| Replies: 8 Views: 1,806 You need to give more info dude. As far as usage is concerned just look into any python tutorial on WWW |
Forum: Python Jul 4th, 2008 |
| Replies: 2 Views: 1,011 From the package Manager you can install 'DrPython' . It's a neat IDE for writing/debuggin/executing python scripts. |
Forum: Python Jul 4th, 2008 |
| Replies: 2 Views: 3,068 Use the 'sleep' function available in 'time' module. |
Forum: Python Jul 2nd, 2008 |
| Replies: 4 Views: 644 hex2bin[h] will give the value for the key 'h'.
i executed each statement separately, without declaring the dictionary and the output will make things very clear to you
>>number=1000
>>for h... |
Forum: Python Jun 28th, 2008 |
| Replies: 1 Views: 713 Hi,
I have 2 modules, grepforapp.py and myApp.py. Basically i'm trying to make a 'search' utility. myApp makes the UI with one textbox for taking input, start button and a list box which... |
Forum: Python Jun 24th, 2008 |
| Replies: 3 Views: 1,185 worked like a charm... thanks a lot Wayne ... i didnt know about this 'readlines' function. |
Forum: Python Jun 24th, 2008 |
| Replies: 3 Views: 1,185 Hi,
When i search for a pattern in a file how do i get the line and line#? basically i want to replicate the 'grep' command functionality. Now i can easily say whether the pattern exists or... |
Forum: Python Jun 20th, 2008 |
| Replies: 1 Views: 1,480 Hi Guys..
Can someone explain to me what's the difference between sending any data over a socket vs sending an http request? i mean sending an http request would also be happening over a TCP... |