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 SkipVought 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: joeyh
  • Order by date
  1. joeyh

    ODBC Driver Error 80004005

    Make sure you have WRITE permissions set on the database and in the directory where the database is stored. joeyh
  2. joeyh

    ASP Install Problem

    I imagine that you have already done this, but make sure the file is marked a read and executable. joeyh
  3. joeyh

    Uninstalling PWS (Once again...)

    http://www.microsoft.com/msdownload/ntoptionpack/askwiz.asp joeyh
  4. joeyh

    ASP and Access

    I agree with unicorn11. Also, try using a variable to store the value of Request.Form("custcode"). This would eliminate the confusion with internal quotation marks. joeyh
  5. joeyh

    Variable through HTML pages

    try using this in your a href: hyperlinktopage.asp?variable=<%variable%> then on the page you linked to do this: Request.Querystring(&quot;variable&quot;) that should do what you want joeyh
  6. joeyh

    Another Pulling Strings apart

    The mid did not work. I get a invalid procedure call or argument no matter what I use. I believe I going to give up because I do not think I can do it in VBScript. I can do it all day long in Visual Basic, but if anyone else has any suggestions, please let me know. Thanks, Joeyh
  7. joeyh

    Another Pulling Strings apart

    The mid did not work. I get a invalid procedure call or argument no matter what I use. I believe I going to give up because I do not think I can do it in VBScript. I can do it all day long in Visual Basic, nut if anyone else has any suggestions, please let me know. Thanks, Joeyh
  8. joeyh

    Another Pulling Strings apart

    Nick, I haven't had a chance to try Clng, but I will and will post back here if it works or if it doesn't. Yes the field will always contain a space. What I am doing is developing an API to update a MS Access database. I have two tables. One table has fields: Attach_id Attachment I have...
  9. joeyh

    Another Pulling Strings apart

    It's me again. I thought that I had solved my problem but I didn't. This is how the function looks. Function Seperate(Field) Field = Cstr(Field) RSpace = InStr(Field, &quot; &quot;) Field = Left(Field, RSpace - 1) Seperate = Field End Function It gives me an error saying: Invalid...
  10. joeyh

    Pulling Strings Apart

    I have gotten past the Left mismatch, but is now giving me an error: Type Mismatch Cnum Can anyone help.
  11. joeyh

    Pulling Strings Apart

    Nick, I am not very familiar with the split function. Can you give me an example. Thanks, Joey Harvey
  12. joeyh

    Pulling Strings Apart

    I need to know how to pull strings apart using asp. I come from a Visual Basic background but when I use the Visual Basic way, I get an error. Here is the script I am using: Function Seperate(Field) Field = Cstr(Field) WhereSpace = InStr(Field, &quot; &quot;) Field = Left(Field, WhereSpace...

Part and Inventory Search

Back
Top