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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TimmyNF

    Access Denied When Trying to Delete a Virtual Substituted Drive

    Hi, I am trying to delete a drive created from the subst command. Whenever I execute the following command: subst x: /d I get an "Access Denied" error. I looked at Microsoft's website and found the following article: http://support.microsoft.com/?kbid=258625 However, I am...
  2. TimmyNF

    ComboBox: Change # of items displayed?

    Ok, I'll let it slide this time, but just don't let it happen again. :P
  3. TimmyNF

    ComboBox: Change # of items displayed?

    It works! The only problem in code was the bRepaint parameter in the MoveWindow function. I had to replace the "t" with "True". Thanks Again! Tim
  4. TimmyNF

    ComboBox: Change # of items displayed?

    I wanted to change it at design time with code. -Tim
  5. TimmyNF

    ComboBox: Change # of items displayed?

    Hi! Is there a way I can increase the number of itmes listed in a dropdown combobox? Currently only 8 itmes are listed then the combox is dropped. I wanted at least 15-20 items to appear. Thanks in Advance, Tim
  6. TimmyNF

    AutoNumber line showing up on bottom of form.

    I think the problem you are having is with the EOFAction of the Datasource. When you get to the last recordset of your database its action is to create a new record. That is why you recieve an autonumber and all the other fields are blank. Look at the "EOFAction" property of your...
  7. TimmyNF

    DateDiff - Years

    Hi! This works(date1 and date2 are dates to be compared): Year(date1) - Year(date2) If you don't want negative numbers use this: Abs(Year(date1) - Year(date2)) -Tim
  8. TimmyNF

    Sort MSFlexGrid

    Hi, I have flexgrid where the last row is a total of data in the rows above. Is there any way I can sort all the rows minus the last one?
  9. TimmyNF

    MSFlexGrid: Always show Scroll Bars

    Is there any way to always show the vertical scroll bar in a MSFlexGrid? Right now, it only shows the bar if the number of rows exceeds the height of the grid window. -Tim
  10. TimmyNF

    .PrintReport Question

    This will work: DataReport1.PrintReport False,3 -NF Tim
  11. TimmyNF

    Date problem in Access query

    The funcion DateAdd() returns a date to which a specific time interval has been added. It would look something like this: SELECT members.* FROM members WHERE [members].[birthdate] Between Date() And DateAdd("ww",1,Date()); If you wanted to add months use "m" instead of...

Part and Inventory Search

Back
Top