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 =...
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?
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...
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...
i get an error everytime i insert date data in my vb component and sql server bakend. an example is shown below
Sql = "insert into trans"
Sql = Sql & " values("
...
Sql = Sql & "'" & date() &...
Is it possible to hava common Datacontrol in two frames?
i have two frames (main window and IFRAME) in my ASP application, one for data entry and another is a grid like table in IFrame tag. how can i share same datasrc between table and data entry form in two diffrent frames?
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.