Click here to Skip to main content
15,919,358 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# No-Wait Flowshop gantt algorithms Pin
OriginalGriff23-Feb-10 23:50
mveOriginalGriff23-Feb-10 23:50 
AnswerCorrecting a misconception Pin
Pete O'Hanlon23-Feb-10 23:58
mvePete O'Hanlon23-Feb-10 23:58 
QuestionDateTime convertion Pin
salmonraju23-Feb-10 23:35
salmonraju23-Feb-10 23:35 
AnswerRe: DateTime convertion Pin
OriginalGriff23-Feb-10 23:47
mveOriginalGriff23-Feb-10 23:47 
AnswerRe: DateTime convertion Pin
Mirko198024-Feb-10 0:03
Mirko198024-Feb-10 0:03 
GeneralRe: DateTime convertion Pin
salmonraju24-Feb-10 0:47
salmonraju24-Feb-10 0:47 
AnswerRe: DateTime convertion Pin
PIEBALDconsult24-Feb-10 3:47
mvePIEBALDconsult24-Feb-10 3:47 
QuestionCan't add commandBarButton Visual Studio 2010 RC C# Pin
Spixel8923-Feb-10 23:30
Spixel8923-Feb-10 23:30 
Hey all together I've got a question I'm using Visual Studio 2010 RC c# developing an Visio Com Add In
I want to add a Simple Button to the CommandBar "Drawing Object Selected"
so I go for

Office.CommandBar commandBar = appVisio.CommandBars("Drawing Object Selected");
                               //commandBar.Enabled = false;


which is working fine I tested it with the "...Enabled = False" and the Contextmenu does not appear so this is the right commandBar
now I write the following source. I think the Problem is the ....Add() Method

Office.CommandBarButton commandBarButton = (Office.CommandBarButton)commandBar.Controls.Add(1);
                commandBarButton.Caption = "MYButton";
                commandBarButton.Tag = "MYButton";
                commandBarButton.Enabled = true;
                commandBarButton.Visible = true;
                commandBarButton.Style = Office.MsoButtonStyle.msoButtonCaption;
                commandBarButton.Click += new Office._CommandBarButtonEvents_ClickEventHandler(ButtonClick);

The Button does just not Appear
I hope anybody knows what I do Wrong? Ore is it a Bug?
The wired thing is
In Visual Basic the Code:
CType(commandBar.Controls.Add(1), Office.ComandBarButton) works fine and as far as I know is that the same as
(Office.CommandBarButton)commandBar.Controls.Add(1); in C#
Regards Spixel
Sorry for my not very clever english Smile | :)
QuestionHow to get Country List with Two-letter country codes? Pin
Cyber Friend23-Feb-10 23:09
Cyber Friend23-Feb-10 23:09 
AnswerRe: How to get Country List with Two-letter country codes? Pin
Abhinav S23-Feb-10 23:12
Abhinav S23-Feb-10 23:12 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 0:29
Cyber Friend24-Feb-10 0:29 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 0:38
Cyber Friend24-Feb-10 0:38 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Richard MacCutchan24-Feb-10 1:22
mveRichard MacCutchan24-Feb-10 1:22 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 2:09
Cyber Friend24-Feb-10 2:09 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Richard MacCutchan24-Feb-10 2:23
mveRichard MacCutchan24-Feb-10 2:23 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 2:34
Cyber Friend24-Feb-10 2:34 
GeneralRe: How to get Country List with Two-letter country codes? Pin
J4amieC24-Feb-10 2:51
J4amieC24-Feb-10 2:51 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 3:38
Cyber Friend24-Feb-10 3:38 
GeneralRe: How to get Country List with Two-letter country codes? Pin
J4amieC24-Feb-10 3:47
J4amieC24-Feb-10 3:47 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 3:50
Cyber Friend24-Feb-10 3:50 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Gonzoox24-Feb-10 3:56
Gonzoox24-Feb-10 3:56 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 4:17
Cyber Friend24-Feb-10 4:17 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Gonzoox24-Feb-10 4:23
Gonzoox24-Feb-10 4:23 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Cyber Friend24-Feb-10 5:00
Cyber Friend24-Feb-10 5:00 
GeneralRe: How to get Country List with Two-letter country codes? Pin
Richard MacCutchan24-Feb-10 3:19
mveRichard MacCutchan24-Feb-10 3:19 

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.