Re: [fpc-pascal] Crosscompiled ARM program crashes with segfault

2009-08-26 Thread Jonas Maebe
On 26 Aug 2009, at 21:52, Jonas Maebe wrote: On 26 Aug 2009, at 21:48, Hartmut Eilers wrote: Can anybody give me hints how to tackle down this problem ? You will have to compile a new cross compiler. The compiler you downloaded is very old (December 2007) and several ARM-related bugs ha

Re: [fpc-pascal] Crosscompiled ARM program crashes with segfault

2009-08-26 Thread Jonas Maebe
On 26 Aug 2009, at 21:48, Hartmut Eilers wrote: Can anybody give me hints how to tackle down this problem ? You will have to compile a new cross compiler. The compiler you downloaded is very old (December 2007) and several ARM-related bugs have been fixed since then. Jonas

[fpc-pascal] Crosscompiled ARM program crashes with segfault

2009-08-26 Thread Hartmut Eilers
Hallo All, I have the problem that a bit more complex programs just crash with segfault. Simpler programs work. I had a lot of problems to get things done, and perhaps I did something wrong. So I describe my setup as detailed as possible: I use the crosscompiler version 2.3.1 for windows from ftp

Re: [fpc-pascal] Does Anybody Know how to REALLY kill an App on Pocket Pc?

2009-08-26 Thread epergola
Felipe thanks, but i found the perfect solution, I think. Actually the indo ia from lyh1 in a post in Lazarus forum (titled 'FullScreen Application'). If in resetpda I use hkeyboard:=FindWindow('menu_worker',''); instead of hkeyboard:=FindWindow('MS_SIPBUTTON','MS_SIPBUTTON'); it works like a

Re: [fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Nataraj S Narayan
Hi The customer want it that way. May be don't like to expose Sql server to the world. ITC of wrong validation, browser shows:- ERROR: 401 Access Denied HResult: 0x80046000 Source: Microsoft SQL isapi extension Description: Access denied regards Nataraj On Wed, Aug 26, 2009 at 5:57 PM, Henry

Re: [fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Henry Vermaak
2009/8/26 Nataraj S Narayan : > Hi > > The following URL gives me a XML output  in any browser , after > validating username and password:- > >  http://"Some IP > address"/handheld?sql=select+*+from+branchdesc+for+xml+auto&root=my-mssql-database > > This connects to a remote MS SQL server based web

Re: [fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Graeme Geldenhuys
Nataraj S Narayan wrote: > > May I have a lttle help? Didn't find any examples in fpc/packages/fcl-xml. Oh, I wasn't sure if you simply wanted to parse the returned xml, or if you wanted to talk to Web Service. Anyway, here is some links you might want to take a look at. http://wiki.lazarus.fr

Re: [fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Nataraj S Narayan
Hi Graeme May I have a lttle help? Didn't find any examples in fpc/packages/fcl-xml. Need to know if anything special needs to be done to connect to underlying SQL server? Or is it purely a webservice? How do I specify username and password? regards Nataraj On Wed, Aug 26, 2009 at 5:30 PM, G

Re: [fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Graeme Geldenhuys
Nataraj S Narayan wrote: > > Can i use "fcl-xml" package to send the query and then parse the xml output? If the return result is xml, I can't see why not. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://opensoft.homeip.net/fpgui/ __

Re: [fpc-pascal] Object properties (note: object not class)

2009-08-26 Thread Neil Graham
On Wed, 2009-08-26 at 13:32 +0200, Jonas Maebe wrote: > On 26 Aug 2009, at 13:21, Neil Graham wrote: > > > Is the absence of properties on Objects an omission by design or > > simply > > because no-one has gotten to it yet? > > They are supported in fpc and in objfpc mode. They are? Wonderful!

[fpc-pascal] Parsing XML from MS SQL webservice using fpc

2009-08-26 Thread Nataraj S Narayan
Hi The following URL gives me a XML output in any browser , after validating username and password:- http://"Some IP address"/handheld?sql=select+*+from+branchdesc+for+xml+auto&root=my-mssql-database This connects to a remote MS SQL server based web service , may be using MIcrosoft IIS server.

Re: [fpc-pascal] Object properties (note: object not class)

2009-08-26 Thread Jonas Maebe
On 26 Aug 2009, at 13:21, Neil Graham wrote: Is the absence of properties on Objects an omission by design or simply because no-one has gotten to it yet? They are supported in fpc and in objfpc mode. Similarly case statements as they appear in records are not supported. That's indeed no

[fpc-pascal] Object properties (note: object not class)

2009-08-26 Thread Neil Graham
Is the absence of properties on Objects an omission by design or simply because no-one has gotten to it yet? Similarly case statements as they appear in records are not supported. I would quite like to have the functionality to do some sort of union on a data structure that also supported (non-vir

Re: [fpc-pascal] Does Anybody Know how to REALLY kill an App on Pocket Pc?

2009-08-26 Thread Felipe Monteiro de Carvalho
LCL-wince does not activate the keyboard upon closing a modal form, Windows CE does this alone and I dont know if this can be prevented. Why dont you just call resetpda in OnActivate? (or both OnCreate and OnActivate) -- Felipe Monteiro de Carvalho ___