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

    MSADODC.ocx - dll?

    do i need a dll file to run a MSADODC.ocx!!!
  2. rocken

    Error when app is run from clients

    I'm having the same problems!! I have an Access datebase connected to a VB interface exe file. When I run it locally on my PC no problems! When I package and deploy it I get ado & comdlg errors during the install.
  3. rocken

    PRoblem w/ packaging & deployment! ADO & COMDLG

    My exe file and database runs great on my PC. When I package it and deploy it end users can't properly install all the files. My errors seem to be my ADO & comdlg files. Help would be greatly appreciated. Thank you, Glenn
  4. rocken

    Scroll Bars

    This code works great for me. Let me know how it works for you. Dim VPos As Integer Private Sub VScroll1_Change() Call ScrollForm(0) End Sub Private Sub VScroll1_Scroll() Call ScrollForm(0) End Sub Public Sub ScrollForm(Direction As Byte) Dim ctl As Control 'Scroll...
  5. rocken

    Professional vs. Enterprise Full Versions

    Can someone tell me the diffrence between Pro & Enter. versions of VB 6.0? Will Pro allow an exe file connected to a database, created on a desktop to be distributed and deploy on a server? Can I do this or do I need to have MS Visual Studio (either Pro or Enter)on the server in order to run...
  6. rocken

    How do I find out which library(s) I'm missing?

    I'm trying to run an VB exe with a MS Access db on a LAN. Whenever I run the exe on a PC that doesn't have Visual Studio I rec' the error message Run Time Error '91' Object variable or With block varible not set. Why when I run the exe. on my PC locally c drive the programs works but not on the...
  7. rocken

    RUN TIME ERROR 91...

    thanks! How do I find out which library(s) I'm missing?
  8. rocken

    Using Scroll Bars on Large Forms

    this code worked great for my form that needed a vert scroll Dim VPos As Integer Private Sub VScroll1_Change() Call ScrollForm(0) End Sub Private Sub VScroll1_Scroll() Call ScrollForm(0) End Sub Public Sub ScrollForm(Direction As Byte) Dim ctl As Control 'Scroll...
  9. rocken

    alternative to form scrolling?

    I too found at the hard way, but the code offered up by lovehuman worked perfect for me.
  10. rocken

    vertical scroll bars on a form

    Thanks, I will give it a try.
  11. rocken

    vertical scroll bars on a form

    Can I code a vertical scroll bar on to a form!!!

Part and Inventory Search

Back
Top