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. kmomberg

    Web page popup - DocumentFactory.createDocumentF

    I found a solution. If I compile the program timer events still run at the specified intervals. Now I just have a timer to check for the popup of the new window every few seconds. If it finds the window, it issues a SendMessageto close it. Works great.
  2. kmomberg

    Web page popup - DocumentFactory.createDocumentF

    Is this a global setting or is it specific to the DocumentFactory.createDocumentFromUrl snipet I found to do what I want? Do you have an example? From what I found from google hits, this is a bug in the MS bug fix itself. I found a reference to the problem w/o the details only saying any...
  3. kmomberg

    Web page popup - DocumentFactory.createDocumentF

    I have a partial program to spider a web site. Recently I noticed when I hit certain web pages, I am presented with a popup dialog box: Internet Explorer This page has an unspecified potential security risk. Would you like to continue? Yes No I did some googling and found this goes way...
  4. kmomberg

    Licensing Sheridan OCX

    I rarely look on the microsoft site any more since it is so big and I have yet to enter the right combination of search criteria to return something manageable to sift through. The link has saved me an hour or two of wasted search time. Many thanks.
  5. kmomberg

    Licensing Sheridan OCX

    I was browsing the forum and came across a thread to add a progress bar to a MSFlexgrid. When I added the Sheridan 3D Controls to my project components, I tried to add a SSPanel to my project. When I click on the icon, I get a pop up message indicating "Licensing information for this component...
  6. kmomberg

    Treeview drag n drop to another application

    I have a treeview composed of files/directories as child nodes. I want to be able to drag the parent node to a CD/DVD burning software window so I can burn them to CD/DVD. All of the files/directories of the parent node selected should be copied into the CD/DVD burning software window. I am...
  7. kmomberg

    Automated tasks using SSH to a Cisco switch

    I was stepping through your example to get a feel for how TeraTerm could be used to get the switch details. I found the SSH piece of particular interest since TT does not have a command line version of SSH available yet. Next week I will make any appropriate changes to your macro and run it...
  8. kmomberg

    Automated tasks using SSH to a Cisco switch

    I heard of this product before but discounted it because all everyone everyone was talking about was Putty. I downloaded and installed v3.1.3. I used the TT interface to initially communicate with a test switch. No problem. I then found the command line options and gave them a try. I...
  9. kmomberg

    Automated tasks using SSH to a Cisco switch

    I would like to automate common tasks to a Cisco switch for documentation purposes and routine administrivia using SSH. The tasks should be stored as macros so I can run and reuse them as needed. Authentication to the switches would need to be automated as well since we have ~20 separate...
  10. kmomberg

    Finding (near) duplicate JPG images

    It sounds more and more like the pixel comparison is not the way to go. CajunCenturion: Can you briefly describe the theory behind edge detection?
  11. kmomberg

    Finding (near) duplicate JPG images

    I did not imagine I would get such a lively discussion. Thank you all. I was thinking along the same lines as SemperFiDownUnda in that I would convert both pictures to a common size then divide up each picture into a grid of an arbitrary size (say 100x100 pixels). Compare each region in the...
  12. kmomberg

    Finding (near) duplicate JPG images

    It would seem as though I need to start by disecting an existing JPG image using the JPG standard so I know what the dimensions of the image are, the color depth, if compression is used etc to be able to convert one image into the same characteristics as another so that I can compare them...
  13. kmomberg

    Finding (near) duplicate JPG images

    I have no illusion this is a simple undertaking hence the search for source code to get me started. I originally started by just comparing like file sizes then calculating a CRC on the files. Of course, I readily found this ignores similar files (different resolutions, comments in the file...
  14. kmomberg

    Finding (near) duplicate JPG images

    Has anyone come across a program or link to VB source code (preferably no DLL, OCX or temp files used) which can identify duplicate or near duplicate image files? I have already searched the web but find these are mostly shareware programs which do not give me the control over the images. I...
  15. kmomberg

    Scanning pic files

    Since you have only a few extensions, I would probably imbed the check into the code like: Files = Dir(App.Path & "\*.*") Do Until Len(Files) = 0 FileName = LCase(Files) If InStr(1, FileName, ".bmp") > 0 _ Or InStr(1, FileName, ".gif") > 0 _ Or InStr(1...
  16. kmomberg

    ListView out of memory

    Most excellent. I only tinkered with this a short time today to customize it to expound on your technique. I know what I will be doing this weekend. Thanks for the tip.
  17. kmomberg

    ListView out of memory

    Can you give an example of how the dynamic array would work? As you insert or delete elements of the array, would this not create a lot of flicker due to having to repaint the entire window to accommodate the new view? Do you imagine this is how programs like ACDSee works? Those programs...
  18. kmomberg

    ListView out of memory

    I have been working on a VB6 project off and on for the past several months to allow me to preview graphic files (primarily JPG's) on the HDD as thumbnails to identify duplicates or partial images. I originally started out using the ListView control but found with a thumbnail size of 100x100...

Part and Inventory Search

Back
Top