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 Mike Lewis 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. davejackson

    How to treat an empty row as nothing

    Works perfectly, thank you.
  2. davejackson

    How to treat an empty row as nothing

    Hi, I'm outputting html from custom tags using style sheets. Sometimes the row will be empty and I'd like the output to appear as if there is no row there at all. No matter how I change the border, margins etc., the empty table row still takes up some space on the page. Is it possible to...
  3. davejackson

    Retrieve Display File Description API QDFFSCRA

    You are very right, QDFFSCRA is one of the tables within the QDFRTVFD API. Too much time reading through those 65 pages has clearly addled my head. Anyway, I ending up giving up, I still don't know if it's possible. Thanks anyway. Dave
  4. davejackson

    Multiple WebSphere Instances

    Hi, Has anyone seen any good documentation on how to configure two seperate application servers to seperate ports using seperate datasources with seperate virtual hosts? (preferably on iSeries). Unfortunately I'm having problems using my second HTTP server with my second instance with 'not...
  5. davejackson

    Retrieve Display File Description API QDFFSCRA

    Hi, has anyone successfully used the QDFFSCRA API and would be prepared to share some code? I need to retrieve details of the fields and any No Display indicators associated with them. Is this even possible? Thanks in advance, Dave
  6. davejackson

    Inputing data into 2 tables.

    erik71, try just filling the tables using a couple of runsql commands such as DoCmd.RunSQL "INSERT INTO tblName (FieldA, FieldB, etc.) VALUES ('" & FieldA & "', FieldB, etc.);" Just a suggestion, but it might work... Dave
  7. davejackson

    DoCmd.Close shutting down all Access

    Hi, I'm running the following code to delete a specific record from a table from a 'delete form'. (No idea if this is relevant). About half the time the DoCmd.Close line is executed the whole of access closes. (The other half it seems to behave normally and just shuts the form). This is...
  8. davejackson

    Split Database Performance Still Slow

    Hi, I have a 3Mb database that at the moment is mostly forms, queries etc. It was very slow when I run it off the network so I decided to split it and put the back end on the server and front end on PC. However, the speed has not improved at all and forms and queries are still taking a long...
  9. davejackson

    Testing if a Chart worksheet already exists in Excel

    Danyul, The 'Count' above is a variable of mine as I am reading down the excel table until I run out of rows and each time specifying three fields for the graph. If there is another 'count' property I probably just picked a bad name. The number of rows (and hence 'bubbles' on my graph) can...
  10. davejackson

    Testing if a Chart worksheet already exists in Excel

    Danyul, Thanks very much for your help again. I felt like I was getting the hang of this now. The only problem is that when I am running the macro in access to create my charts in excel, the line; appExcel.ActiveChart.SeriesCollection(Count).XValues = "=tblOutputofMetricData!R" &...
  11. davejackson

    Testing if a Chart worksheet already exists in Excel

    JVFriederick - Unfortunately I have many charts being created off a lot of different data and I want the user to select which chart they want to see. Danyul - That works brilliantly, I'll have to get into this monitoring for errors thing. You don't know if it is possible to store and run the...
  12. davejackson

    Testing if a Chart worksheet already exists in Excel

    Hi, I am exporting a table from access to excel and then running a macro over the data to create a chart (I'm doing it in excel as it's a bubble chart and i've no idea how to code the macro over and access table). I would like to do one of two things, Either, check if the chart worksheet...
  13. davejackson

    Deleted record remaining in combo box

    Thanks for the reply but I would like another record to be displayed, even if it is just the first record. It seems crazy to find the first record again but i guess i will...
  14. davejackson

    Deleted record remaining in combo box

    Thanks for the reply, it does remove the record from the combo options but remains being displayed initially until you select something else. I'll keep bashing away. Thanks again...
  15. davejackson

    Deleted record remaining in combo box

    Hi, I have a subform which contains a combo box. The combo box selection moves the data on the subform to the selected record. A button on the subform deletes whichever record is selected at the time. I cannot get the deleted record to disappear from the combo box even though I am doing...
  16. davejackson

    Check/uncheck all check boxes. How to?

    That works fantastically, Thanks very much, Dave
  17. davejackson

    Check/uncheck all check boxes. How to?

    Hi, I have a form that is based over a table that is created from a make table query (So that the user can select records from a smaller number of records). One of the fields is a check box that is built over a yes/no field on the table. If the first query generates a lot of records, I would...
  18. davejackson

    Records output from query dependent upon cursor position

    thanks for the reply, still don't know why this happened, managed to solve it by saving the record before the query was run. Thanks again.
  19. davejackson

    Records output from query dependent upon cursor position

    Hi, I have a form from which I select individual records using a check box. Those records selected are then output from a query with fields that are calculated. When I run the query, individual records are sometimes missing depending on where I position the cursor prior to pressing the query...
  20. davejackson

    Rnning a query over selected unrelated records from a table

    thanks Simon, that's looking pretty good...

Part and Inventory Search

Back
Top