19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Public Sub Form_Open() URLLabel1.Link = "https://www.gambas-it.org/wiki/index.php?title=Installazione_Server_PostgreSQL" URLLabel1.Text = "Installazione PostgreSQL"End
Usa una URLLabel
Citazione da: Gianluigi - 12 Dicembre 2021, 11:36:23 Usa una URLLabelIn questo caso è necessario attivare anche il Componente gb.desktop .
Chiedo scusa
...è sulla mancata costruzione della Macchina del Tempo che dovresti chiedere scusa + cenere sulla testa !
Scusate, invece di usare urllabel c'è altro modo ?, devo usare un Togglebutton ed appena ci clicco si deve aprire il link.
ToggleButton1 As ToggleButtonPublic Sub Form_Open() With Me .Height = 50 .Width = 220 .Padding = 5 .Arrangement = Arrange.None .Center End With With ToggleButton1 = New ToggleButton(Me) As "ToggleButton1" .Text = "&Installazione PostgreSQL" .X = 10 .Y = 10 .Height = 28 .Width = 200 .Picture = Picture["icon:/22/text"] End With If Not Component.IsLoaded("gb.desktop") Then Component.Load("gb.desktop")EndPublic Sub ToggleButton1_Click() If ToggleButton1.Value = True Then Desktop.Open("https://www.gambas-it.org/wiki/index.php?title=Installazione_Server_PostgreSQL")End