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!

Recent content by Oliver2003

  1. Oliver2003

    Pull data from website using excell

    Hi No, the link takes you to a previous page where you have to click the "display all series" button. The problem is the link does not change after clicking the button, but the table is displayed - if that makes sense. Thanks
  2. 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...
  3. Oliver2003

    Click on different part of picture to perform different event

    strongm Thank you, you’ve been really helpful
  4. Oliver2003

    Click on different part of picture to perform different event

    strongm, thanks for your help and the example. I have been having a looking at saving the regions to an image file using the BitBlt API and came across a problem! - when using the image control you can set its Enabled property to False so that the regions are displayed in front of the image...
  5. Oliver2003

    Click on different part of picture to perform different event

    strongm, thank you for the example, that’s great!! When using FrameRgn to draw the outline inside the region, I am drawing these over an image on the form. Is it possible to save the outline's of the regions to the image so that when the form is minimised / maximised the outlines of the regions...
  6. Oliver2003

    Click on different part of picture to perform different event

    strongm, koala15, Hypetia thank you for your comments. The modified code by Hypetia now makes it work excellent! I was wondering what is the best way to check multiple regions on the same form/picture instead of repeating: isinside = PtInRegion(test, curpos.x, curpos.y) If isinside = 1 Then...
  7. Oliver2003

    Click on different part of picture to perform different event

    Hi strongm, thank you for your reply, I've been having a look at them over the last few days. I have set up the following basic code to create a region and check if the area inside the region has been clicked. The Polyline API has been used to show the region visually. But some clicks inside...
  8. 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...
  9. Oliver2003

    Clicks on different part of a picture shows different VB forms

    Hi dtqui, Did you get your program to work? I am looking at something similar and just wondering the best place to start, which method to use etc. Thank You Oliver
  10. Oliver2003

    Using Treeview to display 3 linked tables from access db

    vb5prgrmr thanks for the reply. There are not that many records, but it makes sense to only retrieve the records for a node that is expanded. I am looking at using it to build up a reference number based on what the user has clicked on. Combo box might work just as well!
  11. 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...
  12. Oliver2003

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

    Matt, thanks for the reply - I was using a Yes/No check box field in the db - At first it diddent work, so I change "Yes" to True and it works. Thanks for your help Oliver
  13. 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...
  14. Oliver2003

    Renaming and moving files across drives w/ VB6

    Public Sub MoveAndRename(CurrentFileLocation as String, NewFileLocation as String) FileCopy CurrentFileLocation, NewFileLocation 'source , destination Kill CurrentFileLocation 'if you want to delete the you are MOVING - remove i you want to COPY to a new location End Sub MoveAndRename...
  15. Oliver2003

    Application on Memory Stick

    TonHu, you're right HighSpeed USB 2.0 is 480 MBit/s, but I think USB 2.0 is 12 MBit/s and USB 1.1 is 1.5MBit/s. HighSpeed USB sounds just a bit faster!! Oliver

Part and Inventory Search

Back
Top