Page 1 of 1

Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 9:12 am
by Rathinagiri
Hi,

Please verify whether it is only for me or for you too!

Code: Select all

# include "minigui.ch"

function main

define window x at 0,0 width 200 height 100 main
   DEFINE hyperlink email1
      row 10
      col 10
      value "http://www.rathinagiri.in"
      width 130
      handcursor .t.
      address "http://www.rathinagiri.in"
   END hyperlink
   
   DEFINE hyperlink email
      row 40
      col 10
      value "E-Mail me"
      width 130
      handcursor .t.
      address "srgiri@dataone.in"
   END hyperlink
end window
x.center
x.activate
   
return nil
If I compile the above, only the second hyperlink is working. :(

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 12:15 pm
by gfilatov
rathinagiri wrote: Please verify whether it is only for me or for you too!
...
If I compile the above, only the second hyperlink is working. :(
Hi,

I confirm this problem too :?

BTW It works fine in the HMG Extended Edition. 8-)

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 12:15 pm
by Roberto Lopez
rathinagiri wrote:Hi,

Please verify whether it is only for me or for you too!

Code: Select all

# include "minigui.ch"

function main

define window x at 0,0 width 200 height 100 main
   DEFINE hyperlink email1
      row 10
      col 10
      value "http://www.rathinagiri.in"
      width 130
      handcursor .t.
      address "http://www.rathinagiri.in"
   END hyperlink
   
   DEFINE hyperlink email
      row 40
      col 10
      value "E-Mail me"
      width 130
      handcursor .t.
      address "srgiri@dataone.in"
   END hyperlink
end window
x.center
x.activate
   
return nil
If I compile the above, only the second hyperlink is working. :(
Thanks for reporting.

I'll review it ASAP.

Regards,

Roberto.

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 12:33 pm
by Roberto Lopez
gfilatov wrote:BTW It works fine in the HMG Extended Edition. 8-)
:lol:

Regardz,

Rovertu.

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 12:37 pm
by Rathinagiri
Roberto Lopez wrote:
I'll review it ASAP.
Thanks Roberto

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 4:57 pm
by Roberto Lopez
rathinagiri wrote:
Roberto Lopez wrote:
I'll review it ASAP.
Thanks Roberto
This will be another funny to fix bug :)

I confirmed and starting test and discovered something interesting: Inverting the order of links both works fine :)

It's attached to this message.

I'll still testing...

Regards,

Roberto.

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 5:18 pm
by Roberto Lopez
Roberto Lopez wrote:
rathinagiri wrote:
Roberto Lopez wrote:
I'll review it ASAP.
Thanks Roberto
This will be another funny to fix bug :)
I've found the cause. It will need some little design change in the control.

It will be take some time to test prior to publish.

Regards,

Roberto.

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 5:21 pm
by Rathinagiri
Thank you Roberto. :)

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 7:44 pm
by Roberto Lopez
rathinagiri wrote:Thank you Roberto. :)
Fixed!

Please, replace the attached files and recompile the library.

The problem only affected alternate syntax.

Regards,

Roberto.

Re: Two or more hyperlinks in a window - not working

Posted: Thu Jul 02, 2009 8:00 pm
by Rathinagiri
Yes! It is working fine now Roberto! Thanks a LOT.