Click here to Skip to main content
16,005,141 members
Home / Discussions / C#
   

C#

 
GeneralPrivileges [again] Pin
Nnamdi Onyeyiri16-Sep-02 10:24
Nnamdi Onyeyiri16-Sep-02 10:24 
GeneralRe: Privileges [again] Pin
leppie16-Sep-02 10:51
leppie16-Sep-02 10:51 
GeneralRe: Privileges [again] Pin
Nnamdi Onyeyiri16-Sep-02 11:32
Nnamdi Onyeyiri16-Sep-02 11:32 
GeneralRe: Privileges [again] Pin
leppie16-Sep-02 11:54
leppie16-Sep-02 11:54 
GeneralRe: Privileges [again] Pin
leppie16-Sep-02 12:12
leppie16-Sep-02 12:12 
Questionhow to implement SHFileOperation api call in c# Pin
waleed riaz16-Sep-02 1:34
waleed riaz16-Sep-02 1:34 
AnswerRe: how to implement SHFileOperation api call in c# Pin
James T. Johnson16-Sep-02 2:37
James T. Johnson16-Sep-02 2:37 
AnswerRe: how to implement SHFileOperation api call in c# Pin
Richard Deeming16-Sep-02 7:50
mveRichard Deeming16-Sep-02 7:50 
/// <summary>Operation for SHFileOperation</summary>
public enum SHFOOperation : int 
{
    /// <summary>Move the file(s)</summary>
    Move = 0x1,
    /// <summary>Copy the file(s)</summary>
    Copy = 0x2,
    /// <summary>Delete the file(s)</summary>
    Delete = 0x3,
    /// <summary>Rename the file(s)</summary>
    Rename = 0x4,
}

/// <summary>Flags for SHFileOperation</summary>
[Flags]
public enum SHFOFlags : int 
{
    /// <summary></summary>
    None = 0x000,

    /// <summary>Multiple destination files</summary>
    MultiDestFiles = 0x001,
    /// <summary>Confirm mouse actions</summary>
    ConfirmMouse = 0x002,
    /// <summary>Silent</summary>
    Silent = 0x004,
    /// <summary>Rename files on collision</summary>
    RenameOnCollision = 0x008,
    /// <summary>No confirmation</summary>
    NoConfirmation = 0x010,
    /// <summary>Return a mapping handle for renamed files</summary>
    WantMappingHandle = 0x020,
    /// <summary>Allow undo</summary>
    AllowUndo = 0x040,
    /// <summary>Files only (no folders)</summary>
    FilesOnly = 0x080,
    /// <summary>Simple progress bar</summary>
    SimpleProgress = 0x100,
    /// <summary>Don't confirm directory creation</summary>
    NoConfirmMkDir = 0x200,
    /// <summary>Don't display errors</summary>
    NoErrorUi = 0x400,
    /// <summary>Don't copy NTFS security attributes</summary>
    NoCopySecurity = 0x800,
}

Questionunable to upload file,WebClient.UploadFile() doesn't work??? Pin
fftongzhi15-Sep-02 22:37
fftongzhi15-Sep-02 22:37 
GeneralIdentifying DesignTime Mode for Forms Pin
Firoz15-Sep-02 19:54
Firoz15-Sep-02 19:54 
GeneralRe: Identifying DesignTime Mode for Forms Pin
leppie15-Sep-02 21:49
leppie15-Sep-02 21:49 
GeneralRe: Identifying DesignTime Mode for Forms Pin
Firoz16-Sep-02 0:03
Firoz16-Sep-02 0:03 
GeneralRe: Identifying DesignTime Mode for Forms Pin
leppie16-Sep-02 5:44
leppie16-Sep-02 5:44 
GeneralRe: Identifying DesignTime Mode for Forms Pin
James T. Johnson16-Sep-02 9:30
James T. Johnson16-Sep-02 9:30 
GeneralRe: Identifying DesignTime Mode for Forms Pin
leppie16-Sep-02 9:46
leppie16-Sep-02 9:46 
GeneralRe: Identifying DesignTime Mode for Forms Pin
James T. Johnson16-Sep-02 15:23
James T. Johnson16-Sep-02 15:23 
GeneralRe: Identifying DesignTime Mode for Forms Pin
Paul Riley16-Sep-02 23:01
Paul Riley16-Sep-02 23:01 
GeneralRe: Identifying DesignTime Mode for Forms Pin
leppie16-Sep-02 23:07
leppie16-Sep-02 23:07 
GeneralRe: Identifying DesignTime Mode for Forms Pin
Paul Riley16-Sep-02 23:28
Paul Riley16-Sep-02 23:28 
GeneralRe: Identifying DesignTime Mode for Forms Pin
leppie17-Sep-02 0:32
leppie17-Sep-02 0:32 
Question.NET on other platforms? Pin
Zinj15-Sep-02 19:32
sussZinj15-Sep-02 19:32 
AnswerRe: .NET on other platforms? Pin
James T. Johnson15-Sep-02 21:24
James T. Johnson15-Sep-02 21:24 
GeneralRe: .NET on other platforms? Pin
Elf16-Sep-02 16:26
Elf16-Sep-02 16:26 
GeneralRe: .NET on other platforms? Pin
James T. Johnson17-Sep-02 0:52
James T. Johnson17-Sep-02 0:52 
GeneralRe: .NET on other platforms? Pin
David Stone17-Sep-02 4:22
sitebuilderDavid Stone17-Sep-02 4:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.