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: *

  • Users: itflash
  • Order by date
  1. itflash

    Recycle Bin

    thanks for the reply. know what you mean. however, the site I mentioned has a good example with VB source code. They manage it, but use a (I think) a VB function or VB provided API call. I am using their control because it is soooo much faster than a treeview. Any idea what they could be...
  2. itflash

    Recycle Bin

    sorry, no...browse the folder. I am trying to re-create the windows explorer with treeview and web browser control. I have nice utility from http://ccrp.mvps.org/ that provides a quick way of listing directories (well, quicker than my slow treeview). This lists all directories and I'm trying...
  3. itflash

    Recycle Bin

    Hi all Working on an explorer window in foxpro but I cannot access the recycle bin. I know there is no actual path to it, but I've seen it done in other programs so its possible. I'm on windows 2000 and vfp8. The target is windows 2003 TS (no other os's will be used). I cant get it working...
  4. itflash

    Windows Search

    mmm....found a way but not ideal. DECLARE INTEGER ShellExecute IN shell32.dll ; INTEGER hndWin, ; STRING cAction, ; STRING cFileName, ; STRING cParams, ; STRING cDir, ; INTEGER nShowWin wndhnd = ShellExecute(0, "find", "d:\z", NULL, NULL, 0) declare SetForegroundWindow in Win32api...
  5. itflash

    Windows Search

    Hi all Is there any way I can programatically pop up the windows search screen with the directories to be searched auto-populated? What I am trying to achieve is to list files in a number of different directories in one window/form (with icons for the associated applications). Listview does...
  6. itflash

    Array of Controls within an Array

    Thanks for the reply. Sorry, got it all working fine now. Thanks anyway. ITflash
  7. itflash

    Array of Controls within an Array

    Hi all have a question regarding arrays. I am in a specific situation and this requires a specific solution. I am re-creating a grid and would like to hold controls in an array. Therefore, the array has columns of textbox, checkbox (all pre-defined) and has rows of integer. Have played...
  8. itflash

    Execution of string variable containing form name

    Thanks anyway for trying. ITflash [thumbsup2]
  9. itflash

    Execution of string variable containing form name

    Thanks for the reply. The trouble is, I only have the textbox name inside a string variable. Is there no way I can create an instance of the textbox like you do with the form by using my variable containing its name? Thanks ITflash
  10. itflash

    Execution of string variable containing form name

    Thanks for the reply. Know what you are saying. However, I can do this anyway. My scenario is that I have a form and when the user clicks a specific button, I want to manipluate a specific textbox & its behaviour (tab, etc). Therefore, I could do what you suggested and just loop through the...
  11. itflash

    Execution of string variable containing form name

    Thanks for the reply Persume you are referring to the first post in this thread Is there any way I can do this with text boxes? I have the name of a textbox in a string variable and want to set focus to that text box. Thanks ITflash
  12. itflash

    Execution of string variable containing form name

    Thanks for the reply. Is there any way I can do the following? Dim f As TexBox = CType(System.Reflection.Assembly.GetExecutingAssembly.CreateInstance("Namespace.FormName.TextBoxName"), TextBox) f.Focus() It gives me an error. And what is the namespace? The application name? Thanks ITflash
  13. itflash

    Execution of string variable containing form name

    anyone have a solution to this problem? thought I'd raise it rather than start a new thread. Thanks ITflash
  14. itflash

    Windows Explorer - Browse

    OK - more info. My application is to run on a Windows 2003 Terminal Server environment and guess what, it works fine on there. Tried it on a Windows 2000 Server, doesn't work. Tried it on a Windows NT SP6, doesn't work. Something with Windows 2003 Server makes it work. Saves so much time and...
  15. itflash

    Windows Explorer - Browse

    Thanks for the reply Tried that - it's already set to that. ITflash
  16. itflash

    Windows Explorer - Browse

    Aircon Thanks for the reply. Does this work for browsing local directories? When I try it, it opens a new window but all my settings are set to not open a new window. Even when I run the solution example and browse the local C drive, it always opens a folder in a new window. My windows...
  17. itflash

    Windows Explorer - Browse

    Mike Tried this, it appears I do not have the MSOutl32.OCX on my system. I am using VFP 8. After looking on: http://support.microsoft.com/default.aspx?scid=/servicedesks/fileversion/dllinfo.asp It looks like it was only shipped with earlier versions of VFP? ITflash
  18. itflash

    Windows Explorer - Browse

    Thanks all for the replies. [thumbsup2] Baltman Couldnt find a thing, I had a good look around but there was nothing. Powerprinting - Unfortunately, I do need it on a form. AirCon Problem is, I could not find a way of stopping a new window opening when a user opens a directory...
  19. itflash

    Windows Explorer - Browse

    Thanks for the reply. Tried that, but when you double click a folder, it opens in a new window. Thats the issue I could not resolve. Tried using navigate2 events, etc, but could not trap the open folder event to try and code my own. There must be a way...... ITflash
  20. itflash

    Windows Explorer - Browse

    Thanks for the reply. Have done some simple things with the Treeview for specific directories, but did not want to re-invent the wheel if there was another way of doing it. Seems odd that there is no easier way or an activex from MS. Thanks for the lib. Will be useful for accompying my...

Part and Inventory Search

Back
Top