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 Mike Lewis 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: cawi17
  • Order by date
  1. cawi17

    cursed Dates

    sorry - i'm a mySQL bigginer - can we somehowe enter the date using string quote, or for example what if we want to enter a birthdate...?
  2. cawi17

    display folders and subfolders...

    tq very much DreXor
  3. cawi17

    display folders and subfolders...

    thanqs DreXor for the helpful reply.... I'm trying the codes now..... mmm.... but still if it's possible.... do you know how to generate the folder and file list exactly like the format.... it is actually because I found I script on the 'link tree' , and it uses the exact format of javascript...
  4. cawi17

    display folders and subfolders...

    oohh i forgot... the indentation for the display could be ignored....
  5. cawi17

    display folders and subfolders...

    I'm trying to display my folders and subfolders of a parent folder in format exactly like : [Parent Folder 1 [SubFolder1, [Folder2], [Folder3], [Folder4] ], [SubFolder2, [Folder2], [Folder3], [Folder4] ], ] but it didn't work. The part which i'm unable to...
  6. cawi17

    Problem when creating folder

    yup... you're right... it is my norton... I had disabled my Norton Antivirus Script Blocking feature and it could run straight away... Thank you very much..... I'm using Win XP Service Pack 2... and it seem to work with the Win firewall... Thank you again...
  7. cawi17

    Problem when creating folder

    I'm trying to create folder using ASP script below... but when opening the page..it loads for 'quite a time'.... almost like it hangs... but noe folder was created... What is the problem...? <% Dim myFSO Set myFSO = Server.CreateObject("Scripting.FileSystemObject")...
  8. cawi17

    can textfield be disabled for editing?

    how about if we disable the text dynamically using vb script....?... can it be done?.... Thank you....
  9. cawi17

    audio streaming...

    I was thinking of doing a streaming system, (juz like launchcast/yahoo.com) using asp, where users can play the song they want, and then continue to play other songs, after the previous song had finished...... Songs will be on mp3's with MS access database. Do you guyz have any ideas or...
  10. cawi17

    Problem in looping with rs....

    Hi ChrisHirst(My saviour)... It's you again..... That was it... After a few more while revising the codes, than I thought of the same thing..... actually the error was after the codes... when I retrieve the record using the rs again on the seperate block.... I solve the problem..... verry...
  11. cawi17

    Problem in looping with rs....

    Hi guyz... I'm back with another problem.... I'm using the codes to display all record from a table... <% Dim cn Dim rs Dim sqlstring Dim theSubject Dim theContent Dim theCategory Set cn = Server.CreateObject("ADODB.Connection") Set rs = Server.CreateObject("ADODB.RecordSet") dataConn=...
  12. cawi17

    Wierd Record Set Problem...

    Thank You again ChrisHirst, you saved me twice... And for the 'With' thing, okay i'll use it from now on("perhaps after i finish the page")..... I even tried to assign the rs("Subject") and rs("Content") each into a variable before displaying them.... It worked okay!... Thanks again..... :)
  13. cawi17

    Wierd Record Set Problem...

    Below are the codes for my .asp page.... It's kindda weird... I've tried to display multiple recordsets values usin rs("") on different places on a page... but it dispaly only 1 of the rs("") The rs("Subject") field and rs("Content") field are Memo Data type.... As you can see, I'd tried to...
  14. cawi17

    Updating using rs.Update

    Thanks ChrisHirst, I got tired of trying all types of locks and cursortypes, and finally I used another SQL query to update the records. It worked.... I'll try the Cursor Type and lock you gave me.... At least I know now... Thanks guyz for helping... :)
  15. cawi17

    Updating using rs.Update

    I'm trying to update a record by using rs.Update.. Though, it produces error Error Type : ADODB.Recordset (0x800A0CB3) Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype. ..... Set cn = Server.CreateObject("ADODB.Connection")...
  16. cawi17

    asp - records not updating - access database

    Hey guyz... how about using rs.Update instead of using swlstring.... I've trie'd to open a table and then update it using rs.Update... Which locktype or command should we use...? I've tried using the rs.Update but it doesn't work.... Error Type: ADODB.Recordset (0x800A0CB3) Current Recordset...
  17. cawi17

    CDONTS Error Message

    I think I had this problem before.... You may need to download and register CDONTS.dll(I think from the Internet) - try searching it at Yahoo.... And then register the DLL... using the "run" menu from the Start menu... Ohh!.. before downloading the .dll file.... Try searching for CDONTS.dll on...
  18. cawi17

    Passing value of textbox created dynamically, into an array

    Hi... I got 2 asp pages... I page is where I created a form dynamically using... *********************************************************** . . . dataConn= "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("cd2buy.mdb") cn.open dataConn Set rs = cn.Execute("SELECT * FROM CART...

Part and Inventory Search

Back
Top