Click here to Skip to main content
16,004,782 members
Home / Discussions / C#
   

C#

 
AnswerRe: exception Pin
Not Active27-Sep-06 2:58
mentorNot Active27-Sep-06 2:58 
QuestionRe: exception Pin
Parshant Verma27-Sep-06 3:19
Parshant Verma27-Sep-06 3:19 
AnswerRe: exception Pin
Not Active27-Sep-06 3:28
mentorNot Active27-Sep-06 3:28 
QuestionRe: exception Pin
Parshant Verma27-Sep-06 3:30
Parshant Verma27-Sep-06 3:30 
GeneralRe: exception Pin
Guffa27-Sep-06 3:11
Guffa27-Sep-06 3:11 
GeneralRe: exception Pin
Parshant Verma27-Sep-06 3:22
Parshant Verma27-Sep-06 3:22 
AnswerRe: exception Pin
Guffa27-Sep-06 4:03
Guffa27-Sep-06 4:03 
QuestionRe: exception Pin
Parshant Verma27-Sep-06 4:12
Parshant Verma27-Sep-06 4:12 
exception i am getting file not found
but before click on the file button everything going perfect and the same evevt is fine working


private void btn_select_file_MouseEnter(object sender, System.EventArgs e)
{
try
{
file.Image=System.Drawing.Image.FromFile(@"png1\002.png");
}
catch (System.Exception e1)
{
MessageBox.Show(e1.Message.ToString());

}

}
private void btn_select_file_MouseLeave(object sender, System.EventArgs e)
{
try
{
btn_select_file.BackgroundImage=System.Drawing.Image.FromFile(@"png1\001.png");

}
catch (System.Exception e2)
{
MessageBox.Show(e2.Message.ToString());
}

}


private void btn_select_file_Click(object sender, System.EventArgs e)
{
if(openFileDialog.ShowDialog()==DialogResult.OK)
{

btn_select_file.DialogResult=DialogResult.OK;
btn_select_file.BackgroundImage=System.Drawing.Image.FromFile(@"png1\002.png");
txt_select_file.Text=openFileDialog.FileName.ToString();
SelectButton=1;
btn_select_folder.Enabled=false;
}

}


AnswerRe: exception Pin
Guffa27-Sep-06 21:35
Guffa27-Sep-06 21:35 
QuestionDropDown problem in combobox Pin
Tavbi27-Sep-06 2:18
Tavbi27-Sep-06 2:18 
QuestionInteraction with Php and MySQL db Pin
Kedar Vijay Kulkarni27-Sep-06 1:53
Kedar Vijay Kulkarni27-Sep-06 1:53 
AnswerRe: Interaction with Php and MySQL db Pin
Not Active27-Sep-06 2:19
mentorNot Active27-Sep-06 2:19 
QuestionRe: Interaction with Php and MySQL db Pin
Kedar Vijay Kulkarni27-Sep-06 2:35
Kedar Vijay Kulkarni27-Sep-06 2:35 
AnswerRe: Interaction with Php and MySQL db Pin
Not Active27-Sep-06 2:43
mentorNot Active27-Sep-06 2:43 
QuestionRe: Interaction with Php and MySQL db Pin
Kedar Vijay Kulkarni27-Sep-06 2:47
Kedar Vijay Kulkarni27-Sep-06 2:47 
AnswerRe: Interaction with Php and MySQL db Pin
Not Active27-Sep-06 2:53
mentorNot Active27-Sep-06 2:53 
QuestionAutoUpdate of application Pin
AB777127-Sep-06 1:46
AB777127-Sep-06 1:46 
AnswerRe: AutoUpdate of application Pin
Kedar Vijay Kulkarni27-Sep-06 2:06
Kedar Vijay Kulkarni27-Sep-06 2:06 
GeneralRe: AutoUpdate of application Pin
AB777127-Sep-06 2:15
AB777127-Sep-06 2:15 
AnswerRe: AutoUpdate of application Pin
Not Active27-Sep-06 2:25
mentorNot Active27-Sep-06 2:25 
QuestionSysTray Pin
CodeItWell27-Sep-06 1:32
CodeItWell27-Sep-06 1:32 
AnswerRe: SysTray Pin
Kedar Vijay Kulkarni27-Sep-06 2:01
Kedar Vijay Kulkarni27-Sep-06 2:01 
GeneralRe: SysTray Pin
CodeItWell27-Sep-06 2:42
CodeItWell27-Sep-06 2:42 
AnswerRe: SysTray Pin
Eric Dahlvang27-Sep-06 4:26
Eric Dahlvang27-Sep-06 4:26 
QuestionThread Issues c# 2.0 Pin
Trance Junkie27-Sep-06 0:41
Trance Junkie27-Sep-06 0:41 

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.