Search results

  1. Johny

    make dropdown disappear

    Why do ya want to hide the combobox on the first form?
  2. Johny

    Multiple Cascading Combos ???

    The 3 cascading combos work like they should be now but I don't know what you want to show on the form.
  3. Johny

    Images at original size

    At first, thanx for the fast reply. Well,the images are scans of documents people can order with the program I am making. It has to be an image because people want to see an example to know which document they are ordering . So the only option was resizing which I tried but can't be read at...
  4. Johny

    Images at original size

    I can't equal the size of all the images because some of them are scans of documents and the words on it can't be read at a smaller size, already tried it :(
  5. Johny

    simulate disable scroll wheel

    http://www.access-programmers.co.uk/forums/showthread.php?t=68342
  6. Johny

    Multiple Cascading Combos ???

    Have ya got somethin like this? cboMake: SELECT DISTINCT tblMAKE.makeid, tblMAKE.make FROM qryMAKE; cboModel: SELECT DISTINCTROW tblmodel.modelid, tblmodel.model, tblmodel.code,tblmodel FROM tblModel WHERE (tblModel.Makeid=CboMake); cboMileage: SELECT Mileageid, Modelid, .... FROM...
  7. Johny

    Listbox requery issue

    You mean this: 7th record was selected User chooses new item in list Me.ListProgrammes.Requery Me.ListProgrammes=Me.ListProgrammes.ItemData(6) 7th record is selected again ?
  8. Johny

    disable mousescroll

    Yea sorry for my bad english, I kinda talk english, dutch and bad (american?) language in one :)
  9. Johny

    Images at original size

    For some images it looks good but small images look messy ( I can count the pixels if I want.. hmmz :( ) I tried every setting and none showed what I really wanted :( I just wanna show the images at their original dimensions. At this moment, my form "ImageExampleBig" has the dimensions of...
  10. Johny

    Images at original size

    hey, I am working on a program where users can order specific items. They can select the item they want from a listbox and a little example is displayed. I want to give the users the ability to view a bigger example (the image in original size) by clicking the image. My problem is that all of...
  11. Johny

    disable mousescroll

    thanx for da replies, I used some code that was posted in da thread. And in the Form_Current event I set the setbookmark of the form = bookmark of the listbox (selected item).
  12. Johny

    disable mousescroll

    hey, I want to disable the use of mousescroll so users can't scroll through the records. Why I want to do this ya may ask: Well, I use a listbox to display all the orders, when a user clicks an order, the details of that order are displayed. The listbox has the same recordsource as my form...
  13. Johny

    Form based on query

    Well, today I had to start all over again because I lost all my changes I made yesterday because of an internal error, so now I am finally where I was yesterday. Still had the same prob,now I saw you were right, data entry was set to yes. So this was prolly the prob before too. I feel so stupid...
  14. Johny

    Form based on query

    Since I don't really need those clauses, I deleted "group by" and changed "having" through "where". My query works fine now but when I open the form based on this query I can't view the data that is already in it. I can only add new records to it and browse through the records, that I added...
  15. Johny

    Form based on query

    yes, it's set to true. All properties of my form are set properly. Tried everythin' :(
  16. Johny

    Form based on query

    Well, when I open the query manually I cannot change the values of the recordfields either, I just see the records, that's all. It's just a simple selection query I made. When I look at the SQL code I see the "Group by" and "having" clausules. When I delete the "group by ..." and change "having"...
  17. Johny

    Form based on query

    I got a form where admins can aprove orders or not by (un)checking the box "approved". The recordsource of my form is a query that uses coloms from 3 tables. My problem is that I can not change any record of my query. I can browse through the records but cannot change anything. Properties of my...
  18. Johny

    Grouping in forms

    How can I move the group from within the code? Can this be done? I want to move the grouped objects down when user clicks a button, so another object beneath the other one will be shown.
  19. Johny

    Get image dimension

    This I tried: dim intHeight as Integer dim intWidth as Integer dim imgTemp as Image imgTemp.picture=strImagePath intWidth=imgTemp.ImageWidth intHeight=imgTemp.ImageHeight When executed I get the following error (in dutch): Objectvariabele of blokvariabele With is niet ingesteld ('good'...
  20. Johny

    Get image dimension

    Hello, I use a image control on my form which i link to the image file. Users can click the image to see it at full size. For this to happen, I created a seperate form that contains another bigger image control that opens when the click event occurs. My problem is the following: I want to know...
Back
Top Bottom