try this
set ads = createobject("rds.dataspace")
set mybo = ads.createobject("myDLL.classname", "MyServer")
register your dll using MTS or COM+( create new packge and add your component there) then export proxy application and install it in client side. it works.
How to register a Business Object adn access from web browser using RDS???
i've registered my com in ADCLaunch key in Registry by adding Myboject.Myclassname to that key, and tried to access it from browser:
set ads = createobject("ds.dataserver")
set myBo =...
but it doesnt do the work. i want tab between two text all chr(9) or vbtab does is it creates "|" between text and it i see no tabs there????? i want something like columns to seperate two text
How Di I Add tab between Text in List Box?
i use following code to generate CBox's Options from Recordset
while not rs.eof
set myobj = createelement("Option")
myobj.value = rs("Code")
myobj.text = rs("code") & tab & rs("title")
mylist.add myobj...
How Di I Add tab between Text in List Box?
i use following code to generate CBox's Options from Recordset
while not rs.eof
set myobj = createelement("Option")
myobj.value = rs("Code")
myobj.text = rs("code") & tab & rs("title")
wend
how do i define tab?
U dont have to use ADODB.Recordset here
if u have ADO 2.1 Rds or ADO 2.5 just run code writen above and u'll see ur data on grid
reason u got that error is that u dont have RDS in ur system
i use My custom bussiness objec in my ado/rds application
i'v used the following lineCreate my Bussiness object
in proccess
set Dream = DataSpace.CreateObject("Dream.Common","")
and things seem to work with this in my pc
i tried to run my Bussiness Object using Http...
It Doesnt Seem To Work
any ways it works if i use command object and then assign date.
here is a sample
dim cm as new adodb.command
cm.commandtext = "insert into table values(?)"
cm.refresh
cm(0) = datevariable
cm.execute
U may Have Ur Recordset on the client Side using CourserLocation Proprety of recordset.
recordset.courserLocation = AdUseClient
We Call them Disconected Recordsets and They're Used in ADO/RDS.
How Do i insert Date Data into Sql Server DB Using ADO objects???
i tried this but it didnt work
sql = "insert into table(datetimefield) values("
sql = sql & "'" & datevariable & "')"
cnn.execute sql
-----------------------------------------
error message i get...
How Do i insert Date Data into Sql Server DB Using ADO objects???
i tried this but it didnt work
sql = "insert into table(datetimefield) values("
sql = sql & "'" & datevariable & "')"
cnn.execute sql
-----------------------------------------
error message i get...
hi
First Create RDS.DataControl then bound Grid Control or any other Data aware Contol with ur datacontrol
here is a sample code:
<html>
<body>
<OBJECT classid=clsid:BD96C556-65A3-11D0-983A-00C04FC29E33 height=1 id=datacontrol
width=1>
</OBJECT>
<OBJECT ID="DBGrid Control"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.