[Gambas-user] Gambas-user Digest, Vol 118, Issue 28

Helios Martinez Dominguez helios.cobain.stefani at ...626...
Sun Mar 27 03:27:24 CEST 2016


Color variables are tipically a Long integer value which, to be parsed as
hexadecimal, must be written with and ampersand prior to the hexadecimal
number, without quotes.

ex.:

Dim ForeColor As Long = &DDAA00

Helios Martínez Domínguez

Consorcio Cooperativo Cinematográfico Artístico Musical
Director General


helios.url.ph                                  cccam.esy.es


AVISO LEGAL

La información que contiene este mensaje es privilegiada, confidencial
y se encuentra protegida por la Ley.
Su contenido y archivos adjuntos son para uso exclusivo
de el/la/los destinatario/a/s arriba mencionado/a/s.
Cualquier intercepción, acceso, apertura, uso, difusión
o copia no autorizada están estrictamente prohibidas.
En caso de haberlo recibido por error u otra circunstancia,
elimínelo y notifíque inmediatamente al emisor. Gracias.

Ley_especial_contra_los_delitos_informaticos (Venezuela)
<https://www.unodc.org/res/cld/document/ven/2001/ley-especial-contra-los-delitos-informaticos_html/Ley_especial_contra_los_delitos_informaticos.pdf>

Privacidad y secreto de las telecomunicaciones - Incibe (España)
<https://www.incibe.es/file/bNawLq3IyDBQLGk0udvtsA>

On Fri, Mar 25, 2016 at 7:50 AM, <gambas-user-request at lists.sourceforge.net>
wrote:

