Search results

  1. K

    Allen Browne's ConcatRelated

    Is it possible add a new line between each value? For example, my current results look like this: (555) 140-4726 [1] Home, (555) 331-6658 [2] Cell, (555) 345-7062 [3] *EMERG* And I like to get this: (555) 140-4726 [1] Home (555) 331-6658 [2] Cell (555) 345-7062 [3] *EMERG* Thanks, Kevin
  2. 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!
  3. 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...
  4. 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
  5. K

    Progress Bar on Ftp Upload

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