Search results

  1. 2

    list view

    I have a list view in my form I add new rows in the list view by code here is my code: ListView.HideColumnHeaders = True With ListView.ListItems .Add , , name_book, , 1 .Add , , name_pupil, , 3 .Add , , MAX_DATE, , 4 .Add , , KAT, , 5 .Add ...
  2. 2

    update access db by HTML page

    up up up .... sorry but I try again, maybe now someone can help me. thanks.
  3. 2

    update access db by HTML page

    first i'm sorry on my english. I have in my work some computers with network. I want to send mail to one computer, the mail is like form in HTML have 3 things: 1. textbox 1 select 1 submit is it possible to get the mail and to write in the mail and send it (by submit button) then to...
  4. 2

    write vertical in forms / report

    ... sorry that its your answer. but thanks! maybe you know if is possible in VB.net?
  5. 2

    write vertical in forms / report

    I know about the option write vertical. my problem that I cant to work with it. for example I want write in the verical filed JUN 2005 and in all the other filed write Horizontal is it possible? if some one can printscreen of a report that seems to what I look for it will help me alot...
  6. 2

    print string by access

    Tnx I will try on other computer.
  7. 2

    print string by access

    My printer have space in the name so I changed the name of the printer without spaces (picture attach) and its also dont work. what do I need? thanks!
  8. 2

    print string by access

    first of all thanks, and I agree with you that I have to search. but english is not my home language so search and find the exectly what you search is not so easy. think about it. second I try your code in my project and it dont work is it need some change or it have to work just by copy...
  9. 2

    print string by access

    I have string I want to print the string and no by report for example: dim s as string s = "hi" & vbcrlf & vbcrlf s = s & "my name is sharon" now I want to print the string in the printer with default font and default size. is it possible? thanks!
  10. 2

    Function Date() isn't work

    write datetime.date it will fix your problem
  11. 2

    call fuction from query code

    i have a sample function Function GetPercent(n As Integer) As Integer Select Case n Case 1: GetPercent = 100 Case 2: GetPercent = 50 Case 3: GetPercent = 0 End Select End Function I have a table like this a | b | c | d | e | f | percent...
  12. 2

    bookmarks delete BySelf

    I did a word document in word with many bookmarks (like 900) and the access insert the value to the document. I give it to my customer and many bookmarks was missing I dont know what can be the problem. maybe that I have office 2003, and the customer 2000 all help will be thanks! (sorry if...
  13. 2

    Access to Word Automation

    I dont sure that I anderstand all the dialog but if you want to insert in word value from access you have to insert in the word bookmark ( or you can also text filed) put the bookmark axactly where you want to insert the value and in the access you write this code: Dim objwors As...
  14. 2

    open "Print Layout" in word by code

    thanks! I'll try and if I missing the reference of word, can I copy the file from other computer and insert into my computer?
  15. 2

    open "Print Layout" in word by code

    first of all thanks! this trick is new for me and its a butiful! I try to do and I got an error here is my code: Private Sub m1_Click() Dim objWord Set objWord = CreateObject("word.application") objWord.Visible = True objWord.Documents.Add DocumentType:=wdNewBlankDocument 'new document...
  16. 2

    open "Print Layout" in word by code

    In the menu in word there is some option to view the documents 1. Normal 2. Print Layout 3…. I open the word’s document from the access I insert value from the access into word. I asked here some question in last week and I helped so much. My question now is: In the document in the word I...
  17. 2

    access and word' work together???

    butiful!!!!!!!! I did it and its work good just I put the bookmark to put the table in its place. and here the result.... thank all! :p [SJ McAbney I didnt write Dim db As DAO.Database Dim rst As DAO.Recordset because I MISSING REFERENCES]
  18. 2

    access and word' work together???

    I have an application on access that export the data to word. I did a query and the data export to word my code is: Dim db, rst Dim strSQL As String Set db = CurrentDb '÷éùåø åôúéçú ååøã, åäöâúå áöåøä îåñøú Dim objWord 'As Word.Application 'Set word as an application and make it...
  19. 2

    I have a template in word

    sorry in the question there is the answer I so stupid :eek:
  20. 2

    I have a template in word

    and I want to write in some places I know to open the word and write in to the word to write in to word: Dim objWord As Word.Application Set objWord = CreateObject("Word.Application") objWord.Visible = False 'True is visible objWord.Documents.Add...
Back
Top Bottom