[Gambas-user] Release of Gambas 3 RC7

M. Cs. mohareve at ...626...
Sun Dec 25 17:52:33 CET 2011


Hello Benoit!
Congrats for the RC7 and a possible bug with string functions:
This function should return the string in mixed case, but it won't:

Public Sub TextTog2_Click()
Dim intet, gig, a, b As String
Dim insta As String[]
Dim i As Integer
gig = editTitle.Text
insta = Split(gig, " ")
intet = ""
For i = 0 To insta.Count - 1
  a = Left$(insta[i], 1)
  b = Lower$(Mid$(insta[i], 2))
intet = intet & a & b & " "
Next
intet = Trim$(intet)
editTitle.Text = intet
End

It should work like: Im the text -> Im The Text    where the editTitle
is a text input

2011/12/24, Benoît Minisini <gambas at ...1...>:
> As promised, but a bit late, here is the seventh release candidate of
> Gambas 3!
>
> As many bugs as possible were fixed, and a few last-minute new features
> were implemented. Mainly:
>
> * A new "Gambas" highlighting theme for the IDE.
> * A new TabPanel control, that is a TabStrip with thin borders.
> * The ability to define the connection timeout in the database component.
> * gb.report that is almost finished.
>
> See the Release Notes for the full ChangeLog.
>
> Please report any problem as usual...
>
> The final release is planned for the 31 Dec 2011.
>
> Best regards,
>
> --
> Benoît Minisini
>
> ------------------------------------------------------------------------------
> Write once. Port to many.
> Get the SDK and tools to simplify cross-platform app development. Create
> new or port existing apps to sell to consumers worldwide. Explore the
> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
> http://p.sf.net/sfu/intel-appdev
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>




More information about the User mailing list