Recent content by EmperorSpry

  1. E

    Column Format

    Right now I'm doin a listing in word thats that has information running from top to bottom (left to right) in three columns. So my question is: Is there a way to format a report so the data comes out in multiple columns instead of one long continuous column?
  2. E

    afterupdate - please help

    Thank you thank you thank you, problem solved
  3. E

    afterupdate - please help

    This is what I have right now in VB Private Sub Station_List_AfterUpdate() Me.[WI-Zone] = Me.Station_List.Column(1) Me.[WI-Station Phone] = Me.Station_List.Column(2) Me.[WI-Station Fax] = Me.Station_List.Column(3) End Sub This is whats listed on the rowsource of the combo box SELECT...
  4. E

    afterupdate - please help

    Private Sub Station_List_AfterUpdate() Me.[WI-Station Phone] = Me.Station_List.Column(2) Me.[WI-Station Fax] = Me.Station_List.Column(3) End Sub This is what I have and it still doesn't pull the information. And it doesn't pull any information after that.
  5. E

    afterupdate - please help

    I have combo box that lists different stations that fall under my office. The info pulls from a database that has all the stations, their phone and fax numbers. On the form, I have a text box for the phone and the fax but I want it to automatically update when I select a recruiting station in...
Back
Top Bottom