How can I pub an url to my VB-form?
Thanks
Printable View
How can I pub an url to my VB-form?
Thanks
Put a label on the form, and change it's caption to the url, and make it blue or whatever.
Code:'in declarations
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
'
Private Sub label1_Click()
ShellExecute 0, "open" & vbNullString, label1.caption, vbNullString, vbNullString, 3
End Sub
1)Hi I need to now how can I see the line and row of richTxt Box
2)Hi
I have a problem ??
I work in Vb 6 and use RichTxt Box
I need to save and open file in format of UNIX ...
when I save it I see in UNIX (VI)
I see ^M
How can I do it ??
Tanks Gadi
Quote:
Originally posted by g_nassi
1)Hi I need to now how can I see the line and row of richTxt Box
2)Hi
I have a problem ??
I work in Vb 6 and use RichTxt Box
I need to save and open file in format of UNIX ...
when I save it I see in UNIX (VI)
I see ^M
How can I do it ??
Tanks Gadi