Search results

  1. K

    One Liners; Tidbits; Wise Sayings

    For others who still have nightmares about French homework: KudoZ(tm) term questions The KudoZ network provides a framework for translators and others to assist each other with translations or explanations of terms and short phrases. http://www.proz.com/kudoz?&pairs=&level=&float=
  2. K

    Copyright

    CopyLeft An alternative to copyright: This might be of interest to those of you who create longer or more complex code and generously make it available here and elsewhere. Kudos to you all. :) Read more: http://www.gnu.org/copyleft/
  3. K

    Scrolling problem

    Hi, I have had similar issues in the past, in fact every time I created a tabbed form. :rolleyes: I think that your tab control is positioned so that its bottom edge is off the form at the size the form opens at solution 1: Decrease tab control size Solution 2: Increase form size Solution 3...
  4. K

    Export Report

    Blacknife, I see your problem is solved, but thought I would chime in anyway with a couple of alternatives. :) If the people getting the report have Access on their PC then you can use the built in snapshot report format. This is exactly as formatted on your system but is uneditable. The only...
  5. K

    Women Can't be Pedophiles

    From my studious watchng of American televsion shows (Law & Order etc) and reading various reports in The Economist, the link seems to be very weak over there. I don't know how much better it is in the UK, but any disconect is not so obvious. In my current locale, Justice & the legal system are...
  6. K

    Women Can't be Pedophiles

    Taking into account the age of the 'perp' seems eminently sensible to me. On the news article I saw, the lawyer interviewed claimed that a boy at the age of consent (I think it was 18) was prosecuted for statutory ra** of a consenting girl of 16 on pressure from the girl's parents. He was...
  7. K

    Now it's official

    I thought this was a 'destroy the post above' thread at first. God fun. :)
  8. K

    Opening a report using combo box?

    I haven't tried this but I think you could use a case select in the combo box after update event to determine which entry was selected and then use this as the stDocName in the run report command. Dim stDocName As String ... Case "your report name" stDocName = "your report name" ...
  9. K

    Controlling Page Width of Report

    When you are viewing the report in design mode, does the little square at the top left corner have a green triangle in it? If yes, there is a problem and Access will tell you what is. In this case, I would expect it to say something like "your report is wider than the printable space. This may...
  10. K

    Women Can't be Pedophiles

    Hi statsman, An article on Orbit News yesterday insisted that she would be on the sex offender's register for life. Don't know if it is right though. I think there is a fundamental difference between a girl being seduced by an older man and a boy being seduced by an older woman. I don't know...
  11. K

    New Game, Destroy the Picture Above

    Fascinating: http://en.wikipedia.org/wiki/Every_time_you_masturbate%E2%80%A6_God_kills_a_kitten Keep up the good work - this thread has me like a cheap soap opera. :D
  12. K

    Enabling textboxs with radio button

    Kabir, This isn't quite what you are asking for but I have something similar on one of my forms. Hide the combo boxes (format them visible = no) and in the case select of your option buttons use me.yourcombobox.visible = true to show the appropriate box. In the after update of the combobox...
  13. K

    Populating Combobox columns with SQL

    FoFa, that does sound much easier. I will try it right now and post back if it works.
  14. K

    Happy birthday Oldsoftboss

    Hear Hear! :)
  15. K

    Populating Combobox columns with SQL

    I am trying to improve the performance (loading time) of my main form. The big tip seems to be use SQL in VBA to populate subforms and comboboxes when needed, rather than when the main form loads. I have a combobox configured for 2 columns, bound column = 1 and column widths set at 2cm each...
  16. K

    Extract AutoCAD Attribute

    mtahir, I use AutoCAD in my work but am no expert. I do know, however, that there are user-groups all over the place so there must be associated websites. Have you tried a google search for your problem or even the AutoDesk home page?
  17. K

    Combo Box versus List Box?

    Thanks pbaldy. I haven't needed either of those things yet which is probably why I haven't ended up using alist box. It seems like I'm not missing anything by avoidng the list box. :)
  18. K

    warning message

    Thanks Vas, The solution to Kerries problem was beyond my (very) limited scope.
  19. K

    Combo Box versus List Box?

    This might be a silly question - I appologize in advance if it is. - let me know! :) I have searched a bit and found nothing quite along the same lines. I have realized that I only use Combo boxes, avoiding List boxes entirely. I had some early difficulties with List Boxes that I can't recall...
  20. K

    Update Query Problem

    Hi WtFudgE, Without having thought about this too deeply, it sounds like a referential integrity problem. First up, I'd check the links between tables. It may be that you have a cascade delete that isn't required. Mirriad posts on the subject on this forum. Use "Referential Integrity" in a...
Back
Top Bottom