Re: [Gambas-user] Unexpected error after install v. 3.8.0.

2015-09-06 Thread Almanova Sistemi
Il 05/09/2015 04:33, Benoît Minisini ha scritto: > Le 04/09/2015 07:54, Almanova Sistemi a écrit : >> Hi everyone, >> >> I am new to this mailing list and I greet all the members of the list. >> >> I hope I can contribute to solving the problems and, of course,

[Gambas-user] Unexpected error after install v. 3.8.0.

2015-09-03 Thread Almanova Sistemi
Hi everyone, I am new to this mailing list and I greet all the members of the list. I hope I can contribute to solving the problems and, of course, be helped to solve my problems. Now my problem: after install gambas3 version 3.8.0 on opensuse 13.2 from http://download.opensuse.org/repositori

Re: [Gambas-user] gambas3 and web services

2011-06-23 Thread Almanova Sistemi
this stage? I've done POSTing of parameters in Gambas (somewhere, I have to look for the code!) Can you share the WSDL and/or any existing client code with us? Regards, Caveat On Mon, 2011-06-20 at 09:37 +0200, Almanova Sistemi wrote: > Hallo to everyone, > > I am Massimo and I try t

Re: [Gambas-user] gambas3 and web services

2011-06-21 Thread Almanova Sistemi
bas (somewhere, I have to look for the code!) Can you share the WSDL and/or any existing client code with us? Regards, Caveat On Mon, 2011-06-20 at 09:37 +0200, Almanova Sistemi wrote: > Hallo to everyone, > > I am Massimo and I try to write a client software (in gambas 3) that use >

[Gambas-user] gambas3 and web services

2011-06-20 Thread Almanova Sistemi
Hallo to everyone, I am Massimo and I try to write a client software (in gambas 3) that use a web services. In other word the software send data with saop protocol an receive data with the same protocol. The information about the availebe services are described in a WSDL file. Now, hor Can I d

[Gambas-user] Table view edit

2010-12-13 Thread Almanova Sistemi
Hello to everyone, I try to write a program in gambas2 (2.21) with table view and everything works fine. The only problem I have is using the method tableview.edit: how can I exit from edit when I press return or esc key? Thank's Massimo. -

[Gambas-user] Table View edit question

2010-09-04 Thread Almanova Sistemi
Hello to everyone, I am writing a gambas program that uses the control tablewiev. My problem is how to exit from tableview.edit when I press Return or Enter key. I tried tableview.cancel in tableview_save event but I get the message "null object" Why? Thanks ---

[Gambas-user] Problem to play flash (svf) movie

2009-09-03 Thread Almanova Sistemi
Hello to everyone. I'm writing an application in gambas2 for play various movies files. I don't have any problems with mplayer that works very well but I can't play flash movies. I use gnash for this. My code: PUBLIC SUB Play() DIM aHandle AS NEW Pointer[] SELECT CASE LCase(Right(NumImmagini

Re: [Gambas-user] Stickers

2008-10-25 Thread Almanova Sistemi
Doriano Blengino ha scritto: > Almanova Sistemi ha scritto: > >> Hi All, >> >> I try to write an application for print some stickers and I need to format >> the text in vaious mode (undelined, bold, italics) various color as >> alignment. >> >>

[Gambas-user] Stickers

2008-10-20 Thread Almanova Sistemi
Hi All, I try to write an application for print some stickers and I need to format the text in vaious mode (undelined, bold, italics) various color as alignment. I tried with TextArea, Editor and TextEdit but I have not received a satisfactory result. The only way to format a text is to use Tex

[Gambas-user] Text formatting in TextArea

2008-10-16 Thread Almanova Sistemi
Hello, in first tank's to Doriano Blengino and Stefano Palmeri for suggestion about TableView. I have followed the second suggestion from Doriano Blengino. Now I have a new problem: I need to modify part of text in TextArea. E.g.: I have a text like "bla bla bla ..." and I nedd to have "bla *bl

Re: [Gambas-user] Table view

2008-10-14 Thread Almanova Sistemi
Stefano Palmeri ha scritto: > Il martedì 14 ottobre 2008 16:28:33 Almanova Sistemi ha scritto: > >> hello, >> >> how I can resize the height of a row of a table-view during run time ? >> >> Thank's >> >> > > i.e.: > > Tabl

[Gambas-user] Table view

2008-10-14 Thread Almanova Sistemi
hello, how I can resize the height of a row of a table-view during run time ? Thank's Massimo. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with M

Re: [Gambas-user] How to lock a file

2008-09-26 Thread Almanova Sistemi
I need to lock the file to avoid writing by another user in multiuser environment nando ha scritto: > Can you tell why you have to lock it.. > for what reason? > > > -- Original Message --- > From: Almanova Sistemi <[EMAIL PROTECTED]> > To: mailing li

[Gambas-user] How to lock a file

2008-09-24 Thread Almanova Sistemi
Hi, I have a problem with LOCK I am writing an application in gambas (2.7.0-2.1) on opensuse 10.3 - 11.0 and I need to lock a file after open it. My code: ... DIM hfile as File DIM sNameFile as String sNameFile = "SomeFile" hfile = OPEN sNameFile FOR INPUT OUTPUT TRY LOCK hfile IF ERROR then

Re: [Gambas-user] How to lock a file

2008-09-18 Thread Almanova Sistemi
NPUT or OUTPUT keyword are specified, then the input-output > are buffered. > > > Maybe for that ? > > > 2008/9/17 Almanova Sistemi <[EMAIL PROTECTED]>: > >> Hi, >> >> is the first time that I write to list, but i have a problem. >> >>

[Gambas-user] How to lock a file

2008-09-17 Thread Almanova Sistemi
Hi, is the first time that I write to list, but i have a problem. I am writing an application in gambas (2.7.0-2.1) on opensuse 10.3 - 11.0 and I need to lock a file when I open it. My code: ... hfile = OPEN "/usr/far/alman/NOMEFARM.DAT" FOR INPUT OUTPUT TRY LOCK hfile IF ERROR then ... END