Re: [Gambas-user] Regexpr appears not to be working

2008-11-30 Thread John Harrold
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

Re: [Gambas-user] Using an Image in a PictureBox or help with my issue

2008-11-30 Thread John Harrold
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

[Gambas-user] Regexpr appears not to be working

2008-11-30 Thread John Harrold
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

Re: [Gambas-user] Using an Image in a PictureBox or help with my issue

2008-11-29 Thread John Harrold
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]

Re: [Gambas-user] Using an Image in a PictureBox or help with my issue

2008-11-24 Thread John Harrold
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]> >