Two or more hyperlinks in a window - not working

Moderator: Rathinagiri

Post Reply
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Two or more hyperlinks in a window - not working

Post 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. :(
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
gfilatov
Posts: 1057
Joined: Fri Aug 01, 2008 5:42 am
Location: Ukraine
Contact:

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

Post 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-)
Kind Regards,
Grigory Filatov

"Everything should be made as simple as possible, but no simpler." Albert Einstein
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

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

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

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

Post by Roberto Lopez »

gfilatov wrote:BTW It works fine in the HMG Extended Edition. 8-)
:lol:

Regardz,

Rovertu.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

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

Post by Rathinagiri »

Roberto Lopez wrote:
I'll review it ASAP.
Thanks Roberto
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

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

Post 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.
Attachments
test2.rar
(342 Bytes) Downloaded 512 times
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

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

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

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

Post by Rathinagiri »

Thank you Roberto. :)
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

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

Post 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.
Attachments
fix.rar
(10.36 KiB) Downloaded 488 times
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

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

Post by Rathinagiri »

Yes! It is working fine now Roberto! Thanks a LOT.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
Post Reply