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 SkipVought 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: tcode
  • Order by date
  1. tcode

    Integration with MLS real estate database

    Has anyone built a site that has integrated the real estate MLS database into a personal realtor's web site? I have a prospective client who wishes to have this functionality and I need some advice on where to find info on doing this...Any assistance you can provide will be greatly appreciated!
  2. tcode

    Javascript "Back Button"

    Thank you very much. I will try that.
  3. tcode

    Javascript "Back Button"

    I need help with allowing users to select a button or link to return to the previous page, much the same way that IE Back Button works. Does anyone know how to do this in an HTML page? I don't want to have to reload the previous page with values, but just to return to the previous page...
  4. tcode

    Populate fields from keypress event from another form field.

    Perfect! Thanks so much!
  5. tcode

    Populate fields from keypress event from another form field.

    I have a form that requests 2 separate addresses (addr1,addr2,city,state,and zip fields). As a user enters keyboard strokes into the street address field, I'd like it to also populate the street address field for the second street address area. The user should be allowed to modify the second...
  6. tcode

    SSTab Question

    To apply a subform to a tab control, place a picture box on your form where you want the subform to be on your tab. Place this code in a bas module: Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Private Declare Function GetClientRect Lib...
  7. tcode

    Re-name file with VB6

    What is the error that you are receiving?
  8. tcode

    Transferring records from one listview to another

    Thanks for the response. It is much appreciated... The problem that I'm having is in the "for loop", however. Your solution creates an out of bounds error. If there are 26 original records and I transfer 3 of them out to another listbox, the "for loop" is still going to iterate through the...
  9. tcode

    Kodak Controls not working Win2k Pro

    I had this happen to me when we upgraded to WindowsXP. I learned that the Kodak image control was once a part of the Windows operating system and Windows decided not to include it with the Win2000 kernel and instead include their own imaging control. We ended up doing something similar to what...
  10. tcode

    get a list of folders

    To reference the Microsoft Scripting Runtime, in VB go to your menu item named Project, then select references. Good luck!
  11. tcode

    get a list of folders

    You can try this... Make sure that you've referenced Microsoft Scripting Runtime Dim oFS As FileSystemObject Dim oFolders As Folders Dim oFolder As Folder Dim itmX As ListItem Dim sValue As String Set oFolders = oFS.GetFolder(folderpath) For Each oFolder In oFolders...
  12. tcode

    High Resolution image in a Picturebox control

    Unfortunately, I don't think that image compression can be managed in code. Software such as Adobe Photoshop and Paintshop Pro will allow you to reduce the size of the picture while maintaining image resolution to some degree by adjusting its amount of compression. Hope that helps...
  13. tcode

    Transferring records from one listview to another

    I'm trying to transfer records from one listview control to another. Here's the logic: Dim itmX as listItem For Each itmX In lvwGrps.ListItems If itmX.Selected = True Then PopulateGroupAdd itmX.Text, itmX.SubItems(1) lvwGrps.ListItems.Remove itmX.Index...
  14. tcode

    Releasing Word Object in code

    Perfect! It releases the process when it executes the appWord.Quit statement. Thanks so much!
  15. tcode

    Releasing Word Object in code

    I've created a program that creates envelopes using word by passing in the recipients name. No matter what I've done, I can not get the program to release the word doc. from the system memory. What ends up happening is there are 13 open word documents when the code completes it's course through...

Part and Inventory Search

Back
Top