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 kleo

  1. kleo

    Clearing an Access table from Visual Basic

    Here is one way I have used to clear an Access table:<br> With [variable name of table here]<br> If Not (.EOF And .BOF) Then .MoveFirst<br> Do Until .EOF<br> .Delete<br> .MoveNext<br> Loop<br> End With<br> <br> Hope that helps!<br> kleo<br> <br>...
  2. kleo

    ActiveX Dll Error 430: Object does not support automation

    I have had problems in the past compiling an EXE on an NT 4 machine and then deploying it on a 95 machine. Strange bugs popping up in seemingly unrelated modules. I have found that re-compiling the EXE on a 95 machine usually fixes it. <br> <br> Hope that helps! (BTW, when I spoke with an MS...
  3. kleo

    New to VB, Trying to call and manipulate Excel Sheet from VB

    I used this to detect a default browser and launch it, so this can be modified to launch Excel:<br> <br> These two statements are module level declares:<br> Dim m_sPath As String<br> Private Declare Function FindExecutable Lib "shell32.dll" Alias "FindExecutableA" (ByVal lpFile As String...
  4. kleo

    Handling a Long Varbinary data type in Brio

    Can Brio handle/display a Long Varbinary data type. I am trying to pull this from a Broadbase data mart into a brio query and I receive a Memory Allocation failure. Anyone know if Brio can handle this data type?
  5. kleo

    Cursoring in Broadbase

    Anyone had any experience cursoring in Broadbase? I would like to get a tip on how to get started with that. Thanks in advance!

Part and Inventory Search

Back
Top