Click here to Skip to main content
15,921,276 members
Home / Discussions / C#
   

C#

 
AnswerRe: Text Won't Show in MessageBox Pin
Jun Du7-Jul-06 6:17
Jun Du7-Jul-06 6:17 
GeneralRe: Text Won't Show in MessageBox Pin
MartyExodus7-Jul-06 6:30
MartyExodus7-Jul-06 6:30 
JokeRe: Text Won't Show in MessageBox Pin
BoneSoft7-Jul-06 7:27
BoneSoft7-Jul-06 7:27 
AnswerRe: Text Won't Show in MessageBox Pin
Josh Smith7-Jul-06 8:29
Josh Smith7-Jul-06 8:29 
GeneralRe: Text Won't Show in MessageBox [modified] Pin
MartyExodus7-Jul-06 9:14
MartyExodus7-Jul-06 9:14 
GeneralRe: Text Won't Show in MessageBox Pin
Rogenator7-Jul-06 9:25
Rogenator7-Jul-06 9:25 
GeneralRe: Text Won't Show in MessageBox Pin
MartyExodus7-Jul-06 10:05
MartyExodus7-Jul-06 10:05 
GeneralRe: Text Won't Show in MessageBox [modified] Pin
Rogenator7-Jul-06 11:15
Rogenator7-Jul-06 11:15 
Greetings:
That`s really strange, i have all of the windows updates, and never had this problem, i really dont know what could be the problem, one workaround could be to create another form in the application that serves as the message box, then you could just pass the text to display to it and show it, something like this:
//Assuming youre MessageBox form is called FormM
FormM temp=new FormM();
temp.setText("blabla","blabla");//A method you define for setting the text
temp.ShowDialog();

//The method for defining the text. This method is inside FormM
public void setText(string x1,string x2)
{
this.Text=x2;
label1.Text=x1;//Assuming you´re using a label for the text
}

hope that helps until you fix the problemSmile | :)

"Failure is the best reason to start all over agin with more knowledge"
-Henry Ford.

-- modified at 17:16 Friday 7th July, 2006
AnswerRe: Text Won't Show in MessageBox Pin
cje7-Jul-06 11:51
cje7-Jul-06 11:51 
GeneralRe: Text Won't Show in MessageBox Pin
MartyExodus11-Jul-06 9:24
MartyExodus11-Jul-06 9:24 
GeneralRe: Text Won't Show in MessageBox Pin
Dustin Metzgar11-Jul-06 9:50
Dustin Metzgar11-Jul-06 9:50 
QuestionDrawing on Map Pin
Sandy Saroha7-Jul-06 4:51
Sandy Saroha7-Jul-06 4:51 
AnswerRe: Drawing on Map Pin
Jun Du7-Jul-06 5:17
Jun Du7-Jul-06 5:17 
AnswerRe: Drawing on Map [modified] Pin
Shaun Wilde7-Jul-06 5:19
Shaun Wilde7-Jul-06 5:19 
QuestionUsing C# .NET 2 and Generic ReadOnly Collections Pin
satvinder12345677-Jul-06 4:30
satvinder12345677-Jul-06 4:30 
AnswerRe: Using C# .NET 2 and Generic ReadOnly Collections Pin
Not Active7-Jul-06 4:51
mentorNot Active7-Jul-06 4:51 
AnswerRe: Using C# .NET 2 and Generic ReadOnly Collections Pin
Josh Smith7-Jul-06 4:52
Josh Smith7-Jul-06 4:52 
AnswerRe: Using C# .NET 2 and Generic ReadOnly Collections Pin
Ennis Ray Lynch, Jr.7-Jul-06 8:19
Ennis Ray Lynch, Jr.7-Jul-06 8:19 
GeneralRe: Using C# .NET 2 and Generic ReadOnly Collections Pin
satvinder12345679-Jul-06 12:07
satvinder12345679-Jul-06 12:07 
QuestionSendKeys problem Pin
psyonara7-Jul-06 4:12
psyonara7-Jul-06 4:12 
AnswerRe: SendKeys problem Pin
Judah Gabriel Himango7-Jul-06 4:42
sponsorJudah Gabriel Himango7-Jul-06 4:42 
Questiondate format in different countries ? help pls... Pin
cmpeng347-Jul-06 4:07
cmpeng347-Jul-06 4:07 
AnswerRe: date format in different countries ? help pls... Pin
Not Active7-Jul-06 4:15
mentorNot Active7-Jul-06 4:15 
AnswerRe: date format in different countries ? help pls... Pin
Dustin Metzgar7-Jul-06 4:17
Dustin Metzgar7-Jul-06 4:17 
Question@ Pin
fmardani7-Jul-06 3:46
fmardani7-Jul-06 3:46 

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.