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

    Pull data from website using excell

    Hello I'm looking to pull RPI data from: http://www.statistics.gov.uk/StatBase/tsdataset.asp?vlnk=229&More=N&All=Y which displays the complete table, however the link above is not a direct link and if entered in explorer it displays the starting page and you have to click the "display all...
  2. Oliver2003

    Click on different part of picture to perform different event

    I would like to click on different parts of a picture to perform an action, such as display another from or msg box. I have looked at using transparent rectangular labels, but the areas that need to be detected are not rectangular. So I guess I need to use the x, y coordinates and check they...
  3. Oliver2003

    Using Treeview to display 3 linked tables from access db

    I am not familiar with the treeview control and was wondering if it is possible to display linked data from tables using a root item for the data in the first table, then a child for the data related to this root from the second table and then another child to display data from the third table...
  4. Oliver2003

    Set the Let and Get Properties for a Check box in ActiveX Control

    I am displaying a recordset using the data repeater control; I have created an ActiveX Control that has various text boxes and one Check box. The Text boxes display fine, but the Check box does not display any info from the recordset, the code I am using is: Public Property Get...
  5. Oliver2003

    Loop through data entry forms i times

    I have two forms that I use to input data into a ms access databse. Both the forms put in one record e.g. some info is entered in the first form, then you click next, enter info in the second form, clcik OK and all the info is entered into one record. What I would like to do is do this a...
  6. Oliver2003

    SQL - selecting values from one table based on values from another tab

    I have been using the sql below to select the DocNo field from table A and the maximum RevNo for this DocNo from table B. This sql was posted by Golom in a previous thread701-626707 Select A.DocNo, MAX(B.RevNo) As [Max Revision] From Docs As A INNER JOIN Revisions As B ON A.DocNo = B.DocNo...
  7. Oliver2003

    Application.FollowHyperlink in VB

    Is it possible to use Application.FollowHyperlink to open a document in visual basic just like in access? If not is there another method with out specifying with program will open it? Thank You.
  8. Oliver2003

    stop list view column header re-sizing

    Is it possible to stop the re-sizing of certain column headers in a list view. I would like to set some headers width to 0 (not visible) so that I can store info here that I dont want the user to see? OR is there a better method that this to make columns invisible to the user? Thanks in advance.
  9. Oliver2003

    recordset Update in class to update all records in lower case

    Is it possible to update all fields in a record set in lower case (lcase). I am using a class to get the recordset and the update event is as follows: Public Sub Update() With adoPrimaryRS .UpdateBatch adAffectAll If .EditMode = adEditAdd Then MoveLast End If End With End...
  10. Oliver2003

    Multi column list box in vb

    Is it possible to have a Multi column list box - similar to the list box used in ms access. Is it also possible to add pictures to the list box - I am looking for something similar to the mail list in outlook e.g. where to, from, subject etc is displayed. Thank You
  11. Oliver2003

    Is it possible to get email info from outlook?

    Is it possible to retrieve e-mail information from outlook, such as to, from, e-mail body, time date etc into a visual basic form? How would this be done? Any comment or ideas appreciated Thank you
  12. Oliver2003

    Combo box after update in vb?

    I have been used to using the combo box in ms access but have recently started designing a front end to a access db in vb In my access form I had a combo box with the row source set to "Names" in table "Contacts", in the after update event of the combo box I used Dlookup to...
  13. Oliver2003

    Displaying subdata in a datagrid from access 2000 database

    Hi, I'm trying trying to display subdata in a datagrid. e.g in access I have the tables Authors and Books (a one to many relationship which is linked by the field AuthorID) What I would like to do is display on the same form, the author details using text boxes (I have this part working) and...
  14. Oliver2003

    Strike through text

    Is it possible to change the text in a text box to strike through text by clicking on a command button? What sort of code would this require? Cheers
  15. Oliver2003

    Connect to access 2000 db with .mdw security user name and password

    Is it possible to use vb to connect to a access 2000 database that has jet security (.mdw) by specifying where the mdw file is and a user name and password all in code? Thanks in advance.
  16. Oliver2003

    How do you connect to a access db using code

    Hi, I'm looking for some basic info on connecting to a access 2000 database through code and navigating, adding, deleting records. I have the basic idea that I need Jet 4.0 as the provider and the connection below, Dim db As Connection Set db = New Connection db.Open...
  17. Oliver2003

    What are the alternatives to a continuous form?

    I am thinking about converting a access database into a access database and a vb front end. My original database uses a few 'sub' continuous forms, i.e. I have two tables with a one to many relationship, in access I would display this with a main form showing the primary info and a sub...
  18. Oliver2003

    vb front end, access db back end is it possible?

    Is it possible to develop a vb front end and a access database as a backend and then distribute the application to users who do not have ms access? I do not have the developer edition of access but have vb. Any thoughts on vb project or access database are welcome cheers
  19. Oliver2003

    Data missing when printing a dirty record / form!!

    I have a form where data is entered and updated - on this form I have a cmb which prints a report for the current record using the docmd.openreport method. The problem I am having is that when new data has been added to the form and the print button is clicked, the report will print off but not...
  20. Oliver2003

    Display records horizontal in report footer

    Is it possible to display records horizontal in report footer. I have a table which is used as a key to numbers on the report and I would like to display this horizontally across the bottom of the report. The table is TblKey and the fields are KeyNo and KeyName, I would like it to display...

Part and Inventory Search

Back
Top