Click here to Skip to main content
15,915,867 members
Home / Discussions / C#
   

C#

 
GeneralRe: Icons Disapear from taskebar Pin
Xmen Real 26-Mar-09 3:58
professional Xmen Real 26-Mar-09 3:58 
GeneralRe: Icons Disapear from taskebar Pin
Cracked-Down26-Mar-09 3:59
Cracked-Down26-Mar-09 3:59 
GeneralRe: Icons Disapear from taskebar Pin
Xmen Real 26-Mar-09 4:02
professional Xmen Real 26-Mar-09 4:02 
AnswerRe: Icons Disapear from taskebar Pin
musefan26-Mar-09 4:13
musefan26-Mar-09 4:13 
GeneralRe: Icons Disapear from taskebar Pin
Cracked-Down26-Mar-09 4:18
Cracked-Down26-Mar-09 4:18 
GeneralRe: Icons Disapear from taskebar Pin
Cracked-Down26-Mar-09 3:51
Cracked-Down26-Mar-09 3:51 
GeneralRe: Icons Disapear from taskebar Pin
Henry Minute26-Mar-09 6:31
Henry Minute26-Mar-09 6:31 
AnswerRe: Icons Disapear from taskebar Pin
Eddy Vluggen26-Mar-09 9:21
professionalEddy Vluggen26-Mar-09 9:21 
I say that we build a little testproject to verify whether all is working as it should be (ruling out faults with device drivers and stuff) Smile | :)

Can you please;
* Create a new C# project - a normal executable
* Download the icon from here[^]
* Set the application icon to the one that you just downloaded (under projects' properties)
* Modify your Program.cs file to look like this;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace WindowsFormsApplication7 (namespace is generated, don't change yours!)
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();

            Form1A.Icon = System.Drawing.Icon.ExtractAssociatedIcon(Application.ExecutablePath);
            Form1B.Icon = Form1A.Icon;
            Form1A.Show();
            Form1B.Show();

            while (Form1A.Visible && Form1B.Visible)
                Application.DoEvents();
        }
        private static Form1 Form1A = new Form1();
        private static Form1 Form1B = new Form1();
    }
}

This should compile into an executable that shows two icons - even when you alt-tab. Can you verify this?

I are troll Smile | :)

GeneralRe: Icons Disapear from taskebar Pin
Cracked-Down26-Mar-09 18:00
Cracked-Down26-Mar-09 18:00 
QuestionCsharp with Oracle 10g Passing Arrays as an Output Parameter to the SP: Need Help URGENT Pin
srinivas_0626-Mar-09 2:52
srinivas_0626-Mar-09 2:52 
Questionsend the xml through socket Pin
lnmca26-Mar-09 2:14
lnmca26-Mar-09 2:14 
AnswerRe: send the xml through socket Pin
stancrm26-Mar-09 2:32
stancrm26-Mar-09 2:32 
QuestionHow to display pdf & word file Pin
Sajjad Leo26-Mar-09 1:48
Sajjad Leo26-Mar-09 1:48 
AnswerRe: How to display pdf & word file Pin
Eddy Vluggen26-Mar-09 2:06
professionalEddy Vluggen26-Mar-09 2:06 
GeneralRe: How to display pdf & word file Pin
Sajjad Leo26-Mar-09 2:13
Sajjad Leo26-Mar-09 2:13 
GeneralRe: How to display pdf & word file Pin
musefan26-Mar-09 2:21
musefan26-Mar-09 2:21 
GeneralRe: How to display pdf & word file Pin
Sajjad Leo26-Mar-09 2:24
Sajjad Leo26-Mar-09 2:24 
GeneralRe: How to display pdf & word file Pin
Fayu26-Mar-09 2:49
Fayu26-Mar-09 2:49 
QuestionDate Time Pin
Zeyad Jalil26-Mar-09 1:41
professionalZeyad Jalil26-Mar-09 1:41 
AnswerRe: Date Time Pin
SeMartens26-Mar-09 1:47
SeMartens26-Mar-09 1:47 
GeneralRe: Date Time Pin
Zeyad Jalil26-Mar-09 2:05
professionalZeyad Jalil26-Mar-09 2:05 
GeneralRe: Date Time Pin
Ashfield26-Mar-09 2:12
Ashfield26-Mar-09 2:12 
GeneralRe: Date Time Pin
Deresen26-Mar-09 2:13
Deresen26-Mar-09 2:13 
GeneralRe: Date Time Pin
musefan26-Mar-09 2:17
musefan26-Mar-09 2:17 
GeneralRe: Date Time Pin
CPallini26-Mar-09 3:23
mveCPallini26-Mar-09 3:23 

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.