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

C#

 
QuestionHow to Inherit C++/CLI Interface in C#? Pin
glitteringsound11-Jul-10 2:24
glitteringsound11-Jul-10 2:24 
AnswerRe: How to Inherit C++/CLI Interface in C#? Pin
Luc Pattyn11-Jul-10 6:00
sitebuilderLuc Pattyn11-Jul-10 6:00 
QuestionSharing strings between unmanaged and managed code Pin
Keith Vitali10-Jul-10 11:39
Keith Vitali10-Jul-10 11:39 
AnswerRe: Sharing strings between unmanaged and managed code Pin
Keith Vitali11-Jul-10 6:20
Keith Vitali11-Jul-10 6:20 
QuestionSet Exit code in win mobile C# Pin
alto10-Jul-10 10:37
alto10-Jul-10 10:37 
AnswerRe: Set Exit code in win mobile C# Pin
DaveyM6910-Jul-10 23:04
professionalDaveyM6910-Jul-10 23:04 
QuestionShowing Main Form Quickly? Pin
ali_zdn10-Jul-10 9:29
ali_zdn10-Jul-10 9:29 
AnswerRe: Showing Main Form Quickly? Pin
Bigdeak10-Jul-10 10:12
Bigdeak10-Jul-10 10:12 
The easiest way to make this possible is to put this operations in the Shown Event of the showing form.

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

            this.Shown += new System.EventHandler(this.Form1_Shown);
        }

        private void Form1_Shown(object sender, EventArgs e) {
            MessageBox.Show("Hello world after showing the Form");

            // Here you SQL Connection etc.
        }
    }


Hope it could help you...
GeneralRe: Showing Main Form Quickly? Pin
ali_zdn10-Jul-10 10:36
ali_zdn10-Jul-10 10:36 
GeneralRe: Showing Main Form Quickly? Pin
Richard Blythe10-Jul-10 11:34
Richard Blythe10-Jul-10 11:34 
GeneralRe: Showing Main Form Quickly? Pin
Ravi Bhavnani10-Jul-10 13:43
professionalRavi Bhavnani10-Jul-10 13:43 
AnswerRe: Showing Main Form Quickly? Pin
PIEBALDconsult10-Jul-10 15:06
mvePIEBALDconsult10-Jul-10 15:06 
GeneralRe: Showing Main Form Quickly? Pin
OriginalGriff10-Jul-10 20:30
mveOriginalGriff10-Jul-10 20:30 
GeneralRe: Showing Main Form Quickly? Pin
PIEBALDconsult11-Jul-10 3:15
mvePIEBALDconsult11-Jul-10 3:15 
GeneralRe: Showing Main Form Quickly? Pin
OriginalGriff11-Jul-10 3:46
mveOriginalGriff11-Jul-10 3:46 
AnswerRe: Showing Main Form Quickly? Pin
Pete O'Hanlon10-Jul-10 21:46
mvePete O'Hanlon10-Jul-10 21:46 
QuestionMessage Removed Pin
10-Jul-10 4:31
isprog110-Jul-10 4:31 
AnswerRe: Graphics Object Using text box for x & y axis. Pin
OriginalGriff10-Jul-10 4:44
mveOriginalGriff10-Jul-10 4:44 
GeneralMessage Removed Pin
10-Jul-10 6:12
isprog110-Jul-10 6:12 
GeneralRe: Graphics Object Using text box for x & y axis. Pin
OriginalGriff10-Jul-10 10:22
mveOriginalGriff10-Jul-10 10:22 
GeneralMessage Removed Pin
10-Jul-10 21:02
isprog110-Jul-10 21:02 
GeneralRe: Graphics Object Using text box for x & y axis. [modified] Pin
OriginalGriff10-Jul-10 21:26
mveOriginalGriff10-Jul-10 21:26 
GeneralRe: Graphics Object Using text box for x & y axis. Pin
isprog110-Jul-10 21:40
isprog110-Jul-10 21:40 
GeneralRe: Graphics Object Using text box for x & y axis. Pin
OriginalGriff10-Jul-10 21:59
mveOriginalGriff10-Jul-10 21:59 
GeneralRe: Graphics Object Using text box for x & y axis. Pin
OriginalGriff10-Jul-10 23:35
mveOriginalGriff10-Jul-10 23:35 

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.