Click here to Skip to main content
15,906,455 members
Home / Discussions / C#
   

C#

 
QuestionUnable to load DLL - Why ?? Pin
matty2desmara28-Apr-09 15:53
matty2desmara28-Apr-09 15:53 
AnswerRe: Unable to load DLL - Why ?? Pin
Luc Pattyn28-Apr-09 16:31
sitebuilderLuc Pattyn28-Apr-09 16:31 
GeneralRe: Unable to load DLL - Why ?? Pin
matty2desmara29-Apr-09 4:08
matty2desmara29-Apr-09 4:08 
AnswerRe: Unable to load DLL - Why ?? Pin
jas0n2328-Apr-09 23:27
jas0n2328-Apr-09 23:27 
GeneralRe: Unable to load DLL - Why ?? Pin
matty2desmara29-Apr-09 4:20
matty2desmara29-Apr-09 4:20 
AnswerRe: Unable to load DLL - Why ?? Pin
matty2desmara29-Apr-09 4:54
matty2desmara29-Apr-09 4:54 
AnswerRe: Unable to load DLL - Why ?? Pin
S. Senthil Kumar30-Apr-09 9:53
S. Senthil Kumar30-Apr-09 9:53 
QuestionDrag drop from picturebox to desktop? Pin
Jacob Dixon28-Apr-09 13:32
Jacob Dixon28-Apr-09 13:32 
I am trying to drag and drop from a picturebox to a desktop.. I am able to drag files from the desktop or folders to the picturebox but not the other way around.

this is what I have:
private void pictureBoxPicture_MouseDown(object sender, MouseEventArgs e)
{
    if (e.Button == MouseButtons.Left)
    {
        DataObject fileDragData = new DataObject();
        fileDragData.SetData(DataFormats.FileDrop, pictureBoxPicture.Image);
        DoDragDrop(fileDragData, DragDropEffects.All);
    }
}


I can't seem to find much on google that I either understand or it works..
GeneralRate this tricky code : Use multiple TableAdapters within a single transaction! Pin
hdv21228-Apr-09 9:29
hdv21228-Apr-09 9:29 
GeneralRe: Rate this tricky code : Use multiple TableAdapters within a single transaction! Pin
Henry Minute28-Apr-09 10:49
Henry Minute28-Apr-09 10:49 
GeneralRe: Rate this tricky code : Use multiple TableAdapters within a single transaction! Pin
hdv21228-Apr-09 11:51
hdv21228-Apr-09 11:51 
QuestionReading a Konica Minolta printer to get print & copy counts Pin
crazylad28-Apr-09 9:19
crazylad28-Apr-09 9:19 
AnswerRe: Reading a Konica Minolta printer to get print & copy counts Pin
Henry Minute28-Apr-09 10:51
Henry Minute28-Apr-09 10:51 
GeneralRe: Reading a Konica Minolta printer to get print & copy counts Pin
crazylad6-May-09 5:08
crazylad6-May-09 5:08 
NewsGetting the server name and SQL instance name [modified] Pin
swetha sankaran28-Apr-09 9:10
swetha sankaran28-Apr-09 9:10 
QuestionRe: Getting the server name and SQL instance name Pin
Jimmanuel28-Apr-09 10:37
Jimmanuel28-Apr-09 10:37 
GeneralRe: Getting the server name and SQL instance name Pin
Rolando CC28-Apr-09 11:00
professionalRolando CC28-Apr-09 11:00 
QuestionFormatting Pin
bwood202028-Apr-09 8:54
bwood202028-Apr-09 8:54 
AnswerRe: Formatting Pin
snorkie28-Apr-09 9:28
professionalsnorkie28-Apr-09 9:28 
GeneralRe: Formatting Pin
bwood202028-Apr-09 10:35
bwood202028-Apr-09 10:35 
GeneralRe: Formatting Pin
snorkie30-Apr-09 9:47
professionalsnorkie30-Apr-09 9:47 
GeneralRe: Formatting Pin
bwood202030-Apr-09 10:30
bwood202030-Apr-09 10:30 
QuestionSecure File Transfer with C# Pin
SimpleData28-Apr-09 8:12
SimpleData28-Apr-09 8:12 
QuestionBuild a text control Pin
Alquerque28-Apr-09 6:54
Alquerque28-Apr-09 6:54 
AnswerRe: Build a text control Pin
Giorgi Dalakishvili28-Apr-09 7:00
mentorGiorgi Dalakishvili28-Apr-09 7:00 

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.