On Mon, 2012-11-12 at 23:23 +1030, Bruce wrote:
> Will try Jussi's suggestion.
> 
> Back tomorrow.
> cheers
> Bruce
> 

Which, of course, worked perfectly.
Thanks Jussi.

In the clear light of day, the solution became pretty obvious, seeing as
the three url's are fixed and I know what they are anyway. (Must have
been pretty tired last night.)

The solution was:
        Public Sub txtCopyright_MouseUp()
        
          If Mouse.Left = True Then
            If Mouse.X >= 0 And Mouse.Y >= 0 And Mouse.X <=
        txtCopyright.Width And Mouse.y <= txtCopyright.Height Then
              Desktop.Open("http://"; & $projinfo.VendorURL)  **
            Endif
          Endif
        
        End

** and 
        Desktop.SendMail([$projinfo.VendorAddress]) 
        Desktop.Open("http://gambas.sourceforge.net";)
for the other two labels.

Some things arise, however.

For the http:// links, the browser (firefox) opens correctly but the
following message is sent to the console:
"Could not determine mimetype for file: http://gambas.sourceforge.net";

For the mailto: link, the email composer (evolution) opens correctly,
but on the way another (blank) browser tab (or window) is opened and the
console shows the message:
"Could not determine mimetype for file: mailto:staff@paddys%2Dhill.net";

Is the above the expected behavior for gb.desktop?

regards
Bruce



------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to