I've installed the
software... now what?
We understand that once you
install a new piece of software, you just
want to use it and see what it can do. This
page will give you a quick walk-through of
some of the major features of SlickEdit
Tools with the least amount of reading. Once
you see what's available, we're confident
that you'll want to open the full
documentation and learn more.
|
|
|
SlickEdit Tools Assistant |
 |
The Tools Assistant is a tool window
that helps you learn more about all of the
features available in both toolboxes. |
The tool window is displayed and docked to the right
side of the editor window by default.
|
|
|
Acronyms and
Aliases: Acronyms Quick Start |
 |
|
1. |
While editing a source
code file, select the text
for which you want to define
an acronym. |
|
2. |
Press Ctrl+Shift+` (backtick).
(Or, select Define Acronym
from the right-click context
menu.) |
|
3. |
The Add/Edit Code
Acronym dialog is displayed.
Enter the short acronym
identifier, and click OK. |
|
|
Acronyms and
Aliases: Aliases Quick Start |
 |
|
1. |
Select the File
> Open > File menu
option (Ctrl+O)
to show the Open
File dialog. |
|
2. |
Place the caret in the
File name
entry field, and type
wd.
|
|
3. |
Press Ctrl+Space.
The wd is
replaced with C:\WINDOWS
(or whatever your %WINDIR%
environment variable is
defined as). |
|
4. |
Press Enter,
and you are now in the
Windows® directory. |
|
|
Auto Code Doc
Viewer Quick Start |
 |
|
1. |
Open the Quick Profiling
sample project in your
installation directory under
\SampleProjects\QuickProfilingSample. |
|
2. |
Open the Auto
Code Doc Viewer
tool window by choosing
SlickEdit > Show
Auto Code Doc Viewer.
|
|
3. |
The viewer window will
appear as a tabbed document,
populated with a link for
the project. |
|
4. |
By clicking on that
link, you can drill down
into the namespaces,
classes, functions, etc.
defined in that project. |
|
5. |
You can also browse the
classes, functions,
properties, etc. by using
the indexes at the top of
the page. |
|
|
Code Annotations Quick Start |
 |
|
1. |
Open the Code
Annotations tool window by
choosing SlickEdit >
Show Code Annotations. |
|
2. |
The window appears, by
default, docked to the
bottom of the editor. |
|
3. |
Open a source file for
editing and position the
caret on a line of code
where you want to leave a
comment. |
|
4. |
On the tool window,
click the Create New
Annotation button. |
|
5. |
On the New Annotation
dialog, select
Comment from the
first drop-down list. |
|
6. |
In the second drop-down
list, make sure
Personal is
selected. |
|
7. |
Type any text in the
Description
field and click OK. |
|
8. |
In the source file, the
line is now highlighted and
an annotation marker is
placed in the left margin.
(See the Note below about
enabling enhanced text
markers). |
|
9. |
The new annotation is
listed in the tool window. |
|
10. |
Use the tool window to
add, edit, or remove
annotations. |
|
|
Note:
Microsoft® Windows XP and Vista™
users can view enhanced
annotation markers. To enable
these, click Tools >
Options, select
SlickEdit > Editing Toolbox >
Code Annotations in the
option tree, then select the
option Display enhanced
text markers. |
|
Comment Wrapping Quick Start |
 |
|
1. |
Open a source code file
for editing. |
|
2. |
Type ///
on the line above a function
header ('''
for VB).
|
|
3. |
A skeleton XMLdoc
comment will be created. |
|
4. |
Position the caret
inside the <summary> tag and
start typing. |
|
5. |
The text will start
wrapping once the comment
width is greater than 80
characters. |
|
|
NOTE: This is
the default behavior. There are
many options available for
defining how you want your
comments to wrap. |
|
Icon Extractor Quick Start |
 |
|
1. |
Open the Icon
Extractor tool
window by choosing
SlickEdit > Show Icon
Extractor. You may
want to resize or dock this
window. |
|
2. |
Click the Open
Image Source
toolbar button. |
|
3. |
Browse to
C:\Windows\System32.
Select and open the file
shell32.dll. The icon
window will be loaded with
the 200+ icons that are
embedded in that DLL. |
|
4. |
Create a new windows
application project by
choosing File > New
> Project. |
|
5. |
Open the GUI editor for
the main form. Put a button
on the form and set the
ImageAlign
property to
MiddleLeft. |
|
6. |
Click the
Refresh Designer Component
Tree button on the
Icon Extractor's toolbar.
The tree will be populated
with the components on the
designer form. |
|
7. |
Drag an icon from the
icon window onto the
button's node in the tree.
That icon will be assigned
to it both in the tree and
in the designer. This works
for any control that accepts
a graphic or icon, including
menus and toolbars. |
|
|
Quick Profiling Quick Start |
 |
|
1. |
Open the Quick Profiling
sample project in your
installation directory under
\SampleProjects\QuickProfilingSample. |
|
2. |
Open MainForm.cs
and look at the
WebRequest
function, which is called
when the button in the Web
Request Test panel is
clicked. This function
defines profile points
(using
Trace.WriteLine)
after each function call for
downloading a Web page. |
|
3. |
Run the program. Type a
Web site into the
Web Page URL box
and click the button beneath
it. Do this for several Web
sites. |
|
4. |
Stop the program. |
|
5. |
Open the Quick Profiling
Report tool window by
clicking SlickEdit >
Show Quick Profiling Report.
It will appear as a tabbed
document. |
|
6. |
Click the Open
button on the toolbar and
navigate to the
\bin\Debug directory of
the project. |
|
7. |
Open the file
Quick Profiling Test ???.qpd
where ??? is the
date and time. |
|
8. |
The series tree is now
populated and you will see
an entry for each Web site
you downloaded. Check the
box next to each one. The
data grid is then populated
with the recorded timestamps
for those series. |
|
9. |
Change the
Timestamp Type in
the bottom left corner from
Absolute to
Relative
timestamps. |
|
10. |
Change View Type
on the toolbar drop-down to
Series Comparison
Chart. |
|
11. |
The X axis shows the
events that took place
during the download and the
Y axis shows the times they
happened. |
|
12. |
You can hover over any
point on the lines to get
detailed information about
that data point. |
|
|
Regex Evaluator Quick Start |
 |
|
1. |
Open the Regex
Evaluator tool
window by choosing
SlickEdit > Show
Regex Evaluator.
You may want to resize or
dock this window. |
|
2. |
Enter the
following in the lower text box
of the Regex Evaluator:
\b[A-Z][a-z0-9]+\b |
|
3. |
Type a sentence in the
upper text box. The
uppercase words will be
highlighted. |
|
4. |
Open a file for editing,
or click the tab of an open
file. Click the
Active Doc button
and the regular expression
will be applied to the
document. |
|
5. |
Click the Save
button on the toolbar. Give
it a name of "Uppercase
words". You can now access
this regular expression from
the My Library
tab. |
|
|
|