Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
GeneralRe: MSI Setup - custom action rollback Pin
Mogyi16-Oct-08 4:10
Mogyi16-Oct-08 4:10 
QuestionWhat is best way? Pin
Majid_grok16-Oct-08 2:45
Majid_grok16-Oct-08 2:45 
RantRe: What is best way? Pin
Nagy Vilmos16-Oct-08 3:06
professionalNagy Vilmos16-Oct-08 3:06 
Questiongot problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 2:37
Krazy Programmer16-Oct-08 2:37 
AnswerRe: got problem with sequence of event execution Pin
Guffa16-Oct-08 3:17
Guffa16-Oct-08 3:17 
GeneralRe: got problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 19:44
Krazy Programmer16-Oct-08 19:44 
GeneralRe: got problem with sequence of event execution Pin
Guffa17-Oct-08 13:38
Guffa17-Oct-08 13:38 
GeneralRe: got problem with sequence of event execution Pin
nelsonpaixao16-Oct-08 12:36
nelsonpaixao16-Oct-08 12:36 
why drag?
why dont you browse a picture and load it in a picturebox?

OpenFileDialog open_file_dialog = new OpenFileDialog();
DialogResult dialog_result = open_file_dialog.ShowDialog();
if (dialog_result == DialogResult.OK)
{
mypicturebox.ImageLocation = open_file_dialog.FileName;

// something more would be ...
//string Image_Path = open_file_dialog.FileName;
//Image img = Image.FromFile(open_file_dialog.FileName);
//...
}


After that, dont know if you want a path to the picture or load/save them from/to a database. D'Oh! | :doh:

nelsonpaixao@yahoo.com.br

trying to help & get help

GeneralRe: got problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 19:44
Krazy Programmer16-Oct-08 19:44 
QuestionThreads and WinForms Pin
Programm3r16-Oct-08 1:45
Programm3r16-Oct-08 1:45 
AnswerRe: Threads and WinForms Pin
Alan N16-Oct-08 1:59
Alan N16-Oct-08 1:59 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:03
Programm3r16-Oct-08 2:03 
QuestionRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:13
Programm3r16-Oct-08 2:13 
AnswerRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 2:30
mentorGiorgi Dalakishvili16-Oct-08 2:30 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:49
Programm3r16-Oct-08 2:49 
QuestionRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:05
Programm3r16-Oct-08 3:05 
AnswerRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 3:19
mentorGiorgi Dalakishvili16-Oct-08 3:19 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:25
Programm3r16-Oct-08 3:25 
GeneralRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 3:31
mentorGiorgi Dalakishvili16-Oct-08 3:31 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:39
Programm3r16-Oct-08 3:39 
GeneralRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 5:44
mentorGiorgi Dalakishvili16-Oct-08 5:44 
QuestionHow to change the height property of panel dynamically Pin
mharoonkhan16-Oct-08 1:04
mharoonkhan16-Oct-08 1:04 
AnswerRe: How to change the height property of panel dynamically Pin
EliottA16-Oct-08 2:08
EliottA16-Oct-08 2:08 
QuestionC# Print DataGridView Pin
Socheat.Net15-Oct-08 23:42
Socheat.Net15-Oct-08 23:42 
AnswerRe: C# Print DataGridView Pin
Giorgi Dalakishvili15-Oct-08 23:53
mentorGiorgi Dalakishvili15-Oct-08 23:53 

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.