Search the web
Sign In
New User? Sign Up
pythonfordelphi · Python for Delphi
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1284 - 1313 of 1313   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1284
Hi, This won't work simply because compiling is not executing!!!! Compile will return a code object that is executable. I would say that the simplest thing to...
Morgan Martinet
morgan_martinet
Offline Send Email
Aug 12, 2007
3:59 am
1285
Hi Andre There is a very simple way to do this, if you need to compile a few .py files into the executable: Drop a TMemo onto a form, then paste the text of...
Rich Wright
richardander...
Offline Send Email
Aug 12, 2007
11:31 am
1286
pe:=TPythonEngine.Create(nil); pe.ExecString(....) the code above will raise exception. Drop a TPythonEngine on the main form at design time works fine. So,...
daydaysy
Offline Send Email
Sep 6, 2007
5:44 am
1287
sorry for the thread. I've found an old thread in this group and I know how to settle it now....
daydaysy
Offline Send Email
Sep 6, 2007
5:52 am
1288
All I want to be able to do is take the output of a script and send it to delphi to be sent to another program (I am using delphi as my GUI!).And I want to...
babeyboom817
Offline Send Email
Jan 6, 2008
3:04 am
1289
That's exactly what I'm doing right now. If you're like me, believing that delphi with python is a match made in heaven, Python4Delphi would naturally be the...
Sakesun Roykiattisak
sakesun.rm
Offline Send Email
Jan 6, 2008
1:47 pm
1290
That's right that integrating Delphi and Python via plain XML over a HTTP channel is the simplest solution but it really depends on what you want to do! This...
Morgan Martinet
morgan_martinet
Offline Send Email
Jan 7, 2008
3:08 am
1291
From my experience Py4D is really great. I actually have done some experimental project to wrap TClientDataSet for Python with Py4D. I remember that I actually...
Sakesun Roykiattisak
sakesun.rm
Offline Send Email
Jan 7, 2008
4:49 am
1292
Beginner question... I've browsed the 32 demos that come with P4D, but perhaps I don't quite understand what's going on there or am unfamiliar with the ...
marekjed
Offline Send Email
Jan 14, 2008
3:31 am
1293
Hi, I think that you missed Demo31 which shows how you can benefit from the TPyDelphiWrapper component (from the WrapDelphi.pas and WrapDelphiVCL.pas units)....
Morgan Martinet
morgan_martinet
Offline Send Email
Jan 14, 2008
3:43 am
1294
Thank you, Morgan. I looked at Demo 31, but it seems to be concerned with creating Delphi forms from Python, which is much more than I need. (I thought Demo 08...
marekjed
Offline Send Email
Jan 14, 2008
4:42 am
1295
IFreeNotification is required for events because the event manager will create a proxy TEventHandler class that will turn the Delphi event into a Python method...
Morgan Martinet
morgan_martinet
Offline Send Email
Jan 14, 2008
5:05 am
1296
Okay, I've tried to follow what happens in TTestClass, minus the interfaces, but cannot yet get this to work. When Python script tries to access a published...
marekjed
Offline Send Email
Jan 14, 2008
12:54 pm
1297
I'm sorry, scratch the previous message, the property problem was caused by syntax error on the Python side. I can now get and set published properties...
marekjed
Offline Send Email
Jan 14, 2008
7:09 pm
1298
Yes, look at the wrappers in the various WrapDelphiXXX units and do the same, but it will require some Python API skills, understanding reference counting, how...
Morgan Martinet
morgan_martinet
Offline Send Email
Jan 14, 2008
7:21 pm
1299
Thanks, Morgan, a lot for all your help! marek...
marekjed
Offline Send Email
Jan 15, 2008
12:34 am
1300
I have just discovered this group and P4D. I was a Senior Developer Support Engineer for Borland Delphi during the Delphi 2 to Delphi 4 days. I am now a Python...
Chaim Krause
chaim_krause
Online Now Send Email
Jan 29, 2008
2:34 am
1301
Hi, ... Great! ... Yes it works fine, as any component for D2006, because D2007 is binary compatible with D2006 DCUs! Anyway, it compiles and works fine. Bye, ...
Morgan Martinet
morgan_martinet
Offline Send Email
Jan 29, 2008
2:37 am
1302
... You know what; I'm still maintain a system written in Delphi4. :) Two issues remain to be fixed today... :(...
Sakesun Roykiattisak
sakesun.rm
Offline Send Email
Jan 29, 2008
3:09 am
1303
FWIW, Not Delphi4 issue, but my own mistake, however. :-| ... From: "Sakesun Roykiattisak" <sakesun@...> To: pythonfordelphi@yahoogroups.com Cc: ...
Sakesun Roykiattisak
sakesun.rm
Offline Send Email
Jan 29, 2008
3:09 am
1304
Hello, im having problems when dec the reference count of a module dict (the problem happens on Py_DECREF(pDict); ) If i dec the module dict reference count,...
Arthur Pires
arthurprsll
Offline Send Email
Feb 10, 2008
9:51 pm
1305
Hi! What are you using? Where's TPythonEngine? Are you using your own mapping of the python dll? Anyway, you must check all your API calls to see if they...
Morgan Martinet
morgan_martinet
Offline Send Email
Feb 11, 2008
12:11 am
1306
hi, thanks for all the info, im using unit based on TPythonengine to communicate with pythondll, anyway, it solves my problem, thanks again...
Arthur Pires
arthurprsll
Offline Send Email
Feb 11, 2008
3:28 am
1307
I am trying my best to make a mud in Delphi and using Python as the scripting language. A mud is nothing more then a text base rpg game that can be played...
babeyboom817
Offline Send Email
Mar 7, 2008
9:30 pm
1308
I don't understand your problem. Is your server 100% written in Python and just a process listening to client requests made by a Delphi desktop application? ...
Morgan Martinet
morgan_martinet
Offline Send Email
Mar 8, 2008
5:54 pm
1309
Let me see if I can explain it better. The server itself is written in Delphi. Python does nothing but controls the scripting and this done server side. The...
babeyboom817
Offline Send Email
Mar 8, 2008
10:55 pm
1310
Hi, Is there any issue between delphi memory manager (FastMM) with python memory manager? i got access violation on Python25.dll occasionally, specifically on...
Jaimy Azle
kang_jaim
Offline Send Email
Jun 30, 2008
3:27 am
1311
I have been using python24.dll with FastMM for a few years without problems. I assume that Python has its own heap, and I doubt there is any interaction...
Oliver Bock
oliverbock
Offline Send Email
Jun 30, 2008
4:22 am
1312
... Thanks, while lastly I found my code that causing the bug, it seems quite difficult to trace reference count on which live objects that causing memory...
Jaimy Azle
kang_jaim
Offline Send Email
Jul 14, 2008
1:49 am
1313
Hi everyone, Hope this is ok to post here... You can see a list of my groups on Grouply at the link below. Maybe you'll find some you want to join. Robert ...
Robert Mills
rmills764
Offline Send Email
Jul 15, 2008
6:00 pm
Messages 1284 - 1313 of 1313   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help