Click here to Skip to main content
15,912,665 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Memory Control Problem. Pin
Dave Kreskowiak16-Jan-06 16:04
mveDave Kreskowiak16-Jan-06 16:04 
Answer[Solved] Pin
cylix200016-Jan-06 21:50
cylix200016-Jan-06 21:50 
QuestionSend and reciev mail in outlook express using vb6 Pin
Mekong River16-Jan-06 15:10
Mekong River16-Jan-06 15:10 
AnswerRe: Send and reciev mail in outlook express using vb6 Pin
Dave Kreskowiak16-Jan-06 15:37
mveDave Kreskowiak16-Jan-06 15:37 
GeneralRe: Send and reciev mail in outlook express using vb6 Pin
Mekong River16-Jan-06 15:44
Mekong River16-Jan-06 15:44 
GeneralRe: Send and reciev mail in outlook express using vb6 Pin
Dave Kreskowiak16-Jan-06 16:11
mveDave Kreskowiak16-Jan-06 16:11 
QuestionStrings with hyperlinks Pin
tibmark16-Jan-06 13:53
tibmark16-Jan-06 13:53 
AnswerRe: Strings with hyperlinks Pin
Joshua Quick16-Jan-06 14:24
Joshua Quick16-Jan-06 14:24 
Try using a LinkLabel control. You can setup this control to show both normal text and a link. It can even display multiple links within its text. But you can't add the link from the designer. It must be done in code.

myLink.Text = "This is my string, so click here"<br />
Const linkString As String = "here"<br />
myLink.Links.Add(myLink.Text.IndexOf(linkString), linkString.Length)


-- modified at 20:54 Monday 16th January, 2006
Let me rephrase this a little. The text you enter into a LinkLabel in the form designer will become one big link, which is not what you want. If you want to embed a link within normal text, then you must do this via code as shown above.
GeneralRe: Strings with hyperlinks Pin
tibmark16-Jan-06 18:11
tibmark16-Jan-06 18:11 
GeneralRe: Strings with hyperlinks Pin
Joshua Quick16-Jan-06 18:33
Joshua Quick16-Jan-06 18:33 
QuestionCalling DLL Function that expects pointer to pointer Pin
Jon Trauntvein16-Jan-06 11:33
Jon Trauntvein16-Jan-06 11:33 
AnswerRe: Calling DLL Function that expects pointer to pointer Pin
Joshua Quick16-Jan-06 15:43
Joshua Quick16-Jan-06 15:43 
GeneralRe: Calling DLL Function that expects pointer to pointer Pin
Jon Trauntvein17-Jan-06 10:13
Jon Trauntvein17-Jan-06 10:13 
GeneralRe: Calling DLL Function that expects pointer to pointer Pin
Joshua Quick17-Jan-06 11:01
Joshua Quick17-Jan-06 11:01 
QuestionGet HDD SerialNumber in VB Script Pin
snalion16-Jan-06 9:32
snalion16-Jan-06 9:32 
GeneralRe: Get HDD SerialNumber in VB Script Pin
Guffa16-Jan-06 10:52
Guffa16-Jan-06 10:52 
AnswerRe: Get HDD SerialNumber in VB Script Pin
Dave Kreskowiak16-Jan-06 11:06
mveDave Kreskowiak16-Jan-06 11:06 
GeneralRe: Get HDD SerialNumber in VB Script Pin
snalion17-Jan-06 5:41
snalion17-Jan-06 5:41 
GeneralRe: Get HDD SerialNumber in VB Script Pin
Dave Kreskowiak17-Jan-06 11:48
mveDave Kreskowiak17-Jan-06 11:48 
QuestionUnhandeled exception error Pin
shakizil16-Jan-06 9:31
shakizil16-Jan-06 9:31 
GeneralRe: Unhandeled exception error Pin
Guffa16-Jan-06 10:55
Guffa16-Jan-06 10:55 
Question"Declaration expected" Pin
kenn_rosie16-Jan-06 7:41
kenn_rosie16-Jan-06 7:41 
AnswerRe: "Declaration expected" Pin
Guffa16-Jan-06 8:45
Guffa16-Jan-06 8:45 
GeneralRe: "Declaration expected" Pin
kenn_rosie16-Jan-06 8:55
kenn_rosie16-Jan-06 8:55 
GeneralRe: "Declaration expected" Pin
Guffa16-Jan-06 10:56
Guffa16-Jan-06 10:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.