Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Jonid
  • Order by date
  1. Jonid

    Adding a record in Access 2000 via ASP

    check if the file is open in design mode by access or any other application which uses the database exclusively. .
  2. Jonid

    User registration with asp

    do u have IIS Server or Personal Web Server? if so then let me know. Jonid
  3. Jonid

    aval morgh bedonia umade ya aval tokhmemorgh??? im cofused

    does any1 know the answer "awal morgh bedonia umade ya aval tokhme morgh" ?????
  4. Jonid

    Netscape and RDS. How can I make it?

    RDS Data Binding Controls are built-in in IE. u have to use Java applets to access data on the remote mashine using Netscape.
  5. Jonid

    Accessing Active X dll

    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.
  6. Jonid

    COM, RDS, VBScript and HTTP

    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 =...
  7. Jonid

    Tab in listbox , but how?

    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
  8. Jonid

    Tab in listbox , but how?

    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...
  9. Jonid

    Tab Between text in Combobox

    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?
  10. Jonid

    How do i add data to the grid control ?

    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
  11. Jonid

    Creating Bussiness Objects Thrugh http

    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...
  12. Jonid

    Help! Inserting Date Data Types

    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
  13. Jonid

    class use from client code

    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.
  14. Jonid

    Help! Inserting Date Data Types

    i get an error when i use #datevar# im using this code in a VB Component not asp. there might be some diffs.
  15. Jonid

    Help! Inserting Date Data Types

    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...
  16. Jonid

    Inserting Date data type Into SQL Server using ADOs Connection

    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...
  17. Jonid

    Printing Through ASP

    ActiveX enabled Browsers Support ScriptX and it works fine under Win9x/nt/2k platforms
  18. Jonid

    Printing Through ASP

    basic version is free and it does most of the work
  19. Jonid

    How do i add data to the grid control ?

    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=&quot;DBGrid Control&quot...

Part and Inventory Search

Back
Top