Manually inserting text in a running macro

E

Eric Fields

I'm using MS Visual Studio .NET

I'm creating an HTML file that will display a large quantity of data. I want
to create a macro to use in the IDE that will generate all the tags and
attributes for me and then pause while I manually insert data, and then
continue writing the rest of the file.
e.g.
<table>
<tr>
<td>YYY</td>
<td>YYY</td>
...
</tr>

<tr>
<td>YYY</td>
<td>YYY</td>
...
</tr>
...
</table>

I want the macro to write the above tags and pause at the YYY points so I
can insert the appropriate data, and then continue running to the next YYY,
pause to insert data and so on. I understand how to record the keystrokes to
write the tags, but how do I manually insert data into a running macro?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top