Forum Moderators: mack
i have an edit control wherre the user can enter their webaddress. I then want to take this url and put it in an A tag.
char buf[50];
GetDlgItemText(hwnd, IDC_TEXT, buf, 50);
I have no problem get the uer's webaddress but how do I add "<a href=" in front of it and add a ">" after it? Can anyone help?