Inserting into a rich text box

Samplusplus

New member
Joined
Jun 5, 2006
Messages
4
Programming Experience
1-3
how can I insert into a certain possition much like in dreamweaver say


i have <html>

<head>
<title> my site </title>
</head>

| <-- Course here

</html>

then form a menu i say insert image and i want to place code there how would i do something like that
 
Place the cursor at requested position in richtextbox and use SelectedText property:
VB.NET:
rtb.SelectedText = "text inserted"
 
Back
Top