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 rdavis

  1. rdavis

    Sharing multiple tables between databases

    I hope I am posting this in the right area. I have multiple databases on the same server that are exactly the same, but they are for different 'companies'. I need to share several tables for some companies. These tables must be able to be changed from each database too. I though of creating a...
  2. rdavis

    Please help with variables

    Beat me to it Skip Rob
  3. rdavis

    Please help with variables

    Add 'Microsoft Office Object Library' in Project->References Rob
  4. rdavis

    Imaging for XP

    Anyone? Rob
  5. rdavis

    Imaging for XP

    Has anyone used the new Windows Image Acquisition Library from Microsoft? If so, has anyone seen a difference in speed when loading large tif images? I moved from the Kodak Imaging Control to this and I'm thinking about moving back this is the case. Thank you in advance Rob
  6. rdavis

    form design question

    Use a text box, change the properties of Multiline to True and Scrollbars to 2-Vertical Rob
  7. rdavis

    How do you connect to a access db using code

    Go to Add-ins in your IDE, Add-in manager, then load Data Form Wizard. Go back to Add-ins on the menu, then select Data Form Wizard. Follow the wizard, and it will create a project for you to get you started. Rob
  8. rdavis

    Where does programming come from?

    I remember using a kit that you type in the instructions to the processor by using a hex keypad. Typing the code in was the best, for example, you had to look up the hex code for the MOVE command, etc. Then I found out that we could have done this by using MASM, but the school I was in did not...
  9. rdavis

    VB6 Easter Egg

    Sashanan, for the Excel one, go to www.eeggs.com Rob
  10. rdavis

    Convert Word To Text File

    Did you try saving it as a Document first, then save as a text file? Rob
  11. rdavis

    Convert Word To Text File

    What is the file that you are openning? Is it a template? Rob
  12. rdavis

    Convert Word To Text File

    Dim WordApp As Word.Application Dim WordDoc As Word.Document Dim filename as string Set WordApp = CreateObject("Word.Application") Set WordDoc = CreateObject("Word.Document") Set WordDoc = WordApp.Documents.Add WordApp.Documents.Open(FileName:=filename) WordDoc.SaveAs...
  13. rdavis

    Crystal 8.5 - Visual Basic "The memory could not be written"

    I've had this problem before, but with CR9. It was something to do with the way I declared the Crystal Object. I've tried looking for the article on their website, but could not find it. I still might have it laying around. Let me check during a break. Rob
  14. rdavis

    Crystal 8.5 - Visual Basic "The memory could not be written"

    See if this helps: http://support.crystaldecisions.com/library/kbase/articles/c2012925.asp Rob
  15. rdavis

    Combo Boxes, Additem

    Look into the ListIndex property of the combobox. Only problem, it has to be an integer data type (Which sounds like it is ok for you, an ID, assuming it's a number). Rob

Part and Inventory Search

Back
Top