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 Wanet Telecoms Ltd 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: guineamation
  • Content: Threads
  • Order by date
  1. guineamation

    DB locked, could not save....

    Hi All, when trying to update the DB via an admin panel, i get this error message: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] Could not save; currently locked by user 'admin' on machine 'W2K1920'. /admin/inc_machina_edit.asp, line 107...
  2. guineamation

    cant seem to get the virtual dir to work on my IIS

    Hi, I've read the FAQ: Help! My Code Won't Run! faq855-1628 Posted: 13 Mar 02 (Edited 8 May 03) I tried following it but i can seem to find the property described here: "3. Once you have found the folder you want to convert, right click on it and choose properties. 4. On the first...
  3. guineamation

    unicode from db to text area?

    when i open a recordSet and insert the data into a text area in a form on a web page, i get the actual unicode characters ó instead of the special character it represent. how can i show the decoded text on the text area?
  4. guineamation

    convert an asp site into HTML site??

    Hi all, Does anyone knows about a program/site that can convert a dynamic asp site into a static HTML site?
  5. guineamation

    javaScript and ASP Script

    can a JS function can be called from an ASP Script?
  6. guineamation

    check if file exists...

    Hi all, when trying to check if file exists on the server, like so: Set FilePDF = Upload.Files("frm_PDF") path = "/pdf/" & sItemName If Not Upload.FileExists(path) Then response.write "pdf not exists, uploading"&"<BR>" FilePDF.SaveAsVirtual path Else...
  7. guineamation

    SQL Statment problem

    Hi All, when trying to execute this SQL Statment: MySQL = "SELECT M_FORMAT, M_FULLNAME" MySQL = MySQL & " FROM TBL_MACHINA" MySQL = MySQL & " WHERE M_FULLNAME Like ""*"& request.QueryString("frm_Type") &"*""" i get this error: [Microsoft][ODBC Microsoft Access Driver] Too few parameters...
  8. guineamation

    db to xml to asp?

    i found some information in the FAQ and on the net but couldn't get it to work. How can i transform data from ACCESS DB to XML using ASP page and then read the XML from another ASP page? example: i have in the DB a list of products and i want them in a SELECT LIST on an asp page. thank you...
  9. guineamation

    CDO error - The &quot;SendUsing&quot; configuration value is invalid.

    i'm trying to send email using the CDO object to emails from a DB, i managed to send a few but the it stopped, now after a few changes i have this code that gives me the error: CDO.Message.1 error '80040220' The "SendUsing" configuration value is invalid. /sendmail/sendmail.asp, line 59 line...
  10. guineamation

    error '80020009' - problem in loop (line 127)

    Hi all, i have a small error '80020009' problem. searched the net, got a few ideas non of the worked. i'm getting the error when retreivig data from record set. it works fine until some point in the middle, then gives the error and continu.... wierd! tried while, do while and do until... nothing...
  11. guineamation

    select case problem

    Hi all, i'm having a problem with the following code: Select Case request.QueryString("region") Case uk sRegion = "UK" response.write sRegion Case usa sRegion = "USA" response.write sRegion End Select the queryString is Ok (i can see it on the address bar) but i get nothing in...
  12. guineamation

    close a child window and refresh the parent

    Hi, I have a parent window who opens a child window: function openPicEdit(imgID) { var dest="inc_picEdit.asp?imgID=" + imgID; window.open(dest, "win_Image", "toolbar=no,status=no,scrollbars=yes,height=400,width=400,resizable=1") } on action the child window calls a function in parent...
  13. guineamation

    how 2 connect directly 2 an access DB (different domain)?

    Hi all, I'm trying a direct connection to an access DB located on a different Web Site, connection string: MM_conn_STRING = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("255.255.255.255/data/myDB.mdb") the error i'm getting is for the line where i try to use the connection...
  14. guineamation

    How to use a variable in an SQL &quot;LIKE&quot; statement?

    I would like to create a full text search on a DB column using the SELECT...LIKE type statement. How do I call the variable "form" for ex. into this statement.
  15. guineamation

    Suppressing duplicates

    How can I suppress apparition of duplicate values when writing the contents of a retrieved recordset?
  16. guineamation

    strings lost in a series of replace statements

    I have a series of &quot;replace&quot; statements inserting strings stored in variables inside a long &quot;Insert&quot; sentence into a database. The first two statements insert the values correctly after replacing the characters, the rest insert nothing, as if lost the values.
  17. guineamation

    syntax error when using &quot; ' &quot;

    Each time i'm using an inverted comma( &quot; ' &quot;) inside a text submitted through a form i'm getting a syntax error message from the server. Any solution?
  18. guineamation

    redirecting a domain

    I've got a second domain redirected to (pointing at) my main domain, and i would like to redirect it to a specific address with a code.
  19. guineamation

    How to bookmark a page with an icon?

    How do i make my homepage bookmark with an icon?
  20. guineamation

    How do i pause a script?

    How do i pause a script for 30 minutes?

Part and Inventory Search

Back
Top