Recent content by Getatme

  1. G

    Generating text file for bank transfer

    I use the following code to generate Log Files. Function fCreateLogFile() Const LogFileName As String = "Location of Text Files." Dim FileNum As Integer FileNum = FreeFile ' next file number Open LogFileName For Append As #FileNum ' creates the file if it doesn't exist Print...
  2. G

    ListView Control

    Thank you in advance for helping!!!! This code is on the form and performs the event for the DBL_Click: Private Sub lvw1_DblClick() HighLightEmp (lvw1.SelectedItem) End Sub The following code is called once the listview control dbl_click happens. Function HighLightEmp(empalias) Dim...
  3. G

    ListView Control

    I have a form that contains 8 Listview Controls. Each control is populated by a single table. The tables contains employees names and production numbers based on a particlur product line. Each porduct line is a listview control. For example, ListView Control #1 is sales, #2 credit cards, ...
Back
Top Bottom