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 SkipVought 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. cwalshe

    List View Box that Selects Automatically

    OK, so I have a listview box that is being populated from an external source. If at Form Load I ask what the selected item is, it says its the first item in the list. It seems to select the first by default. I want the app to load up and not select anything, ie selecteditem is equal to nothing...
  2. cwalshe

    List View Box that Selects Automatically

    Ok, so its a listview box, not a list. I imagine that there is a difference because listindex is not supported by listview. I would have thought that this would be rather easy to do. I am assuming that listview boxes, by default, selected the first item, so basically I'd like to deselect that item.
  3. cwalshe

    List View Box that Selects Automatically

    No afraid not, listindex isn't supported by listview.
  4. cwalshe

    List View Box that Selects Automatically

    HI there, I have a list view box that selects the first item by default. How can I code, so that it will select nothing unless none so by the user. Rgds, Cormac.
  5. cwalshe

    Listview box- windows explorer

    Hi there, I have make a 'sort-of' replica of Windows Explorer. I have a problem in that, by default, the program automatically selects the first file in the c drive as a selected file. Therefore if I go to delete a folder, it will instead delete the file. Anyway of releasing its grasp on this...
  6. cwalshe

    Positioning forms...

    I want a form to appear side by side to anothe form. Do I need to specific co-ordinates (if so how) so can I code it so that it will automatically appear beside the form that I want. Cheers, cw.
  7. cwalshe

    Coyp and Paste Popup Menu

    Ok, so not to be a nuisance but would this be possible. To create a two option pop up menu that allowed me to copy and paste. However, I'd like my app to run in the background, i.e. while my app was working and if I right clicked on any active doc, only 'my menu' would appear. Basically if my...
  8. cwalshe

    Coyp and Paste Popup Menu

    Ok, so basically this is what I think that I want to happen, while my vb ap is running in the background, I'd like to be able to a) add two new menu item to that right click menu that allows appear, regardless of what open app is open b) these two menu items will copy and paste whatever has...
  9. cwalshe

    Coyp and Paste Popup Menu

    Any idea of how I would go about doing this for copy and paste.
  10. cwalshe

    Coyp and Paste Popup Menu

    HI there, I am wondering if this is possible: I would like to create my own popup menu that will allow me to (a) copy and (b) paste, either text or graphics. I would like this to be a separate menu to the normal menu when you right click, or perhaps even better, an add on to the existing menu...
  11. cwalshe

    Pop Up Menus and File Names

    Hi there, I'd like to have a pop up menu that will allow the following: * if text is highlighted, allow me to copy the text and also the file path (or webaddress) of where it is coming from. I'd rather not change the original Copy function, but if I knew the code for it, then well and good...
  12. cwalshe

    Right Click Menu

    Hi there, I am wondering if its possible to add a menu item to the existing menu for when you select and right click something in any application. Basically, if you select text or a graphic and right click, can you add a new menu item. Thx, Cormac.
  13. cwalshe

    Populating an array from a colunm in a database

    HI there, I am wondering how to do the following: I have a database (say 17 cols in total, no of rows varies). I would like to read the contents of the last column into an array. How do I open the database and take the values into my array. Thx again, Cormac.
  14. cwalshe

    Looping thro an Array...

    Hi there, I have an array populated with various data. I'd like to check each entry in the array for a condition, say does it end in an 's'. If it dose then do something, if not do something else. The testing for teh condition is not too important but I am wondering how do I take each entry...
  15. cwalshe

    Looping in a Flex Grid

    HI there, I have a MS Flex Grid that I want to loop thro and get the values form a particular column and then populate a dynamic array. Any ideas, Cormac. PS The number of rows will vary but the number of colums will remain static.
  16. cwalshe

    For Next Loop and MS FlexGrid

    Hi there, I have a flex grid that contains a list of filepaths. I would like to go thro the flexgrid entries one by one and activate the filepath. However I am unsure of how many entires that there will be at any one time. Any ideas, Cormac.
  17. cwalshe

    Common Dialog Box for Find Files

    Thx. Seems to work well now. Appreciate you sticking with it. Cormac.
  18. cwalshe

    Common Dialog Box for Find Files

    Worked great but there is a same problem. The title of the Find Dialog changes with its search request, ie it starts with Find: All files and then can become anytning, eg Find: File containing acgb How can you keep the app title up to date.
  19. cwalshe

    Common Dialog Box for Find Files

    Public Sub ShowFindDialog(Optional InitialDirectory As String) ShellExecute 0, "find", _ IIf(InitialDirectory = "", "", "c:\"), _ vbNullString, vbNullString, SW_SHOW End Sub Private Declare Function ShellExecute Lib...
  20. cwalshe

    Common Dialog Box for Find Files

    Its not Microsoft Word that I am trying to close but instead the Find Files Dialog, ie Start, Search, Find Files. What should I input into AppTitle?

Part and Inventory Search

Back
Top