Re: [Gambas-user] OOP and TextBox

2008-11-21 Thread Jacky
Press() > IF Key.code = Key.right THEN > {dosomething with the entry then} > txt1.SetFocus > ENDIF > END Salut This is an example i have made for my program. I hope it is that you want ? Jacky Test_tableview.tar.gz Description: application/tgz ---

Re: [Gambas-user] Gambas-user Digest, Vol 30, Issue 46

2008-11-20 Thread Jacky
gambas2-x.x.x/comp/src cordialement Jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip

Re: [Gambas-user] gb.db autoincrement ?

2008-10-16 Thread Jacky
ing to ask here... Perhaps, i don't know :) If your key name is "lind" or other name if you want db AS NEW Connection Tab = "files" TRY db.Exec("ALTER TABLE " & Tab & " DROP PRIMARY KEY ") TRY db.Exec("ALTER TABLE " &

Re: [Gambas-user] reports in gambas

2008-09-08 Thread Jacky
> Hi, Hi, Here is a simple example which show you how to generate reports with the component gb.report Warning. This program work with kprinter ( you need kdeprint libraries in your system ) Jacky Print_ex-0.0.1.tar.gz Description: application/tgz -

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Jacky
el.caption = ListBox.list[1] Jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Jacky
; Regards, Sevoir Use label.Text is better no ? Jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Jacky
Le Tuesday 26 August 2008 13:45:36 Fox, vous avez écrit : > Jacky wrote: > > Columnview.MoveFirst > > REPEAT > > Columnview.Item.Selected = TRUE > > 'here that you want to do with each data, Columnview.Item[1], > > Columnview.Item[2], Colum

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Jacky
in a file, in a variant array[][] ... > or where you want Columnview.MoveFirst REPEAT Columnview.Item.Selected = TRUE 'here that you want to do with each data, Columnview.Item[1], Columnview.Item[2], Columnview.item[3] etc... UNTIL Columnview.Movenext() Jac

Re: [Gambas-user] Loading an SVG...

2008-08-25 Thread Jacky
ics/SVGFiles/TestImage1.svg") Hello Steve, I never works with svg file but try to use image.load hImage = Image.Load("/home/bungayst/Graphics/SVGFiles/TestImage1.svg") Jacky - This SF.Net email is sponsored

Re: [Gambas-user] Null objet avec gb.net.smtp

2008-07-25 Thread Jacky
il, It's an error of me. Jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip fo

[Gambas-user] Null objet avec gb.net.smtp

2008-07-25 Thread Jacky
omme ca avant, il me semble ? Et la doc donne la même syntaxe aussi. Mandiva 2008.1 Gambas 2.7 Merci. jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux b

Re: [Gambas-user] Adding headers and footers to printing

2008-07-19 Thread Jacky
ine I just need to understand how > to add the header. > > JB Skaggs Hi, It's still me. in this version you can see or print your result and there is a line in the bottom of page. I think this is the last. Jacky Print_ex-0.0.3.tar

Re: [Gambas-user] Adding headers and footers to printing

2008-07-19 Thread Jacky
Le Saturday 19 July 2008 10:56:53 Jacky, vous avez écrit : > Le Saturday 19 July 2008 07:11:06 jbskaggs, vous avez écrit : > > I switched my program to qt from gtk to add printer capabilities beyond > > just LPR. > > > > Could somebody give me an example how to add

Re: [Gambas-user] Adding headers and footers to printing

2008-07-19 Thread Jacky
ine I just need to understand how > to add the header. > > JB Skaggs Now you can choose the number of copies. Jacky - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linu

Re: [Gambas-user] Adding headers and footers to printing

2008-07-19 Thread Jacky
ine I just need to understand how > to add the header. > > JB Skaggs Hi, Here is a simple example which show you how to add headers, footers, logo and lines. Warning. This program work with kprinter ( you need kdeprint libraries in your system ) Jacky Print_ex-0.0.1.tar.gz D

Re: [Gambas-user] Fonts, sizes and colors

2008-07-15 Thread Jacky
Le Tuesday 15 July 2008 16:46:29 Steven Lobbezoo, vous avez écrit : > Hi Jacky, > > Yes, ... No, i want to change it for the whole app. All forms, menus > textboxes etc. > (and to save it for the next time). Excuse me. I has badly understood your question. For the whole appl

Re: [Gambas-user] Fonts, sizes and colors

2008-07-15 Thread Jacky
ion ==> Tables ==> Articles. Select a line, activate the "Stocké" button, clic the "Enregistrer" button and look at the top. That is that you want, no ? :+) Jacky - This SF.Net email is sponsored b

Re: [Gambas-user] Date difficulties

2008-06-30 Thread Jacky
; Thanks in advance. > > Richard Hello Terry txtDate.txt = "01.01.2008" (this is a french date format : dd.mm.) order.date = Date(Right$(txtDate.txt, 4), Mid$(txtDate.txt, 4,2), Left$(txtDate.txt, 2)) I hope is that you want. Jacky

Re: [Gambas-user] Daynumer /Month

2008-06-27 Thread Jacky
S Integer IF Month(Jrs) < 12 THEN Jrs1 = Day(Date(Year(Jrs), Month(Jrs) + 1, 1) - 1) ELSE Jrs1 = Day(Date(Year(Jrs) + 1, 1, 1) - 1) ENDIF RETURN Jrs1 END Jacky - Check out the new SourceForge.net Marketplace. It's t

Re: [Gambas-user] Daynumer /Month

2008-06-27 Thread Jacky
rg/help/lang/day > > > Regards, > Ron the 2nd salut daynumber = Format$(Now, "dd") Jacky - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just a