Gorkem, thanks for the info. Had never used Enum before, so that is a nice tool. I am still unable to reference this in InterDev, however, and not sure why. I have tried a couple of different ways to retrieve it, yet it still doesn't appear to recognise it. Any idea why? Partial code that I am using to reference it is as follows:
<%@ Language=VBScript %>
<HTML>
<HEAD>
<TITLE>Options Summary</TITLE>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<link rel="stylesheet" type="text/css" href="
style1.css">
</HEAD>
<BODY>
<%
dim objCOM, strSQL, rs, i, rsTest, objConst
dim OptionID, DocID, EffDt, NotifyDt, OptionNotes, ActionTaken, ExerciseDt, ActionDt
dim AlarmDt, RenewalOption, MonthNextOption, LastModID, LastModDt, OptionType
set objCOM = server.CreateObject("
"

set rsTest = objCOM.DropDown(cint(vbOptionType))
%>
<H2>OPTIONS</H2>
<FORM name=frmOptions method="POST" action="Option.asp?screen=<%=Request.QueryString("screen"

%>&id=<%=Request.QueryString("id"

%>&OptionID=<%=Request.QueryString("OptionID"

%>">
<TABLE width=700>
<tr>
<td width=175><b>Option Type</b></td>
<td width=175><b>Document ID</b></td>
<td width=175><b>Renewal Option</b></td>
<td width=175><b>Next Option Month</b></td>
</tr>
<tr>
<td><select id="SelOptType" name="SelOptType">
<%
while not rsTest.EOF
if OptionType = rsTest.Fields("optn_ty_cd"

then
Response.Write "<option selected>" & rsTest.Fields("optn_ty_cd"

& "</option>"
else
Response.Write "<option>" & rsTest.Fields("optn_ty_cd"

& "</option>"
end if
rsTest.MoveNext
wend
%>
</select></td>
<td><input type="text" name="DocID" value="<%=DocID%>"></td>
<td><input maxlength=255 name="RenewalOption" value="<%=RenewalOption%>"></td>
<td><input type="text" name="MonthNextOption" value="<%=MonthNextOption%>"></td>
</tr>
<tr></tr><tr></tr><tr></tr>
Thanks!
Insanity is merely a state of mind while crazy people have a mind of their own.