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 wOOdy-Soft 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: hopper
  • Content: Threads
  • Order by date
  1. hopper

    Display Utility command from VB application

    Can I run the display utility command and capture the results from a VB application with an ODBC connection? I am running DB2 V7 on the mainframe and accessing it via DB2 Connect V7. Thanks in advance! Scott
  2. hopper

    Can I capture an application name with SQL???

    I'm new to DB2 so if this is obvious please forgive me... I have several .NET application that will be accessing our DB2 v7 mainframe database (more specifically a view). I have the authorized application names stored in another table. I need to see if it is possible to capture the calling...
  3. hopper

    How do I open an ADO recordset from a stored query

    I'm sure this is simple, but I'm having a heck of a time trying to open an ADO recordset based off of a stored query. I am using access 2002 Code looks something like this. dim conn as adodb.connection dim rs as adodb.recordset set conn = currentproject.connection set rs = new adodb.recordset...
  4. hopper

    Eval function help please

    Since there are no control arrays in VBA (that I know of...) I'm using a for loop with the eval function to try to clear out some labels... for whatever reason, I get an error message stating "Microsoft Access can't find the name lblFname0 you entered in the expression" however...
  5. hopper

    Is there a way to automate the export to snapshot process?

    I need to have an Access report that is viewable and printable from an ASP page. I also need the report to be dynamic so each time a user ran the report Access would re-export the report to a snapshot. Any help or comments would be greatly appreciated. Thanks, Hopper
  6. hopper

    Dynamic Access Reports from an ASP app. Is this possible?

    I am trying to find a way to have MS Access reports available to users through my ASP web-app. Is there some way to either publish these reports in an ASP or HTML page so the server would pull fresh data every time the page is requested? Or is there a way to have the application spit out the...
  7. hopper

    Radio Button Help please

    I'm sure this is an easy one, but I need some help. I need to find out if any one radio button in a group has been checked where the number of radio buttons isn't known until run time. I was using if (form.radio1[0].checked = true || form.radio1[1].checked = true...) but now the number of...
  8. hopper

    looping through controls... help please.

    I'm working on a online questionare. The site reads in the questions from a text file so the number of questions and radio button groups is unknown until the asp page runs. I need to validate that the user answered all the questions before the onclick event of the submit button. I am trying...
  9. hopper

    ADODB Connection help PLEASE!!!!!!

    I've been using Access 97 and am trying to convert my ASP front end to use Access 2000. I've encountered some problems with converting my code to use ADO objects. Well I managed to work through most of them but there seems to be one problem I keep encountering.... When I first make the...
  10. hopper

    highlighting text within a form

    I think this might be more of a VBScript question but I have a password box on an asp page where the value is populated by a cookie. I want to use the onclick property to make the entry in the password box become highlighted. I've used SelStart and SelLength in VB to do this before but I am...
  11. hopper

    Session management help

    How can I detect when a user closes an asp page so I can call abandon() to kill their session? I've tried to use the global.asa file but I can't seem to get that to work. Probably using it wrong. Any help would be greatly appreciated. Thanks, Hopper
  12. hopper

    Pulling data from one table into another table within the same db

    I'm trying to pull data from one table and inserting it into another table all within the same db. I am going to delete the first table so not to worry about data dublication. I've tried SELECT INTO... and INSERT INTO... VALUES(SELECT...) but neither of those seem to work. If any of you have...

Part and Inventory Search

Back
Top