Click here to Skip to main content
15,897,519 members
Home / Discussions / C#
   

C#

 
GeneralRe: SQLCommandBuilder not working Pin
kruegs3515-Feb-12 9:22
kruegs3515-Feb-12 9:22 
GeneralRe: SQLCommandBuilder not working Pin
Shameel15-Feb-12 17:29
professionalShameel15-Feb-12 17:29 
AnswerRe: SQLCommandBuilder not working Pin
kruegs3515-Feb-12 9:35
kruegs3515-Feb-12 9:35 
Questioncrystal report Pin
sachin rathi15-Feb-12 3:04
sachin rathi15-Feb-12 3:04 
AnswerRe: crystal report Pin
Pete O'Hanlon15-Feb-12 5:54
mvePete O'Hanlon15-Feb-12 5:54 
AnswerRe: crystal report Pin
thatraja15-Feb-12 19:21
professionalthatraja15-Feb-12 19:21 
QuestionConsole Application In C# For Fetching Data From Live Website Pin
Muhammad Anwar Ul Haq Islam15-Feb-12 2:41
Muhammad Anwar Ul Haq Islam15-Feb-12 2:41 
QuestionDrawing Text on Panel Pin
Danzy8315-Feb-12 0:39
Danzy8315-Feb-12 0:39 
Hi everyone. I'm trying to draw text of string on a panel control outside the Paint event but surprisingly, nothing is being drawn. I actually cannot figure out what is wrong with my code. I decided to create a small application to test that and again nothing is being drawn. The small code I wrote to test it is shown below:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;


namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            DrawText();
        }

        private void DrawText()
        {
            Graphics grfx = panel.CreateGraphics();

            grfx.DrawString("Problem drawing text on Panel", panel.Font, Brushes.Black, 50, 50);

            grfx.Dispose();
        }
    }
}



The variable 'panel' is an object of Panel which has been placed on the form with a Dock property 'Fill'. After compiling the text is not drawn. I don't know what I am doing wrong. Please help.
AnswerRe: Drawing Text on Panel Pin
Pete O'Hanlon15-Feb-12 1:14
mvePete O'Hanlon15-Feb-12 1:14 
GeneralRe: Drawing Text on Panel Pin
Danzy8315-Feb-12 2:05
Danzy8315-Feb-12 2:05 
GeneralRe: Drawing Text on Panel Pin
Dave Kreskowiak15-Feb-12 3:55
mveDave Kreskowiak15-Feb-12 3:55 
AnswerRe: Drawing Text on Panel Pin
Wayne Gaylard15-Feb-12 1:22
professionalWayne Gaylard15-Feb-12 1:22 
AnswerRe: Drawing Text on Panel Pin
BobJanova15-Feb-12 2:02
BobJanova15-Feb-12 2:02 
GeneralRe: Drawing Text on Panel Pin
Danzy8315-Feb-12 2:10
Danzy8315-Feb-12 2:10 
GeneralRe: Drawing Text on Panel Pin
Pete O'Hanlon15-Feb-12 2:25
mvePete O'Hanlon15-Feb-12 2:25 
GeneralRe: Drawing Text on Panel Pin
BillWoodruff18-Feb-12 1:05
professionalBillWoodruff18-Feb-12 1:05 
AnswerRe: Drawing Text on Panel Pin
Montasser Ben Ouhida2-Mar-12 4:30
Montasser Ben Ouhida2-Mar-12 4:30 
QuestionHow to create method extensions but inject into them with IoC Pin
Gizz14-Feb-12 23:08
Gizz14-Feb-12 23:08 
AnswerRe: How to create method extensions but inject into them with IoC Pin
BobJanova14-Feb-12 23:24
BobJanova14-Feb-12 23:24 
GeneralRe: How to create method extensions but inject into them with IoC Pin
Gizz15-Feb-12 0:16
Gizz15-Feb-12 0:16 
GeneralRe: How to create method extensions but inject into them with IoC Pin
BobJanova15-Feb-12 0:38
BobJanova15-Feb-12 0:38 
GeneralRe: How to create method extensions but inject into them with IoC Pin
Gizz15-Feb-12 1:41
Gizz15-Feb-12 1:41 
GeneralRe: How to create method extensions but inject into them with IoC Pin
BobJanova15-Feb-12 1:58
BobJanova15-Feb-12 1:58 
QuestionGive me some Suggestions for Make a Editor like Word Pin
Marlai14-Feb-12 21:15
Marlai14-Feb-12 21:15 
AnswerRe: Give me some Suggestions for Make a Editor like Word Pin
thatraja14-Feb-12 21:36
professionalthatraja14-Feb-12 21:36 

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.