On Oct 3, 2011, at 7:42 AM, Eurico Chagas Filho wrote: > But one thing that i miss much is a book like Hacker's Guide, is there > something > similar for Python ? > There are so many libraries( packages), that it is hard to know what is best.
I guess working in a limited product like VFP has its advantages: not as many confusing choices! There are lots of great books on Python for developers who know how to code but who are new to the language. However, I would start with two online resources: The tutorial on python.org (http://docs.python.org/tutorial/), and Dive Into Python (http://diveintopython.org/toc/index.html). As far as choosing among libraries, start with the standard library (the ones included with Python). If you get stuck deciding, you can always ask questions on the ProPython or dabo-users lists. > All I want is to allow access to my program from the web with the same > interface. > But, in my program I have a menu like excel 2007, reports that print pdf and > more. > I have charts, control of the mouse and I call DLLs for a special printer. My > forms > use the gradient effect, some fade as do command buttons, they can be modal or > MDI. Special grid-class for look-up and I have tamed grids so u can type in. > I have dtapickers, moverlists and trees, clocks and some more. > > Will I ever achieve that in Python+Dabo ? Let me ask you a question first: have you ever seen any web application that had those things? I haven't. The web uses a completely different approach to UI; you will not be able to match a desktop application's look and feel exactly. There are several JavaScript libraries available that provide some richer interfaces than you can get with plain HTML, but they are still limited in what they can do. Another thing is that Dabo is a *desktop* application framework, so if you're looking to create a web application, you should consider a web application framework such as Django. -- Ed Leafe _______________________________________________ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/12eee185-53be-4553-8564-46b8843a7...@leafe.com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.