Click here to Skip to main content
15,884,388 members
Home / Discussions / C#
   

C#

 
GeneralRe: ComboBox problem windows application Pin
microsoc2-May-06 22:11
microsoc2-May-06 22:11 
QuestionHow to call Url from c# code Pin
Yuwraj2-May-06 18:56
Yuwraj2-May-06 18:56 
AnswerRe: How to call Url from c# code Pin
DigitalKing2-May-06 19:05
DigitalKing2-May-06 19:05 
QuestionNAPQ :( .. Getting custom controls to be displayed in toolbar Pin
malharone2-May-06 17:33
malharone2-May-06 17:33 
Questiondelete temp files program Pin
hops33n2-May-06 17:24
hops33n2-May-06 17:24 
AnswerRe: delete temp files program Pin
Judah Gabriel Himango2-May-06 17:29
sponsorJudah Gabriel Himango2-May-06 17:29 
AnswerRe: delete temp files program Pin
DigitalKing2-May-06 19:16
DigitalKing2-May-06 19:16 
AnswerRe: delete temp files program Pin
DigitalKing2-May-06 19:21
DigitalKing2-May-06 19:21 
Also useful is clearing the RecentDocs list:

using System.Runtime.InteropServices;

...

[DllImport("shell32.dll")]
static extern void SHAddToRecentDocs(ShellAddToRecentDocsFlags flag, IntPtr pidl);

[Flags]
private enum ShellAddToRecentDocsFlags : uint
{
   Pidl = 0x001,
   Path = 0x002,
}

/// <summary>
/// Clears the recent documents list for the current user.
/// </summary>
public static void ClearRecentDocs()
{
   SHAddToRecentDocs(ShellAddToRecentDocsFlags.Pidl, IntPtr.Zero);
}

GeneralRe: delete temp files program Pin
hops33n3-May-06 16:38
hops33n3-May-06 16:38 
Questiontab order in .net cf Pin
yongwpi2-May-06 16:42
yongwpi2-May-06 16:42 
QuestionDetecting Current Control When Mouse Moves With Button Down Pin
redfish342-May-06 16:06
redfish342-May-06 16:06 
QuestionMulti Threading in WinForms Pin
Shawn_H2-May-06 16:01
Shawn_H2-May-06 16:01 
AnswerRe: Multi Threading in WinForms Pin
Judah Gabriel Himango2-May-06 17:39
sponsorJudah Gabriel Himango2-May-06 17:39 
GeneralRe: Multi Threading in WinForms Pin
Shawn_H3-May-06 3:03
Shawn_H3-May-06 3:03 
QuestionRecursive method to search a folder w/ special condition Pin
WCup2-May-06 15:58
WCup2-May-06 15:58 
Questionsocket and tcp Pin
tjvictor2-May-06 15:29
tjvictor2-May-06 15:29 
AnswerRe: socket and tcp Pin
Jakob Farian Krarup2-May-06 23:58
Jakob Farian Krarup2-May-06 23:58 
QuestionGood reference book Pin
TheJudeDude2-May-06 13:15
TheJudeDude2-May-06 13:15 
QuestionCOM Interface Woes Pin
Daaron2-May-06 12:43
Daaron2-May-06 12:43 
Questionhow I can add more image in pictureBox Pin
mm3102-May-06 11:59
mm3102-May-06 11:59 
AnswerRe: how I can add more image in pictureBox Pin
Judah Gabriel Himango2-May-06 17:38
sponsorJudah Gabriel Himango2-May-06 17:38 
Questionhow to embedd exe file in my app as resource Programmaticaly ? Pin
hdv2122-May-06 11:40
hdv2122-May-06 11:40 
AnswerRe: how to embedd exe file in my app as resource Programmaticaly ? Pin
Ravi Bhavnani2-May-06 12:35
professionalRavi Bhavnani2-May-06 12:35 
Question[Message Deleted] Pin
Dr.Sammer2-May-06 9:39
Dr.Sammer2-May-06 9:39 
AnswerRe: please help Pin
Josh Smith2-May-06 10:10
Josh Smith2-May-06 10:10 

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.