Click here to Skip to main content
15,902,918 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Question.Net 2.0 and Crystal Reports Pin
j45mw15-Sep-06 11:04
j45mw15-Sep-06 11:04 
Question IE Extension: How to add a button to the status bar? Pin
rryyjw15-Sep-06 6:11
rryyjw15-Sep-06 6:11 
GeneralRe: IE Extension: How to add a button to the status bar? Pin
Guffa15-Sep-06 15:56
Guffa15-Sep-06 15:56 
QuestionReducing time to start application Pin
..Hubert..15-Sep-06 5:34
..Hubert..15-Sep-06 5:34 
AnswerRe: Reducing time to start application Pin
Jakob Farian Krarup17-Sep-06 19:16
Jakob Farian Krarup17-Sep-06 19:16 
GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 1:27
..Hubert..18-Sep-06 1:27 
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 2:02
Jakob Farian Krarup18-Sep-06 2:02 
GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 4:48
..Hubert..18-Sep-06 4:48 
Hi Jakob
Here is the code of NiceDialog InitializeComponent:
<code>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NiceDialogForm));
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // pictureBox1
            // 
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureBox1.Location = new System.Drawing.Point(12, 12);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(131, 264);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // panel1
            // 
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(155, 12);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(228, 264);
            this.panel1.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(143, 12);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(12, 264);
            this.panel2.TabIndex = 3;
            // 
            // NiceDialogForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Gainsboro;
            this.ClientSize = new System.Drawing.Size(395, 288);
            this.ControlBox = false;
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.pictureBox1);
            this.DoubleBuffered = true;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "NiceDialogForm";
            this.Padding = new System.Windows.Forms.Padding(12);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "SplashForm";
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }

</code>


There is nothing unusual for me - it's just what VS2k5 has made.
I still think about this release/debug issue - you have mentioned it in the first post. I haven't seen such a big difference, so maybe this is my problem? How can I check if the final assembly is optimized or not? The project seems to be ok - "Optimize code" flag is set.

Best regards
Hubert
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 5:18
Jakob Farian Krarup18-Sep-06 5:18 
GeneralRe: Reducing time to start application Pin
..Hubert..18-Sep-06 6:09
..Hubert..18-Sep-06 6:09 
GeneralRe: Reducing time to start application Pin
Jakob Farian Krarup18-Sep-06 7:19
Jakob Farian Krarup18-Sep-06 7:19 
GeneralRe: Reducing time to start application Pin
Phil Wilson18-Sep-06 13:20
Phil Wilson18-Sep-06 13:20 
GeneralRe: Reducing time to start application Pin
..Hubert..11-Oct-06 0:39
..Hubert..11-Oct-06 0:39 
QuestionCreate HTMLImage control object Pin
Vipul Mehta14-Sep-06 23:00
Vipul Mehta14-Sep-06 23:00 
QuestionDll Import Problem in loading two c++ assemblies with same name Pin
He is Cool14-Sep-06 18:51
He is Cool14-Sep-06 18:51 
GeneralRe: Dll Import Problem in loading two c++ assemblies with same name Pin
Guffa14-Sep-06 19:15
Guffa14-Sep-06 19:15 
GeneralRe: Dll Import Problem in loading two c++ assemblies with same name Pin
He is Cool14-Sep-06 19:52
He is Cool14-Sep-06 19:52 
AnswerRe: Dll Import Problem in loading two c++ assemblies with same name Pin
Guffa14-Sep-06 22:22
Guffa14-Sep-06 22:22 
Questionevent delegate invokation order Pin
urbane.tiger14-Sep-06 16:14
urbane.tiger14-Sep-06 16:14 
AnswerRe: event delegate invokation order Pin
nitikin15-Sep-06 1:30
nitikin15-Sep-06 1:30 
AnswerRe: event delegate invokation order Pin
urbane.tiger19-Sep-06 15:59
urbane.tiger19-Sep-06 15:59 
QuestionUnInstallation option in .Net Setup Creation Pin
satsumatable13-Sep-06 22:47
satsumatable13-Sep-06 22:47 
AnswerRe: UnInstallation option in .Net Setup Creation Pin
Not Active14-Sep-06 9:44
mentorNot Active14-Sep-06 9:44 
QuestionRun time error Pin
LovelyHelp13-Sep-06 15:52
LovelyHelp13-Sep-06 15:52 
AnswerRe: Run time error Pin
Subby Dev13-Sep-06 19:48
Subby Dev13-Sep-06 19:48 

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.