Click here to Skip to main content
15,887,821 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Bind ComboBox1 with DataSet1 ? Pin
Susan Hernandez9-Nov-05 14:42
Susan Hernandez9-Nov-05 14:42 
AnswerRe: How to Bind ComboBox1 with DataSet1 ? Pin
n10sive10-Nov-05 12:04
n10sive10-Nov-05 12:04 
QuestionParent Form Child Form Problem Pin
ekynox8-Nov-05 20:37
ekynox8-Nov-05 20:37 
AnswerRe: Parent Form Child Form Problem Pin
hga_gi8-Nov-05 23:05
hga_gi8-Nov-05 23:05 
GeneralRe: Parent Form Child Form Problem Pin
ekynox8-Nov-05 23:36
ekynox8-Nov-05 23:36 
Questionhow to add module in c#.net? Pin
sarayumadhavan8-Nov-05 20:00
sarayumadhavan8-Nov-05 20:00 
AnswerRe: how to add module in c#.net? Pin
FriendlyFiend8-Nov-05 22:50
FriendlyFiend8-Nov-05 22:50 
QuestionRemoving Cookies and Temp Internet Files Pin
sonicsqwirl8-Nov-05 19:43
sonicsqwirl8-Nov-05 19:43 
I am trying to programatically remove cookies and temp internet files. I have found examples of how to change the Expire of cookies via Web Dev. But the Request.Cookies() doesn't work in Windows Dev.

My program is simple,
<br />
static void Main(string[] args)<br />
		{<br />
			LaunchWindows();<br />
			//ClearCache();<br />
		}<br />
private static void LaunchWindows()<br />
		{<br />
System.Diagnostics.Process.Start("IExplore.exe","http://lbprdapps:88/autosys/login"); <br />
}<br />
private static void ClearCache()<br />
{<br />
// Clear the cookies and temp internet files here<br />
}<br />


Here is the VB equivalency in Web Dev. that I want to accomplish.
<br />
Dim i As Integer<br />
Dim cookieName As String<br />
Dim limit As Integer = Request.Cookies.Count - 1<br />
For i = 0 To limit<br />
   aCookie = Request.Cookies(i)<br />
   aCookie.Expires = DateTime.Now.AddDays(-1)<br />
   Response.Cookies.Add(aCookie)<br />
Next<br />


Any help would be appreciated.

TIA,
Scott
QuestionError.....Net Remoting Pin
deep78-Nov-05 19:02
deep78-Nov-05 19:02 
QuestionCalling a C# COM Object from VC++ 6.0 Pin
E6AD8-Nov-05 17:16
E6AD8-Nov-05 17:16 
AnswerRe: Calling a C# COM Object from VC++ 6.0 Pin
Christian Graus8-Nov-05 17:36
protectorChristian Graus8-Nov-05 17:36 
GeneralRe: Calling a C# COM Object from VC++ 6.0 Pin
E6AD8-Nov-05 17:50
E6AD8-Nov-05 17:50 
QuestionShort Cuts Pin
picasso28-Nov-05 17:08
picasso28-Nov-05 17:08 
AnswerRe: Short Cuts Pin
Christian Graus8-Nov-05 17:15
protectorChristian Graus8-Nov-05 17:15 
QuestionHow to build a DLL in C#? Pin
E6AD8-Nov-05 16:31
E6AD8-Nov-05 16:31 
AnswerRe: How to build a DLL in C#? Pin
Allah On Acid8-Nov-05 16:39
Allah On Acid8-Nov-05 16:39 
AnswerRe: How to build a DLL in C#? Pin
Jon Rista9-Nov-05 10:57
Jon Rista9-Nov-05 10:57 
GeneralRe: How to build a DLL in C#? Pin
E6AD9-Nov-05 21:27
E6AD9-Nov-05 21:27 
QuestionDetect if control is being rendered in the forms designer ? Pin
Christian Graus8-Nov-05 14:38
protectorChristian Graus8-Nov-05 14:38 
AnswerRe: Detect if control is being rendered in the forms designer ? Pin
Christian Graus8-Nov-05 14:54
protectorChristian Graus8-Nov-05 14:54 
GeneralRe: Detect if control is being rendered in the forms designer ? Pin
Jon Rista9-Nov-05 10:58
Jon Rista9-Nov-05 10:58 
GeneralRe: Detect if control is being rendered in the forms designer ? Pin
Christian Graus9-Nov-05 11:13
protectorChristian Graus9-Nov-05 11:13 
Questionhelp help help Pin
engriri20068-Nov-05 14:18
engriri20068-Nov-05 14:18 
AnswerRe: help help help Pin
Christian Graus8-Nov-05 14:23
protectorChristian Graus8-Nov-05 14:23 
GeneralRe: help help help Pin
Allah On Acid8-Nov-05 16:18
Allah On Acid8-Nov-05 16:18 

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.