> Send Gambas-user mailing list submissions to
>         gambas-user at lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.sourceforge.net/lists/listinfo/gambas-user
> or, via email, send a message with subject or body 'help' to
>         gambas-user-request at lists.sourceforge.net
>
> You can reach the person managing the list at
>         gambas-user-owner at lists.sourceforge.net
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Gambas-user digest..."
>
>
> Today's Topics:
>
>    1. Label1.Foreground = Color("#FF0000"), How to? (abbat81)
>    2. R:  Label1.Foreground = Color("#FF0000"), How to? (Ru Vuott)
>    3. R:  Label1.Foreground = Color("#FF0000"), How to? (Ru Vuott)
>    4. Re: R:  Label1.Foreground = Color("#FF0000"), How to? (abbat81)
>    5. Re: R: Label1.Foreground = Color("#FF0000"), How to? (Yahoo)
>    6. Re: R: Label1.Foreground = Color("#FF0000"), How to?
>       (Fabien Bodard)
>    7. [Gambas Bug Tracker] Bug #892:    ~/.local/share/gambas3/lib is
>       empty (bugtracker at ...3416...)
>    8. Re: QT 5.7 QTWebEngine (Moviga Technologies)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 24 Mar 2016 07:23:22 -0700 (MST)
> From: abbat81 <abbat.81 at ...787...>
> Subject: [Gambas-user] Label1.Foreground = Color("#FF0000"), How to?
> To: gambas-user at lists.sourceforge.net
> Message-ID: <1458829402944-55761.post at ...3046...>
> Content-Type: text/plain; charset=us-ascii
>
> How to use HTML color like #FF0000
>
>
>
> --
> View this message in context:
> http://gambas.8142.n7.nabble.com/Label1-Foreground-Color-FF0000-How-to-tp55761.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 24 Mar 2016 15:54:49 +0000 (UTC)
> From: Ru Vuott <vuott at ...325...>
> Subject: [Gambas-user] R:  Label1.Foreground = Color("#FF0000"), How
>         to?
> To: mailing list for gambas users <gambas-user at lists.sourceforge.net>
> Message-ID:
>         <780822668.4702412.1458834890004.JavaMail.yahoo at ...3424...>
> Content-Type: text/plain; charset=UTF-8
>
> If you want to use HTML tag, you have to use "TextLabel",  no Label.
>
> ************************************
> Public Sub Form_Open()
>
>   TextLabel1.Text = "<Font Color=#B22222>Arma virumque cano"
>
> End
> ************************************
>
> Regards
> vuott
>
>
>
>
>
>
>
> --------------------------------------------
> Gio 24/3/16, abbat81 <abbat.81 at ...787...> ha scritto:
>
>  Oggetto: [Gambas-user] Label1.Foreground = Color("#FF0000"), How to?
>  A: gambas-user at lists.sourceforge.net
>  Data: Gioved? 24 marzo 2016, 15:23
>
>  How to use HTML color like #FF0000
>
>
>
>  --
>  View this message in context:
> http://gambas.8142.n7.nabble.com/Label1-Foreground-Color-FF0000-How-to-tp55761.html
>  Sent from the gambas-user mailing list archive at
>  Nabble.com.
>
>
>  ------------------------------------------------------------------------------
>  Transform Data into Opportunity.
>  Accelerate data analysis in your applications with
>  Intel Data Analytics Acceleration Library.
>  Click to learn more.
>  http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
>  _______________________________________________
>  Gambas-user mailing list
>  Gambas-user at lists.sourceforge.net
>  https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
>
> ------------------------------
>
> Message: 3
> Date: Thu, 24 Mar 2016 16:12:39 +0000 (UTC)
> From: Ru Vuott <vuott at ...325...>
> Subject: [Gambas-user] R:  Label1.Foreground = Color("#FF0000"), How
>         to?
> To: mailing list for gambas users <gambas-user at lists.sourceforge.net>
> Message-ID:
>         <1979761003.4247970.1458835959406.JavaMail.yahoo at ...3424...>
> Content-Type: text/plain; charset=UTF-8
>
> ...but if you want to use "hexadecimal" value with Label:
>
> *****************************************
> Public Sub Form_Open()
>
>   Label1.Foreground = &FF0000
>
>   Label1.Text = "Arma virumque cano"
>
> End
> *****************************************
>
>
>
>
>
>
> --------------------------------------------
> Gio 24/3/16, abbat81 <abbat.81 at ...787...> ha scritto:
>
>  Oggetto: [Gambas-user] Label1.Foreground = Color("#FF0000"), How to?
>  A: gambas-user at lists.sourceforge.net
>  Data: Gioved? 24 marzo 2016, 15:23
>
>  How to use HTML color like #FF0000
>
>
>
>  --
>  View this message in context:
> http://gambas.8142.n7.nabble.com/Label1-Foreground-Color-FF0000-How-to-tp55761.html
>  Sent from the gambas-user mailing list archive at
>  Nabble.com.
>
>
>  ------------------------------------------------------------------------------
>  Transform Data into Opportunity.
>  Accelerate data analysis in your applications with
>  Intel Data Analytics Acceleration Library.
>  Click to learn more.
>  http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
>  _______________________________________________
>  Gambas-user mailing list
>  Gambas-user at lists.sourceforge.net
>  https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
>
> ------------------------------
>
> Message: 4
> Date: Thu, 24 Mar 2016 09:19:26 -0700 (MST)
> From: abbat81 <abbat.81 at ...787...>
> Subject: Re: [Gambas-user] R:  Label1.Foreground = Color("#FF0000"),
>         How to?
> To: gambas-user at lists.sourceforge.net
> Message-ID: <1458836366758-55764.post at ...3046...>
> Content-Type: text/plain; charset=us-ascii
>
> Dim col as string = "#FF0000"
>
> How to conver?  CInt(Replace(st, "#", "&")) doesn't work
>
> Label1.Foreground = col
>
>
>
> --
> View this message in context:
> http://gambas.8142.n7.nabble.com/R-Label1-Foreground-Color-FF0000-How-to-tp55763p55764.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
>
>
> ------------------------------
>
> Message: 5
> Date: Thu, 24 Mar 2016 13:33:53 -0400
> From: Yahoo <olivier.cruilles at ...614...>
> Subject: Re: [Gambas-user] R: Label1.Foreground = Color("#FF0000"),
>         How to?
> To: mailing list for gambas users <gambas-user at lists.sourceforge.net>,
>         abbat81 <abbat.81 at ...787...>
> Message-ID: <etPan.56f42501.1d28bacb.187 at ...3497...>
> Content-Type: text/plain; charset="utf-8"
>
> Dim col as string = "#FF0000"?
>
> Label1.Foreground = Val("&H" &?col?& "&")
>
>
>
> Olivier Cruilles
>
> Le March 24, 2016 ? 13:17:50, abbat81 (abbat.81 at ...787...) a ?crit:
>
> Dim col as string = "#FF0000"
>
> How to conver? CInt(Replace(st, "#", "&")) doesn't work
>
> Label1.Foreground = col
>
>
>
> --
> View this message in context:
> http://gambas.8142.n7.nabble.com/R-Label1-Foreground-Color-FF0000-How-to-tp55763p55764.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> Transform Data into Opportunity.
> Accelerate data analysis in your applications with
> Intel Data Analytics Acceleration Library.
> Click to learn more.
> http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
> ------------------------------
>
> Message: 6
> Date: Thu, 24 Mar 2016 20:06:27 +0100
> From: Fabien Bodard <gambas.fr at ...626...>
> Subject: Re: [Gambas-user] R: Label1.Foreground = Color("#FF0000"),
>         How to?
> To: mailing list for gambas users <gambas-user at lists.sourceforge.net>
> Message-ID:
>         <CAFkCsL5LeyuLi3XtVy4up=+
> 1xMmnv273Bp1mecu8a-sxRBm60A at ...627...>
> Content-Type: text/plain; charset=UTF-8
>
> Le 24 mars 2016 18:36, "Yahoo" <olivier.cruilles at ...614...> a ?crit :
> >
> > Dim col as string = "#FF0000"
> >
> > Label1.Foreground = Val("&H" & col & "&")
> The ending & not necessary
> Label1.Foreground= val(replace(col,"#","&H"))
> >
> >
> >
> > Olivier Cruilles
> >
> > Le March 24, 2016 ? 13:17:50, abbat81 (abbat.81 at ...787...) a ?crit:
> >
> > Dim col as string = "#FF0000"
> >
> > How to conver? CInt(Replace(st, "#", "&")) doesn't work
> >
> > Label1.Foreground = col
> >
> >
> >
> > --
> > View this message in context:
>
> http://gambas.8142.n7.nabble.com/R-Label1-Foreground-Color-FF0000-How-to-tp55763p55764.html
> > Sent from the gambas-user mailing list archive at Nabble.com.
> >
> >
>
> ------------------------------------------------------------------------------
> > Transform Data into Opportunity.
> > Accelerate data analysis in your applications with
> > Intel Data Analytics Acceleration Library.
> > Click to learn more.
> > http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
> > _______________________________________________
> > Gambas-user mailing list
> > Gambas-user at lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> >
>
> ------------------------------------------------------------------------------
> > Transform Data into Opportunity.
> > Accelerate data analysis in your applications with
> > Intel Data Analytics Acceleration Library.
> > Click to learn more.
> > http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
> > _______________________________________________
> > Gambas-user mailing list
> > Gambas-user at lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
> ------------------------------
>
> Message: 7
> Date: Fri, 25 Mar 2016 05:55:55 GMT
> From: <bugtracker at ...3416...>
> Subject: [Gambas-user] [Gambas Bug Tracker] Bug #892:
>         ~/.local/share/gambas3/lib is empty
> To: adamnt42 at ...626...,gambas-user at lists.sourceforge.net
> Message-ID: <BUG892:20160325065554640 at ...3416...>
> Content-Type: text/plain;charset=utf-8; charset="utf-8"
>
> http://gambaswiki.org/bugtracker/edit?object=BUG.892&from=L21haW4-
>
> Bruce BRUEN changed the state of the bug to: Invalid.
>
>
>
>
>
>
> ------------------------------
>
> Message: 8
> Date: Fri, 25 Mar 2016 13:20:37 +0100
> From: Moviga Technologies <moviga at ...3488...>
> Subject: Re: [Gambas-user] QT 5.7 QTWebEngine
> To: mailing list for gambas users <gambas-user at lists.sourceforge.net>
> Message-ID: <d2996e39f3f9ebb2968bc1366f02167d at ...3488...>
> Content-Type: text/plain; charset=US-ASCII
>
> Yuhu?! :)
>
> ------------------------------
>
>
> ------------------------------------------------------------------------------
> Transform Data into Opportunity.
> Accelerate data analysis in your applications with
> Intel Data Analytics Acceleration Library.
> Click to learn more.
> http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140
>
> ------------------------------
>
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
> End of Gambas-user Digest, Vol 118, Issue 28
> ********************************************
>



More information about the User mailing list