Re: [MSEide-MSEgui-talk] Mse Data Aware component Tutorial

2011-12-12 Thread Martin Schreiber
On 12/08/2011 07:57 PM, nore...@z505.com wrote: I was thinking for CGI someone could drop components on a form like database connections, to hide this code away to not bloat up the main program code with connections and passwords etc. For example.. I drop some database components onto a

[MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Looks most appropriate amongst others for crypting both single- multibyte data. -- Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is holding a special Learn Windows Azure training event for developers. It

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/12/2011 04:40 PM, IvankoB wrote: Looks most appropriate amongst others for crypting both single- multibyte data. I don't understand. Martin -- Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is

[MSEide-MSEgui-talk] News from MSEide+MSEgui

2011-12-12 Thread Martin Schreiber
Hi, MSEide+MSEgui 2.8rc1 for FPC 2.6 has been released: http://sourceforge.net/projects/mseide-msegui/files/mseide-msegui/2.8rc1/ There is also a new beta for MSEgit: http://gitorious.org/mseuniverse/mseuniverse/trees/msegit_release_0_8_2/tools/msegit A screenshot is here:

Re: [MSEide-MSEgui-talk] Default Form Clicks (RAD)

2011-12-12 Thread noreply
Hallo nore...@z505.com, Du schriebst am Sun, 11 Dec 2011 13:01:01 -0600: I enjoy the ability to do quick rad like delphi, but also to do more advanced procedure naming like mse offers. with delphis quick rad, you can You _can_ also created sensibly named event handlers in Delphi, That's

Re: [MSEide-MSEgui-talk] website links

2011-12-12 Thread wahono sri
I am familiar with Drupal and am willing to do some work on the website. What version of Drupal is it? Drupal 6.22, please register to msegui.org, and I will change you to admin. My English very bad, than I can't do any more with msegui.org content. Thanks

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/13/2011 06:10 AM, IvankoB wrote: Looks most appropriate amongst others for crypting both single- multibyte data. I don't understand. PChar or AnsiString ? In which context? Martin -- Systems Optimization

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
PChar or AnsiString ? In which context? Per char access plus string length. -- Systems Optimization Self Assessment Improve efficiency and utilization of IT resources. Drive out cost and improve service delivery.

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Per char access plus string length. I still don't get the question. Please explain. How to pass it to C function expecting unsigned char* ? PChar(utf8_string) len=strlen(utf8_string) or @utf8_string[1] len=length(utf8_string)? BTW, the utf8_string is produced by stringtoutf8(msestring)

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/13/2011 08:31 AM, IvankoB wrote: Per char access plus string length. I still don't get the question. Please explain. How to pass it to C function expecting unsigned char* ? PChar(utf8_string) len=strlen(utf8_string) This returns a pointer to #0 in case utf8_string = ''. or