he 30 novembre 2008, John Harrold wrote:
> > Hi all
> > I am experimenting with the PCRE class to understand more about regular
> > expressions and Gambas in general
> >
> > I have created a form with two textboxes, one for text input the other
> for
> > the r
ni <[EMAIL PROTECTED]>
> On samedi 29 novembre 2008, John Harrold wrote:
> > I'm no Gambas expert but as far as I understand you can't reference the
> > image that way.
> >
> > you would need to do:
> >
> > DIM myImg as Image
> > myImg=PicBox.P
Hi all
I am experimenting with the PCRE class to understand more about regular
expressions and Gambas in general
I have created a form with two textboxes, one for text input the other for
the regular expression text to test against.
There are a number of labels for displaying results returned from
there anyway I can make myObj an alias for PicBox.Image ?
>
> like
> Dim myImg as Image
> myImg = PicBox.Image
>
> Would that make a copy or assign myImg PicBox.Image's reference
>
>
> On Mon, Nov 24, 2008 at 9:58 AM, John Harrold <[EMAIL PROTECTED]
Hi
Load the image into the picturebox like:
PictureBox1.Picture = Picture.load("images/bookmark.png") (Here you use the
path and filename to your image.)
Then you can do the following:
Message(Str(PictureBox1.Picture.Image[x, y]))
Budgieboy
2008/11/23 Doriano Blengino <[EMAIL PROTECTED]>
>