Click here to Skip to main content
15,884,099 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Set the angle of italic font Pin
James Gupta1-Mar-06 12:02
professionalJames Gupta1-Mar-06 12:02 
AnswerRe: Set the angle of italic font Pin
Guffa1-Mar-06 13:28
Guffa1-Mar-06 13:28 
GeneralRe: Set the angle of italic font Pin
karbon33911-Mar-06 20:16
karbon33911-Mar-06 20:16 
QuestionEnumerating satellite resource assemblies in .net 2 Pin
BiasoSoft28-Feb-06 18:04
BiasoSoft28-Feb-06 18:04 
QuestionSuggestions for searching for information specificaly regarding .net 2.0 Pin
Rabb Moshe Plotkin28-Feb-06 5:25
Rabb Moshe Plotkin28-Feb-06 5:25 
AnswerRe: Suggestions for searching for information specificaly regarding .net 2.0 Pin
HimaBindu Vejella28-Feb-06 18:55
HimaBindu Vejella28-Feb-06 18:55 
GeneralRe: Suggestions for searching for information specificaly regarding .net 2.0 Pin
Rabb Moshe Plotkin1-Mar-06 1:39
Rabb Moshe Plotkin1-Mar-06 1:39 
QuestionFilter not working correctly in OpenFileDialog Pin
ricecake28-Feb-06 5:09
ricecake28-Feb-06 5:09 
Hello, I am experiencing some weirdness with my OpenFileDialog filter. When I first open the dialog, the filter works and shows me the files with the filename scheme that I specify. However, if I select a different filter, then all the files disappear from the list. In addition, if I manually type the filter into the filename field and press Enter, then the files show up again. Here is a snippet where I create the dialog:

System::Void button_xmtr_Click(System::Object *  sender, System::EventArgs *  e)
{
	OpenFileDialog* dlg = new OpenFileDialog();
	dlg->Title = S"Choose Transmitter file";
	dlg->InitialDirectory = S"input";
	dlg->Filter = S"Transmitter files (xmtr*.dat)|xmtr*.dat|DAT files (*.dat)|*.dat|All files (*.*)|*.*";
	if (dlg->ShowDialog() == DialogResult::OK) {
		textbox_xmtr->Text = dlg->FileName;
	}
}


Has anybody else run into this problem? Does anybody know of a workaround? Thanks.

--
Marcus Kwok
QuestionRe: Filter not working correctly in OpenFileDialog Pin
ricecake28-Feb-06 7:48
ricecake28-Feb-06 7:48 
AnswerRe: Filter not working correctly in OpenFileDialog Pin
ricecake4-Aug-06 10:35
ricecake4-Aug-06 10:35 
QuestionUsing Native C++ DLL in .Net Pin
a_kiani28-Feb-06 3:56
a_kiani28-Feb-06 3:56 
QuestionAssembly Security Pin
sachinthamke27-Feb-06 23:35
sachinthamke27-Feb-06 23:35 
QuestionSave private Key securely Pin
Junior000727-Feb-06 22:40
Junior000727-Feb-06 22:40 
QuestionDatabase transactions and webservices Pin
JorisFromHolland27-Feb-06 22:33
JorisFromHolland27-Feb-06 22:33 
QuestionUsing .NET 2.0 with .NET 1.1 Pin
Mohammed Derbashi27-Feb-06 22:01
professionalMohammed Derbashi27-Feb-06 22:01 
AnswerRe: Using .NET 2.0 with .NET 1.1 Pin
Sebastian Schneider1-Mar-06 1:12
Sebastian Schneider1-Mar-06 1:12 
QuestionMS .Net 2003 doubt Pin
invinJerry27-Feb-06 18:28
invinJerry27-Feb-06 18:28 
Questionxml in vb.net Pin
bhavz6927-Feb-06 0:32
bhavz6927-Feb-06 0:32 
AnswerRe: xml in vb.net Pin
sathish s27-Feb-06 22:20
sathish s27-Feb-06 22:20 
Questionpaint an icon Pin
taucher_7227-Feb-06 0:17
taucher_7227-Feb-06 0:17 
QuestionMigrating from Java JNI to .NET P/Invoke Pin
Judah Gabriel Himango26-Feb-06 11:59
sponsorJudah Gabriel Himango26-Feb-06 11:59 
AnswerRe: Migrating from Java JNI to .NET P/Invoke Pin
Judah Gabriel Himango27-Feb-06 5:34
sponsorJudah Gabriel Himango27-Feb-06 5:34 
QuestionHow to create a windows based router from scratch using the latest windows technology (.Net 2.0/WinFX). Pin
w00tmeh25-Feb-06 23:54
w00tmeh25-Feb-06 23:54 
AnswerRe: How to create a windows based router from scratch using the latest windows technology (.Net 2.0/WinFX). Pin
JerryMcguire1-Mar-06 7:01
JerryMcguire1-Mar-06 7:01 
GeneralRe: How to create a windows based router from scratch using the latest windows technology (.Net 2.0/WinFX). Pin
w00tmeh1-Mar-06 9:03
w00tmeh1-Mar-06 9:03 

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.