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: *

  1. Gunady

    ASP database error (readonly)

    I have a big problem with my ASP using Access database. I have coded some ASP pages and it works succesfully at my home and then I bring it to my office and it doesn't work. I am using IIS both at home and office. Error message : Error Type: Microsoft JET Database Engine (0x80040E09) Cannot...
  2. Gunady

    ASP HELP SOURCE

    Thank You.. Your informations are very useful..
  3. Gunady

    ASP HELP SOURCE

    Does anyone know where i can download (useful) help for asp code.... Thanksss...
  4. Gunady

    whats wrong with this code?? WHY...WHY...WHY!!!!!!

    why don't you use : select case true case..... ....
  5. Gunady

    My Browser Wont Truly Refresh! (Win2000&ASP)

    You can use response.expireabsolute=#01/01/70# to make sure that your page will not bet get from the catch
  6. Gunady

    Script Debugger

    I want to ask something about my default script debugger (I use it to debug my ASP). First, I have used Visual Interdev as my default sctipt debugger, then I install Microsoft Script Debugger (one that provide by Microsoft), and my default script debugger was changed to Microsoft Script...
  7. Gunady

    need a bit of explanation here

    Pointer is very useful... You can do thing like this.. Without Pointer : int a,b=7; a=b; // Value in a=7 and in b=5; b=5; // value in a=7 and in b=5; if we want to make a is always replaced with value from b, we have to use pointer; int *a,*b=7; a=b; // Value *a=7,*b=7; *b=5; // Value in...

Part and Inventory Search

Back
Top