Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sozzer

  1. sozzer

    IE9 missing option: Use software rendering instead of GPU rendering

    This has baffled me for months now IE9 on Vista is missing "Use software rendering instead of GPU rendering" in Internet options > Advanced. The Accelerated Graphics group is not there. The pc supports gpu rendering (hd3450) - and it works - and I can change the behaviour via the registry, so...
  2. sozzer

    Expected literal constant error

    Thank you - so simple! A
  3. sozzer

    Expected literal constant error

    Hi all This might be a contender for the VBScript forum, but it's Access related so thought i'd try here! One of my colleagues has been kind enough to pass me the below code, which stops Access 2003 JET4 SP8 warning messages popping up when launching an mdb. (fantastic piece of script!) It...
  4. sozzer

    Fastest implementation?

    Cheers guys! That deserves a couple of stars...
  5. sozzer

    Fastest implementation?

    I'm in the process of building an application that will allow people to record time spent doing tasks on, and then allow us to automatically generate reports against forecast etc. Basically, about 45 users in different locations are likely to have the db open all day, all of whom will have a...
  6. sozzer

    Sorting a Combobox RowSource derived from a Value List

    Why not just store the entries in a table and use ORDER BY to sort?
  7. sozzer

    extra blank record in subform query

    cos you're in a 'mode' where you can create records and access creates a record ready for you so can always see a 'blank record'. Check it out in a table.
  8. sozzer

    Populating a cell in Excel based on another cell's information

    For what I'm trying to do on a whole Excel is a better venue for me to use" You sure?
  9. sozzer

    create a number of copies of excel file

    if you're not gonna change it much, i'll go with mintjulep's suggestion. If you want to make the xlt an xls at the same time, no probs...
  10. sozzer

    Excel 2000 - Identifying Login and Computer Name

    To approach this from maybe a different angle, what OS are you running?
  11. sozzer

    Subforms

    Are you using the subform name or the subform control name? You need to use the control name.
  12. sozzer

    Access 2000 Calendar Control Default Date

    Me.calControl.Value = Date works for me but i am using v11. A
  13. sozzer

    Open OLE object via code

    Doh! Simple but effective. Have a star for pointing out the obvious to me!
  14. sozzer

    Search a subform

    Not sure you're refrring to your form correctly. See this link which may help: http://www.mvps.org/access/forms/frm0031.htm
  15. sozzer

    Mulitple comb box "tree" x9 but only one query?

    In the After Update property of the each combo box, do this (example is cbo1 setting rowsource of cbo2) Dim strSQL as string strSQL = "SELECT tblExample.* FROM tblExample WHERE tblExample.fldExample = '" & me.cbo1.value & "'" Me.cbo2.RowSource = strSQL Of course, this uses multiple queries but...

Part and Inventory Search

Back
Top