Search results

  1. I

    rotate image

    could you maybe give me an example of how to use accessimagine?
  2. I

    rotate image

    i've been looking to some alternatieves and i found MODI. does anyone have expierence with this?
  3. I

    rotate image

    i don't understand exactly what you mean
  4. I

    rotate image

    this i a piece of the accdb. the table, the query and the report that i use i put in here. hopefully you can help me like this.
  5. I

    rotate image

    i can't put the whole accdb on it. because there is a lot information in it from the company so i can't just put the whole accdb on here. i will post the code that i use on this form. i hope that you can help me this way. because i can't just put the whole accdb on here. this is the code i...
  6. I

    rotate image

    i'm sorry but i still don't get the turnleft property. maybe i ain't doing it the right way. could you give me a hand with this? i have a report which i generate from a table and in that table is a path where the image is at. so the image can be differrent with each record.
  7. I

    rotate image

    i am looking at this again, because my boss said that it is possible. so now i took a look at accessimagine but it doesn't work with me the way you say it. i don't get the pic.turnleft and turnright. any thoughts on that?
  8. I

    rotate image

    yeah i noticed it that it's hard to do that so i solved this another way. without rotating the image. but thanks for your help anyway
  9. I

    rotate image

    hello, i don't know if it's possible. but i have an report which i generate from a table. in that table i have a field that contains a path where the image is at. at the report i have a image control where i set the control source to that tablefield. but the problem is that the image is...
  10. I

    edit word document in VBA Access

    i'm not going to work with a word file any more. i am trying to do it now through the report. set the margins there and generate that to a pdf file. but it doesn't quite work yet. i need to get 16 labels on a single page. but i only get 14 because the margins at the bottom are to huge.
  11. I

    edit word document in VBA Access

    domcd.OutputTo acOutputReport, h_stdocname, acFormatRTF, h_Filepath, False, h_TemplateFile, , acExportQualityScreen
  12. I

    edit word document in VBA Access

    yes i already tried that. i put that labels.dot in the template file in the outputto but that doesn't work
  13. I

    edit word document in VBA Access

    hello, i'm programming with access, i want to generate labels to a pdf file, but in a pdf file i can't change the margins. now i wanted to do this through a word file. i can change the normal.dot file with the correct margins, but then it applies to all word documents. i have a code to make a...
  14. I

    delete table records with listbox

    i solved it. i changed from a listbox to a continous form. there it works. i put the table in the record source and then textboxen on the form that retrieve the tablefields now my code is Dim h_rs As DAO.Recordset Dim h_SQL As String Set h_rs =...
  15. I

    delete table records with listbox

    i have been looking at my code a bit. i have changed some things and now i get a different error. Set Ctl = Me.list_labeloverview Response = MsgBox(prompt:="Are you sure you want to delete the selected labels?", Buttons:=vbYesNo) For Each vItem In Ctl.ItemsSelected Set h_rs =...
  16. I

    delete table records with listbox

    put then when i put 1 there it doesn't work either
  17. I

    delete table records with listbox

    when i do ik like that i get this error: error 3061 too few parameters expected 1
  18. I

    delete table records with listbox

    when i do that it skips h_rs.delete. For Each vItem In Ctl.ItemsSelected Set h_rs = CurrentDb.OpenRecordset("SELECT pronum, finishing, colour, ref_num_buyer, date, logo FROM Generate_labels WHERE ChangeUserName = '" & ChosenName & "';") If Not h_rs.EOF And Not h_rs.BOF Then...
  19. I

    delete table records with listbox

    when i reply the sql with the table i want to delete it from is doesn't work. the i have the same problem as in the beginning Dim Response As Integer Dim h_rs As DAO.Recordset Dim vItem As Variant Dim Ctl As Control Dim rs As DAO.Recordset Set Ctl =...
  20. I

    delete table records with listbox

    the records aren't being deleted from the table. when i select multiple records and press delete the records stay in the listbox and in the table and one with a single records it doesn't do that
Back
Top Bottom