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

C#

 
GeneralRe: Installing a Software Developed using Dot net bar Pin
parth.p15-Mar-08 15:24
parth.p15-Mar-08 15:24 
GeneralRe: Installing a Software Developed using Dot net bar Pin
Not Active15-Mar-08 16:08
mentorNot Active15-Mar-08 16:08 
GeneralRe: Installing a Software Developed using Dot net bar Pin
Krazy Programmer15-Mar-08 20:19
Krazy Programmer15-Mar-08 20:19 
GeneralRe: Installing a Software Developed using Dot net bar Pin
Not Active15-Mar-08 12:49
mentorNot Active15-Mar-08 12:49 
Questionusing my cursor in C# - help me Pin
inan_15-Mar-08 7:18
inan_15-Mar-08 7:18 
GeneralRe: using my cursor in C# - help me [modified] Pin
parth.p15-Mar-08 7:30
parth.p15-Mar-08 7:30 
GeneralRe: using my cursor in C# - help me Pin
inan_15-Mar-08 20:03
inan_15-Mar-08 20:03 
GeneralRe: using my cursor in C# - help me Pin
parth.p16-Mar-08 2:22
parth.p16-Mar-08 2:22 
Here is the explanation found from MSDN:-

<br />
// The following generates a cursor from an embedded resource.<br />
            <br />
            // To add a custom cursor, create or use an existing 16x16 bitmap<br />
            //        1. Add a new cursor file to your project: <br />
            //                File->Add New Item->Local Project Items->Cursor File<br />
            //        2. Select 16x16 image type:<br />
            //                Image->Current Icon Image Types->16x16<br />
<br />
            // --- To make the custom cursor an embedded resource  ---<br />
            <br />
            // In Visual Studio:<br />
            //        1. Select the cursor file in the Solution Explorer<br />
            //        2. Choose View->Properties.<br />
            //        3. In the properties window switch "Build Action" to "Embedded"<br />
<br />
            // On the command line:<br />
            //        Add the following flag:<br />
            //            /res:CursorFileName.Cur,Namespace.CursorFileName.Cur<br />
            //        <br />
            //        Where "Namespace" is the namespace in which you want to use the cursor<br />
            //        and   "CursorFileName.Cur" is the cursor filename.<br />
<br />
            // The following line uses the namespace from the passed-in type<br />
            // and looks for CustomCursor.MyCursor.Cur in the assemblies manifest.<br />
	    // NOTE: The cursor name is acase sensitive.<br />
            this.Cursor = new Cursor(GetType(), "MyCursor.Cur");  <br />
<br />


Next time search on Google for something you don't understand. Smile | :)

- Stop thinking in terms of limitations and start thinking in terms of possibilities -

GeneralRe: using my cursor in C# - help me Pin
inan_16-Mar-08 4:15
inan_16-Mar-08 4:15 
QuestionCan someone please Program the following ADT specification in C# help!!! Pin
ADTC#15-Mar-08 5:57
ADTC#15-Mar-08 5:57 
AnswerRe: Can someone please Program the following ADT specification in C# help!!! Pin
Kristian Sixhøj15-Mar-08 6:03
Kristian Sixhøj15-Mar-08 6:03 
AnswerRe: Can someone please Program the following ADT specification in C# help!!! Pin
pmarfleet15-Mar-08 6:39
pmarfleet15-Mar-08 6:39 
QuestionApplicationBlocks Configuration Manager xml *.config file reverting to old version Pin
Bill Prada15-Mar-08 5:52
Bill Prada15-Mar-08 5:52 
GeneralRe: ApplicationBlocks Configuration Manager xml *.config file reverting to old version Pin
Mircea Puiu15-Mar-08 7:07
Mircea Puiu15-Mar-08 7:07 
GeneralRe: ApplicationBlocks Configuration Manager xml *.config file reverting to old version Pin
Bill Prada15-Mar-08 9:03
Bill Prada15-Mar-08 9:03 
GeneralRe: ApplicationBlocks Configuration Manager xml *.config file reverting to old version Pin
Mircea Puiu15-Mar-08 22:12
Mircea Puiu15-Mar-08 22:12 
QuestionInteroperatibility... Pin
Rahul.RK15-Mar-08 5:29
Rahul.RK15-Mar-08 5:29 
GeneralRe: Interoperatibility... Pin
DaveyM6915-Mar-08 5:33
professionalDaveyM6915-Mar-08 5:33 
QuestionRe: Interoperatibility... Pin
Rahul.RK15-Mar-08 5:41
Rahul.RK15-Mar-08 5:41 
GeneralRe: Interoperatibility... Pin
Mircea Puiu15-Mar-08 7:13
Mircea Puiu15-Mar-08 7:13 
Generalwpf Pin
SVb.net15-Mar-08 4:21
SVb.net15-Mar-08 4:21 
GeneralRe: wpf Pin
DaveyM6915-Mar-08 4:34
professionalDaveyM6915-Mar-08 4:34 
GeneralRe: wpf Pin
Kevin McFarlane15-Mar-08 5:16
Kevin McFarlane15-Mar-08 5:16 
GeneralCount same values in single array Pin
Cptkli15-Mar-08 1:35
Cptkli15-Mar-08 1:35 
GeneralRe: Count same values in single array Pin
pmarfleet15-Mar-08 1:56
pmarfleet15-Mar-08 1:56 

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.