Recent content by thangasiva

  1. T

    the selected item (each),from combo box list,should open different forms

    thanks VbaInet, it's correct. i missed the 'x' from the file extention '.docx' and i reduced the code to open the file is 'Application.FollowHyperlink Nz(LWordDoc, "")' otherwise it opens the application(ms-word) only and it doesn't open file. now it's ok. thank u. and shall i use ,when i...
  2. T

    the selected item (each),from combo box list,should open different forms

    Re: ms-word document file from the combo box thanks John big booty, it's correct. i missed the 'x' from the file extention '.docx' and i reduced the code to open the file is 'Application.FollowHyperlink Nz(LWordDoc, "")' otherwise it opens the application(ms-word) only and it doesn't open...
  3. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list thanks VbaInet, it's correct. i missed the 'x' from the file extention '.docx' and i reduced the code to open the file is 'Application.FollowHyperlink Nz(LWordDoc, "")' otherwise it opens the application(ms-word) only and it doesn't...
  4. T

    the selected item (each),from combo box list,should open different forms

    thank you SoS to reply me. In access 2007, how can i open a ms-word document file from the combo box list directly, when the item clicked from the combo list box. In my case the name in the (field) list of the combo box is same as the name of the document. so when i click from the list it...
  5. T

    the selected item (each),from combo box list,should open different forms

    Re: combo list box - click- open-word.doc hi, pbaldy if there there are two columns (first ' id', second 'tenses name') in my table means, i should give 1 as column value, to display the 2nd column, isn't it ? Then i used a command button to check whether it open the word document or not...
  6. T

    the selected item (each),from combo box list,should open different forms

    Re: combo list box - click- open-word.doc thank you pbaldy! it works as code wise and show the msg box information "file not found". I already have the word documents to each item in the same name, to identify and open it from the list box easily. (full path is: D:\PROJECT ACCESS DOC\tense...
  7. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list sorry, i don't have zip facility now. if you need any information about db i will supply it. thank you
  8. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list full path is: D:\PROJECT ACCESS DOC\tense tab\tenses 1-25.doc but there are many (about 50) items should be listed in the combo box list. i already have the word documents to each item in the same name,to identify and open it from...
  9. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list hi, it gives me the err run time err 490 can not open the specified file this is the code in text box click event, ok. Private Sub Text55_Click() Application.FollowHyperlink Nz(Text55, "") End Sub
  10. T

    the selected item (each),from combo box list,should open different forms

    combo list box - click- open-word.doc hi ,this will be simple or hard i don't know. In access 2007, how can i open a ms-word document file from the combo box list directly, when the item clicked from the combo list box. In my case the name in the (field) list of the combo box is same as the...
  11. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list but i wrote that code to the textbox click event
  12. T

    the selected item (each),from combo box list,should open different forms

    Re: word document file should be opened from combo list really sorry, how can i add that field to that form
  13. T

    the selected item (each),from combo box list,should open different forms

    Re: ms-word document file from the combo box i try this code below. is my idea wrong or i am nearing? help me. Private Sub Combo5_Click() Dim ComboValue As String Dim LWordDoc As String Dim oApp As Object ComboValue = [Combo5].Column(0) 'Path to the word document LWordDoc =...
  14. T

    the selected item (each),from combo box list,should open different forms

    Re: ms-word document file from the combo box it's cool. i understood the idea to open the word document by command button. but i have to open from combo box list which contain number of items. and i have to choose a item from it and then it should open the corresponding word file directly when...
  15. T

    the selected item (each),from combo box list,should open different forms

    ms-word document file from the combo box hi ,this will be simple or hard i don't know. In access 2007, how can i open a ms-word document file from the combo box list directly, when the item chosen from the combo list box. In my case the name in the (field) list is same as the name of the...
Back
Top Bottom