Click here to Skip to main content
15,902,836 members
Home / Discussions / C#
   

C#

 
GeneralRe: of Open File Pin
Daniel Monzert13-Jun-05 20:43
Daniel Monzert13-Jun-05 20:43 
Questionhow to compare the text of two html pages Pin
Mohsen Saad13-Jun-05 14:20
Mohsen Saad13-Jun-05 14:20 
Generalconverting byte[] to string Pin
scott987uk13-Jun-05 10:01
scott987uk13-Jun-05 10:01 
GeneralRe: converting byte[] to string Pin
Christian Graus13-Jun-05 14:47
protectorChristian Graus13-Jun-05 14:47 
GeneralC# Modal Dialog returns too quickly Pin
Glenn E. Lanier II13-Jun-05 11:37
Glenn E. Lanier II13-Jun-05 11:37 
GeneralRe: C# Modal Dialog returns too quickly Pin
Christian Graus13-Jun-05 12:33
protectorChristian Graus13-Jun-05 12:33 
GeneralRe: C# Modal Dialog returns too quickly Pin
Glenn E. Lanier II14-Jun-05 4:38
Glenn E. Lanier II14-Jun-05 4:38 
GeneralRe: C# Modal Dialog returns too quickly Pin
Robert Rohde13-Jun-05 19:39
Robert Rohde13-Jun-05 19:39 
It is like Christian said. But if I remember correctly you can also set the DialogResult in the BrowsClick event manually to override this nasty behaviour:
public void Browse_Click(object sender, EventArgs args) {
//Do your stuff
if (DialogResult.OK == openFileDialog.ShowDialog())
{
textBoxDestinationDB.Text = openFileDialog.FileName;
} 

//Now reset the wrong DialogResult of this modal form
base.DialogResult = DialogResult.None;
}

GeneralRe: C# Modal Dialog returns too quickly Pin
Glenn E. Lanier II14-Jun-05 4:40
Glenn E. Lanier II14-Jun-05 4:40 
QuestionCan someone point me to some nice clean search and replace code? Pin
ArchKaine13-Jun-05 11:24
ArchKaine13-Jun-05 11:24 
AnswerRe: Can someone point me to some nice clean search and replace code? Pin
Christian Graus13-Jun-05 12:36
protectorChristian Graus13-Jun-05 12:36 
GeneralRe: Can someone point me to some nice clean search and replace code? Pin
Luis Alonso Ramos13-Jun-05 14:16
Luis Alonso Ramos13-Jun-05 14:16 
GeneralRe: Can someone point me to some nice clean search and replace code? Pin
ArchKaine14-Jun-05 11:42
ArchKaine14-Jun-05 11:42 
GeneralRe: Can someone point me to some nice clean search and replace code? Pin
Luis Alonso Ramos14-Jun-05 12:38
Luis Alonso Ramos14-Jun-05 12:38 
GeneralRe: Can someone point me to some nice clean search and replace code? Pin
ArchKaine14-Jun-05 11:45
ArchKaine14-Jun-05 11:45 
GeneralRe: Can someone point me to some nice clean search and replace code? Pin
Christian Graus14-Jun-05 13:52
protectorChristian Graus14-Jun-05 13:52 
Generalfonts Pin
dizzybinty13-Jun-05 11:17
dizzybinty13-Jun-05 11:17 
GeneralRe: fonts Pin
Werdna13-Jun-05 19:26
Werdna13-Jun-05 19:26 
Questiongetting table schema info in ADO .NET? Pin
Jason Manfield13-Jun-05 11:16
Jason Manfield13-Jun-05 11:16 
AnswerRe: getting table schema info in ADO .NET? Pin
Luis Alonso Ramos13-Jun-05 14:20
Luis Alonso Ramos13-Jun-05 14:20 
QuestionIs there a spawnlp function in c#? Pin
adonisv13-Jun-05 10:26
adonisv13-Jun-05 10:26 
AnswerRe: Is there a spawnlp function in c#? Pin
DavidNohejl13-Jun-05 10:59
DavidNohejl13-Jun-05 10:59 
GeneralRe: Is there a spawnlp function in c#? Pin
adonisv13-Jun-05 11:16
adonisv13-Jun-05 11:16 
GeneralRe: Is there a spawnlp function in c#? Pin
havyck14-Jun-05 9:00
havyck14-Jun-05 9:00 
GeneralOverride Items property in a list view Pin
Bikuni13-Jun-05 10:12
Bikuni13-Jun-05 10:12 

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.