Search results

  1. K

    Calling Public Sub from an Array

    Gasman - it's test each time the "Continue" button is clicked, which just runs modContinue again arnelgp - CallByName did the trick! Thanks!
  2. K

    Calling Public Sub from an Array

    In a module I have: Public FormArray(9) As String Public Sub modContinue() If FormArray(0) <> "" Then Select Case left$(FormArray(0), 2) Case "fr": DoCmd.OpenForm FormArray(0) Case "cm": Call FormArray (0) End Select 'Shift the remaining elements up one For i...
  3. K

    Progress Bar on Ftp Upload

    Thanks freuzo/gasman Got it Private Const FILE_ATTRIBUTE_NORMAL As Long = &H80 Private Const FTP_TRANSFER_TYPE_BINARY As Long = &H2 'Download File Flags = &H0 FtpGetFile HwndConnect, SourceFile, DestFile, Flags, FILE_ATTRIBUTE_NORMAL, FTP_TRANSFER_TYPE_BINARY, 0
  4. K

    Progress Bar on Ftp Upload

    Could someone modify this to download a file?
Back
Top Bottom