Recent content by Pro

  1. P

    Passing two Cobobox value to two texbox in form

    I find the problem :D In combo box I was set Column count 2 now I change it to 4 Everything is ok Thank you all My Friend burrina ,, bob fitz ,, MarkK
  2. P

    Passing two Cobobox value to two texbox in form

    Thank you MarkK But how I do that ? you mean upload it ?
  3. P

    Passing two Cobobox value to two texbox in form

    Run-time error '94': Invalid Use of Null ---------------------------- also I try for Column(2) I get the value
  4. P

    Passing two Cobobox value to two texbox in form

    yes I get Empty text box
  5. P

    Passing two Cobobox value to two texbox in form

    Thank you for your assist not locked ... who can assist me ?
  6. P

    Passing two Cobobox value to two texbox in form

    yes http://s7.postimg.org/yqfdag9bv/Untitled_2.jpg
  7. P

    Passing two Cobobox value to two texbox in form

    http://s9.postimg.org/a5d0ph0vj/Untitled_1.jpg
  8. P

    Passing two Cobobox value to two texbox in form

    Yes I sure when I select from CoboBox [CardName] I get value to Purchasing textbox that match Me.CardName.Column(2) But in Selling textbox still empty I think the problem with code
  9. P

    Passing two Cobobox value to two texbox in form

    Hello All .. fix code Please ... Private Sub CardName_AfterUpdate() Me.Purchasing = Me.CardName.Column(2) Me.Selling = Me.CardName.Column(3) End Sub I get value of Column(2) in Purchasing textbox but in Selling textbox not why ?
  10. P

    Two tables in query

    hhh ,,, thanks my Dear it...ok
  11. P

    Two tables in query

    I try and see
  12. P

    Two tables in query

    I do it after that ?
  13. P

    Two tables in query

    Hello All... Please Help . I have two tables (1- User) , (2-Dept) have filed name D_Sum and link ID of [User] to UserID of [Dept] table My question is how to add both of tables and get all user with filed name D_Sum form [Dept] table :confused: in order to filter User with that have...
  14. P

    TextBox [Date]+30

    I do it my friend
  15. P

    TextBox [Date]+30

    Dear pbaldy Thank you very much .... it ok Private Sub Date_AfterUpdate() Me.ValidityDay = Me.Date + 30 End Sub ........
Back
Top Bottom