User Profile

Collapse

Profile Sidebar

Collapse
GuillermoDG
GuillermoDG
Last Activity: Sep 24 '07, 09:58 PM
Joined: Sep 14 '07
Location: Montreal
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • GuillermoDG
    replied to Import from excell
    If you import from Acccess with the option in the Access menu, my answer will not help you.
    I import using programs (VB 2005 specifically). The basic idea is:

    Dim AppExcel As Excel.Applicati on
    AppExcel = New Excel.Applicati on
    AppExcel.Visibl e = False

    Try
    AppExcel.Workbo oks.Open(Filena me:=sFileName)
    Catch ex As Exception
    MessageBox.Show ("Unable...
    See more | Go to post

    Leave a comment:


  • GuillermoDG
    started a topic Scope of a function (in a module)

    Scope of a function (in a module)

    Hi,

    I'm having a problem related (I believe) with the scope of a function.

    I wrote in Access 2003 the module A. It contains
    Public Function B(ByVal s As String) As String
    This function returns strings based on strings.

    I got also a query Q1 that is basically
    Select s, B(s) from Table

    The query works well inside Access, but called from my VB.NET (express edition, 2005)...
    See more | Go to post
No activity results to display
Show More
Working...