Hi guys,<br>
<br>
I'm really lost of on this one.  How can I turn this (VB?) code
into Python?  Basically I call a function exposed from a dll and
it returns me what I believe is a pointer to a location in
memory?  Now I need to read that area to get the string I
need.  This link has the solution but it is written in VB:<br>
<a href="http://www.contactreview.com/mb/showflat.php/Cat/0/Number/15670/an/0/page/14">http://www.contactreview.com/mb/showflat.php/Cat/0/Number/15670/an/0/page/14</a>   (it's the third post down)<br>
<br>
I have to think Python would have something similiar.<br clear="all"><br>
Below is my relevant source code just in case you need that too.<br>
<br>
I really appriciate any help anyone might have.<br>
<br>-- <br>Gregory Piņero<br>Chief Innovation Officer<br>Blended Technologies<br>(<a href="http://www.blendedtechnologies.com">www.blendedtechnologies.com</a>)<br>
<br>
#---My code: (testing the GOLDMINE API)<br>
from ctypes import *<br>
windll.LoadLibrary('GM6S32.dll')<br>
windll.GM6S32.GMW_LoadBDE('J:\\','J:\\GMBase\\',r'J:\\Common\\','user','pw')<br>
windll.GM6S32.GMW_NV_SetValue(container,"AccountNo", "(310)555-1212")<br>
#finally, I call a function to see what I stored:<br>
windll.GM6S32.GMW_NV_GetValue(container, "AccountNo", "'(none)'")<br>
#it returns 16236360 <br>
#Now I need to access the string related to this somewhere ...<br>
<br>
<br>
<br>