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 strongm 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: IsraelZa
  • Order by date
  1. IsraelZa

    How to rename the field's name in the table from VBA?

    Adding a field is possible with SQL's ALTER TABLE statement. E.g. ALTER TABLE table_name ADD column_name TEXT(20) (Execute as a query.)
  2. IsraelZa

    very strange problem with nested cursors

    To be more accurate: the FETCH_STATUS will reflect the last cursor that executed a FETCH statement state.
  3. IsraelZa

    very strange problem with nested cursors

    2 to 3 yrs later... Microsoft's documentation states that the @@FETCH_STATUS is a global variable, and therefore will be 0 (still records) in an inner cursor, even if only the outer one has more records, and vice-versa.
  4. IsraelZa

    Problem with Session_OnEnd.....Any ideas?

    Myabe the problem is because on default the Session_onEnd runs as the Anonymous user. Refer to: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iisref/htm/ref_scrpt_glsesevntonend.asp
  5. IsraelZa

    ASP Variable

    Are you trying to call a procedure in your asp code from the browser, or to call a client procedure (in JavaScript, for an example)? The ASP code is running on the server before sending the results to the browser client, and it's basically not possible to call it from the client.
  6. IsraelZa

    Submit on leaving page...

    You can call the javascript to submit from body's unload event. For information about the unload event see: http://msdn.microsoft.com/workshop/author/dhtml/reference/events/onunload.asp
  7. IsraelZa

    Submit on leaving page...

    The javascript to submit is: window.document.FormName.submit();
  8. IsraelZa

    Calling vbscript from ASP

    try to use response.write("here write client vbscript that will run your function"). Just an idea, haven't test it.
  9. IsraelZa

    JDBC INSERT PreparedStatement into Access

    I don't know much about JDBC but I'm just guessing, without testing, that the problem might be because you omitted a terminator (semicolon or another character) after the SQL statement, which most RDB's require.

Part and Inventory Search

Back
Top