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 bkrike 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: rjbalicki
  • Content: Threads
  • Order by date
  1. rjbalicki

    Connect To/Query MS Sql Server - NOT IN RAILS

    Do I need to use my normal ADO objects somehow to do this? Or are there built in objects that I'm not finding? I'm new to Ruby and I'm not running rails. I'm running Ruby on Windows XP and I'm attempting to play around with it before I dive into rails. Thanks in advance for the help.
  2. rjbalicki

    Excel 2000

    We run NT 4.0 and have Office 2000 here. I've installed the SDK 1.0 of .NET and want to try to automate Excel using C#. Do I need some sort of wrapper to do this because this version of Excel isn't .NET ready? I've automated Excel from VB 5 & 6 and Delphi, but I have no idea what I need for...
  3. rjbalicki

    Timeout Updating Index Field

    I have a table that stores userid, sessionid, and logintime. I have indexes (neither clustered) on userid and sessionid. The query I'm running is to clear out expired sessions (through a loop in a program): update logins set sessionid = null, logintime = null where userid = 9999 The query...
  4. rjbalicki

    Threading or Asynchronus

    I'm writing an application that will have one main window. That window will have a place to select two different files, two process bars, an OK button, and an Exit button. What I'd like to happen is, for each file being processed, spawn a thread using it's own specific processing function...
  5. rjbalicki

    Email open confirmation

    I see products out there that can tell if an email has been delivered and opened. I'd like to track this using my own code, but I have no idea where to start. Can someone point me in the right direction? We're using Exchange 5.5.
  6. rjbalicki

    Email open confirmation

    I see products out there that can tell if an email has been delivered and opened. I'd like to track this using my own code, but I have no idea where to start. Can someone point me in the right direction?
  7. rjbalicki

    ODBC Driver names

    Is there a way to have an ODBC driver dll available under different driver names? For instance, have the names "Visual FoxPro Driver" and "VFP Driver" both point to VFPODBC.DLL. I've found a utility called ODBCConf, but I can't seem to find any documentation on it. Any...
  8. rjbalicki

    ODBC Driver Management

    Does anyone know of a way to add another reference to an ODBC driver in the ODBC Administrator? I'd like to have the same driver available under different driver names. I've found a utility called ODBCCONF that looks like it may do what I'm looking for but can't find any documentation on it...
  9. rjbalicki

    SQL 7.0 - SQL 2000

    Is it possible for SQL 7.0 Enterprise Manager to see a SQL 2000 server? It isn't working (Can't register a 2000 server) and I don't really expect it to, but I'd like to know for sure.
  10. rjbalicki

    Error creating form in Delphi 4

    When I go to load a form, I get an error that says "Error creating form: Invalid stream format.". If I try to compile the project, I get an error that says "RLINK32: Unsupported 16bit resource in file 'formname.dfm'". Has anyone seen this one before? What can I do to fix...
  11. rjbalicki

    TQuery memory access violation

    My tquery.unprepare statement crashes my program. My order of operations is this: 1. create 2. databasename:='database' 3. sql.add 4. prepare 4. open 5. Loop until eof 6. close 7. unprepare (blows up here) 8. free (never gets here) Does anyone know of a reason why this may happen? I have...

Part and Inventory Search

Back
Top