Re: Select & Create folders dialog
- Posted by don cole <doncole at pacbell.net> Jul 05, 2006
- 590 views
Sergio Gelli wrote: > > Antonio Alessi wrote: > > > > Sergio Gelli wrote: > > > Exist a DIALOG FLAGS to use with the selectDirectory() to > > > create a new folder too ? > > > Sérgio Gelli. > > > > Yes Sérgio, > > > > there is BIF_USENEWUI: > > > > TargetDir = ( selectDirectory( "Select a local Folder\n", > > {BIF_BROWSEINCLUDEURLS, > > BIF_USENEWUI, BIF_VALIDATE}, routine_id( "callback"), 0)) > > > > antonio > > Thanks Antonio, your instruction works fine, I am grateful. > > I try find this FLAGS in WIN32LIB.EW docs and anothers like this > but I failed, don't found nothing. > > Where I can find intructions about that and others? > > Sérgio Gelli - Brasil Hello Sergio, Why can't you use selectDirecrt() to select a directory and createDirectry() to create a diectory. You can call one right after the other. There is no need to mix them together. As far as the flag I really don't know them all. I believed anything in all capital letter like BIF_VALIDATE is an attribute and must be looked up for each control you are using them in. Don Cole