Click here to Skip to main content
15,887,083 members
Home / Discussions / C#
   

C#

 
Questionchange button shape Pin
ABBASI_RA4-Jun-07 9:03
ABBASI_RA4-Jun-07 9:03 
AnswerRe: change button shape Pin
Tarakeshwar Reddy4-Jun-07 9:07
professionalTarakeshwar Reddy4-Jun-07 9:07 
GeneralRe: change button shape Pin
ABBASI_RA4-Jun-07 9:20
ABBASI_RA4-Jun-07 9:20 
QuestionHow to find name of a library? (beginner) Pin
Christian Bailey4-Jun-07 9:03
Christian Bailey4-Jun-07 9:03 
AnswerRe: How to find name of a library? (beginner) Pin
SimulationofSai4-Jun-07 22:31
SimulationofSai4-Jun-07 22:31 
Questionselected column header datagridview Pin
FernandoMartin4-Jun-07 9:02
FernandoMartin4-Jun-07 9:02 
QuestionEmail merg Pin
merwa4-Jun-07 8:49
merwa4-Jun-07 8:49 
AnswerRe: Email merg Pin
Muammar©4-Jun-07 11:05
Muammar©4-Jun-07 11:05 
merwa wrote:
Can eny one help me to make an Email Merg like that in the word using visualstodio.net

Sounds pretty Egyptian;P
Unfortunatly, this's C#, not MS Word..
merwa wrote:
I want to drag a control
or text in atext box.

listBox1.AllowDrop = true;

private void listBox1_DragOver(object sender, DragEventArgs e)
{
    e.Effect = DragDropEffects.Move;
}

private void listBox1_DragDrop(object sender, DragEventArgs e)
{
    string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
    foreach (string file in files)
    {
        if (!listBox1.Items.Contains(file))
        listBox1.Items.Add(file);
        listBox1.SelectedIndex = listBox1.Items.Count - 1;
    }
}



Smile: A curve that can set a lot of things straight!
(\ /)
(O.o)
(><)

Questionget current session ID Pin
crash8934-Jun-07 8:00
crash8934-Jun-07 8:00 
AnswerRe: get current session ID Pin
Tarakeshwar Reddy4-Jun-07 8:51
professionalTarakeshwar Reddy4-Jun-07 8:51 
GeneralRe: get current session ID Pin
crash8934-Jun-07 9:06
crash8934-Jun-07 9:06 
GeneralRe: get current session ID Pin
Giorgi Dalakishvili4-Jun-07 9:20
mentorGiorgi Dalakishvili4-Jun-07 9:20 
GeneralRe: get current session ID Pin
crash8934-Jun-07 9:22
crash8934-Jun-07 9:22 
GeneralRe: get current session ID Pin
crash8934-Jun-07 9:22
crash8934-Jun-07 9:22 
GeneralRe: get current session ID Pin
Tarakeshwar Reddy4-Jun-07 9:47
professionalTarakeshwar Reddy4-Jun-07 9:47 
GeneralRe: get current session ID Pin
crash8934-Jun-07 10:11
crash8934-Jun-07 10:11 
QuestionError 404 Pin
vunhat4-Jun-07 7:31
vunhat4-Jun-07 7:31 
AnswerRe: Error 404 Pin
Jasmine25014-Jun-07 7:49
Jasmine25014-Jun-07 7:49 
QuestionRe: Error 404 Pin
vunhat4-Jun-07 8:33
vunhat4-Jun-07 8:33 
AnswerRe: Error 404 Pin
leckey4-Jun-07 8:57
leckey4-Jun-07 8:57 
GeneralRe: Error 404 Pin
vunhat4-Jun-07 10:19
vunhat4-Jun-07 10:19 
GeneralRe: Error 404 Pin
Dan Neely4-Jun-07 11:25
Dan Neely4-Jun-07 11:25 
GeneralRe: Error 404 Pin
vunhat4-Jun-07 11:29
vunhat4-Jun-07 11:29 
GeneralRe: Error 404 Pin
Jasmine25014-Jun-07 11:35
Jasmine25014-Jun-07 11:35 
QuestionHTML Parsing question Pin
bs99994-Jun-07 7:02
bs99994-Jun-07 7:02 

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.