Joris van Lier wrote:
> "Art" <lee_nospam_@nospam_artjunky.com> wrote in
message
> news:fevrc8$2qo$1@forums.macromedia.com...
>>
>> How do you change "cursor" location from server to
client?
>
> this thread gives some details about the reasons why
this is happening
> <
http://groups.google.com/group/macromedia.ultradev/browse_thread/thread/fe8c4acb6ede7a9a/7c250437cd7...
>
>
> In Dreamweaver MX you can change the cursor location by
selecting the
> recordset from the serverbehaviors panel, that should
activate the
> Recordset Inspector in the Properties Panel, select
Client from the
> Cursor location Drop down.
>
> Joris
>
Thanks but I am using CS3 and changing the cursor location is
no longer
an option unless you hand-code it as I did.
The solution was to add the 3rd line in. This changes the
cursor to
client side. Don't totally understand it but it worked.
set commSearchResults = Server.CreateObject("ADODB.Command")
commName.ActiveConnection = MM_connStringname_STRING
--->commName.ActiveConnection.CursorLocation = 3 '
adUseClient
commName.CommandText = "results"
Thanks for your help.