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

  1. LCoder

    Checking if a process is running

    I use the "createProcess" function (defined in the "kernel32" lib) to start a java programm from my VBA code. The java programm sometime crashes and I am looking for a function that I can use to check whether the process is still running. I have the processID and the threadID to identify the...
  2. LCoder

    DELETE Query very memory inefficient

    Sorry Mike, you are right. The way I wrote it the things are not so easy to understand. We have a table (lets call it "cashflows") with the following four fields: TID: TradeID date: date of cashflow ccy: currency amount The primary key is the combination of TID+date+ccy. This is necessary...
  3. LCoder

    DELETE Query very memory inefficient

    I did some general testing with different ways of deleting data in a table and compared the size of the database before and after the delete process. The test goes as follows: step 1: insert 500 times a set of 10 records into a table. Each record each set has the same identifier step 2: delete...
  4. LCoder

    DELETE Query very memory inefficient

    Hi Mike and Steve, thanks for your reply. Steve: No, i am not creating a new querydef each time, but i reuse a "dummy" querydef, where I change the SQL statement each time. So this is probably not the reason for the increase in size. The table that we do the deletes on holds cash flow data...
  5. LCoder

    DELETE Query very memory inefficient

    We are using Access 97 and have the following problem. We need to do a lot of single deletes on a table and do this by using a DAO.Querydef object and change the SQL code several times. We use plain SQL code, i.e. we set qryDef.SQL = "DELETE * FROM table WHERE condition" qryDef.Execute We do...
  6. LCoder

    MQSeries and Microsoft ACCESS

    Does anyone know if there exists a way to put a string into an MQSeries queue via VBA??? Any help is greatly appreciated. Cheers Lars
  7. LCoder

    Adding Controls to an ACCESS 97 Form via VBA Code

    Does anyone know how to add a control (like a text field) to an ACCESS form via VBA Code. I tried Forms("aForm").Controls.Append but the "append" method is not implemented for a container (like controls). Any help is appreciated. Cheers Lars

Part and Inventory Search

Back
Top