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

C#

 
Questionsaving and retrieving images from sql server 2005 Pin
NewToAspDotNet10-Oct-07 4:42
NewToAspDotNet10-Oct-07 4:42 
AnswerRe: saving and retrieving images from sql server 2005 Pin
led mike10-Oct-07 5:31
led mike10-Oct-07 5:31 
GeneralRe: saving and retrieving images from sql server 2005 Pin
NewToAspDotNet10-Oct-07 5:54
NewToAspDotNet10-Oct-07 5:54 
GeneralRe: saving and retrieving images from sql server 2005 Pin
led mike10-Oct-07 6:05
led mike10-Oct-07 6:05 
GeneralRe: saving and retrieving images from sql server 2005 Pin
NewToAspDotNet10-Oct-07 6:18
NewToAspDotNet10-Oct-07 6:18 
GeneralRe: saving and retrieving images from sql server 2005 Pin
led mike10-Oct-07 6:56
led mike10-Oct-07 6:56 
AnswerRe: saving and retrieving images from sql server 2005 Pin
Giorgi Dalakishvili10-Oct-07 6:49
mentorGiorgi Dalakishvili10-Oct-07 6:49 
QuestionHow come none of the TabControl Articles show events for simple commands for controls in those tabs? [modified] Pin
Ajm11310-Oct-07 4:34
Ajm11310-Oct-07 4:34 
Hi, sorry if I have missed or not read all of your Tab Articles, but I never see a example of maybe doing the paste/copy command when a user is allowed to create their own tabs with text boxes in them. Since they are in a array under the name of newRtb it gets confusing how to allow the user to lets say paste information on a selected tab with a Rich Text Box in it.

Any suggestions on what to do? I do have code, but it does not work... Cry | :((

private void Cut(object sender, System.EventArgs e)
{
    int index = this.Controls.IndexOfKey("newRtb");

    if (index != -1)
    {
        Control control = this.Controls[index];

        RichTextBox richTextBox = control as RichTextBox;

        if (richTextBox != null)
        {

            richTextBox.Cut();

        }
    }
}


I am completely lost on how to do this and this is the only thing stopping me from finishing my program I made.

Thanks, Ajm113


-- modified at 12:04 Wednesday 10th October, 2007
QuestionSerializing a class that contains a TimeSpan memeber Pin
Lucian.Palcu10-Oct-07 4:26
Lucian.Palcu10-Oct-07 4:26 
AnswerRe: Serializing a class that contains a TimeSpan memeber Pin
TJoe10-Oct-07 4:30
TJoe10-Oct-07 4:30 
GeneralRe: Serializing a class that contains a TimeSpan memeber Pin
Lucian.Palcu10-Oct-07 4:49
Lucian.Palcu10-Oct-07 4:49 
GeneralRe: Serializing a class that contains a TimeSpan memeber Pin
TJoe10-Oct-07 5:35
TJoe10-Oct-07 5:35 
QuestionLooping through property Pin
Marcel Vreuls (www.agentbase.nl)10-Oct-07 4:16
Marcel Vreuls (www.agentbase.nl)10-Oct-07 4:16 
AnswerRe: Looping through property Pin
TJoe10-Oct-07 4:22
TJoe10-Oct-07 4:22 
GeneralRe: Looping through property Pin
Marcel Vreuls (www.agentbase.nl)10-Oct-07 4:41
Marcel Vreuls (www.agentbase.nl)10-Oct-07 4:41 
Questionwhat is incorrect in my code? Pin
8213001210-Oct-07 4:00
8213001210-Oct-07 4:00 
AnswerRe: what is incorrect in my code? Pin
Judah Gabriel Himango10-Oct-07 4:06
sponsorJudah Gabriel Himango10-Oct-07 4:06 
AnswerRe: what is incorrect in my code? Pin
Guffa10-Oct-07 5:56
Guffa10-Oct-07 5:56 
AnswerRe: what is incorrect in my code? Pin
Ennis Ray Lynch, Jr.10-Oct-07 9:45
Ennis Ray Lynch, Jr.10-Oct-07 9:45 
QuestionDownload .net Framework 3.0 SDK Pin
Tomerland10-Oct-07 3:58
Tomerland10-Oct-07 3:58 
AnswerRe: Download .net Framework 3.0 SDK Pin
Jimmanuel10-Oct-07 4:15
Jimmanuel10-Oct-07 4:15 
GeneralRe: Download .net Framework 3.0 SDK Pin
Tomerland10-Oct-07 4:23
Tomerland10-Oct-07 4:23 
GeneralRe: Download .net Framework 3.0 SDK Pin
Jimmanuel10-Oct-07 4:32
Jimmanuel10-Oct-07 4:32 
GeneralRe: Download .net Framework 3.0 SDK Pin
Tomerland10-Oct-07 19:28
Tomerland10-Oct-07 19:28 
QuestionCan`t kill focus of button in C# winform Pin
Yanshof10-Oct-07 3:25
Yanshof10-Oct-07 3:25 

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.