Announcement

Collapse
No announcement yet.

SHELL32.INC

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Adrian C Aitken
    replied
    Found it by wandering around www.mvps.org - thanks Semen for pointing me towards that site .

    Regards

    Adrian Aitken

    Leave a comment:


  • Adrian C Aitken
    replied
    Thanks Semem, unfortunately the list is a lot longer (and newer) and its the new bits I'm after ie 'BIF_NEWDIALOGSTYLE'. I had toyed with the idea of going through ever number but decided against that !

    Regards

    Adrian Aitken

    Leave a comment:


  • Semen Matusovski
    replied
    Andrian ---

    I can give you some

    ' BROWSEINFO ulFlags values:
    ' Value specifying the types of folders to be listed in the dialog box as well as
    ' other options. This member can include zero or more of the following values:

    ' Only returns file system directories. If the user selects folders
    ' that are not part of the file system, the OK button is grayed.
    %BIF_RETURNONLYFSDIRS = &H1

    ' Does not include network folders below the domain level in the tree view control.
    ' For starting the Find Computer
    %BIF_DONTGOBELOWDOMAIN = &H2

    ' Includes a status area in the dialog box. The callback function can set
    ' the status text by sending messages to the dialog box.
    %BIF_STATUSTEXT = &H4

    ' Only returns file system ancestors. If the user selects anything other
    ' than a file system ancestor, the OK button is grayed.
    %BIF_RETURNFSANCESTORS = &H8

    ' Only returns computers. If the user selects anything other
    ' than a computer, the OK button is grayed.
    %BIF_BROWSEFORCOMPUTER = &H1000

    ' Only returns (network) printers. If the user selects anything other
    ' than a printer, the OK button is grayed.
    %BIF_BROWSEFORPRINTER = &H2000

    but better to go directly to Brad Martinez' Web-page http://www.mvps.org/btmtz/

    Could be you will find additional interesting information and samples.

    [This message has been edited by Semen Matusovski (edited January 30, 2000).]

    Leave a comment:


  • Adrian C Aitken
    started a topic SHELL32.INC

    SHELL32.INC

    Does anyone have a SHELL32.INC type of file, I'm spefically looking for BIF_* constants. I have MSDN but it refers to them by name only, not the actual numbers which is annoying. Any help would be much appreciated.


    Regards

    Adrian Aitken
    [email protected]
Working...
X