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 gkittelson 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. Toranaga

    How to trap ListView ColumnHeader Resize event ?

    I'm using a ListView control and I want to generate an event when I resize the columnHeaders, but I don't know how to do that. Can anyone help me ? Thanx in advance.
  2. Toranaga

    What should I choose: ODBC or Microsoft JET 4.0 ?

    Thank you for your suggestion, I think I'll use OLE DB Provider for Jet 4.0., and I'll quit using DataEnvironment, because I got only troubles since I started using it. I don't mean that DataEnv. is not a powerfull tool (because of its cascade recordsets, and how easy they can be bound to...
  3. Toranaga

    What should I choose: ODBC or Microsoft JET 4.0 ?

    I have a VB application in which I connect to a database using OLE DB for ODBC drivers and DataEnvironment. The problem is that I'm not using neither SQL Server nor MSDE. So I ask, if someone could tell me, is it necessary to use ODBC or is better to use JET ? And what are the...
  4. Toranaga

    How can I make a UserControl to find its own position on the screen ?

    The problem is very simple : I have a UserControl placed on a form. The UserControl has a Command Button on it. When I click the button, I want a msgbox to appear and say the coordinates of the Control on the screen. I have no idea how I could do that (as a matter of fact, I don't know...
  5. Toranaga

    List View highlighted row dispears

    You should set HideSelection=False, on the Properties of the listView. If hideselection = true, then selected row in the list view dissapears only when it loses the focus, but no matter if the state of hideselection was true or false, when I clicked on a blank row (the rows below the data), the...
  6. Toranaga

    Find the number of all files and subfoders contained by a folder

    I'm working on a program in which I need to use a function to show me how many files and subfolders a certain folder contains. You know, just like in Explorer when you click Properties on a folder: it contains X files, Y folders, but I couldn't find anything which I could use. Can...
  7. Toranaga

    How can I find how many files and subfolders are in a folder

    I tried (and I finally succeeded) to make this program (thanx to your help). I will write it below, because I wanna know if you made the same thing: Dim CountFiles As Long Private Function CountSubFolders(Path As String) As Double Dim FSO As Object Screen.MousePointer = vbHourglass...
  8. Toranaga

    How can I find how many files and subfolders are in a folder

    Thank you very much, man, I think this is gonna work. Now I'm trying to "build" a recursive function to count all the sub-sub-...-sub-folders. I did'n think at all about this solution, because I have never worked with FileSystemObjects. Bye !
  9. Toranaga

    How can I find how many files and subfolders are in a folder

    I'm working on a program in which I need to use a function to show me how many files and subfolders a certain folder contains. You know, just like in Explorer when you click Properties on a folder: it contains X files, X folders . I'm almost sure that it can be done only with API functions, but...
  10. Toranaga

    How to select, usig code, an entire row in a DataGrid

    Thanx a lot, man ! It's working! I can't believe it was so simple, because I was trying only complicated solutions.
  11. Toranaga

    How to select, usig code, an entire row in a DataGrid

    I want to select an entire row in a DataGrid using code, not the mous, but I've got no idea how I could do that. I've set the property "DataGrid1.MarqueeStyle = dbgHighlightRow". If the grid had a method, like this "DataGrid1.SelectRow(x)" it would be...

Part and Inventory Search

Back
Top