Click here to Skip to main content
15,888,351 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Open document from server on client Pin
yftah198915-Feb-11 3:04
yftah198915-Feb-11 3:04 
GeneralRe: Open document from server on client Pin
Paulo Zemek15-Feb-11 6:38
mvaPaulo Zemek15-Feb-11 6:38 
AnswerRe: Open document from server on client Pin
Yusuf16-Feb-11 3:49
Yusuf16-Feb-11 3:49 
AnswerRe: Open document from server on client Pin
Pete O'Hanlon16-Feb-11 10:27
mvePete O'Hanlon16-Feb-11 10:27 
Questionvariable creation when data type is known at runtime Pin
smsubbu14-Feb-11 22:41
smsubbu14-Feb-11 22:41 
AnswerRe: variable creation when data type is known at runtime Pin
Parwej Ahamad15-Feb-11 1:14
professionalParwej Ahamad15-Feb-11 1:14 
AnswerRe: variable creation when data type is known at runtime Pin
Paulo Zemek15-Feb-11 2:42
mvaPaulo Zemek15-Feb-11 2:42 
QuestionQuestion about Office.MsoButtonStyle.msoButtonIconAndCaptionBelow Pin
buffering8314-Feb-11 22:26
buffering8314-Feb-11 22:26 
I am making outlook2010 add-ins by using visual studio 2010.
I want menu to which image top and Caption is below.
So i was coding as below.
But when i run outlook , i can see menu which image is left and Caption is right.
1. How can i Fix This?
2. And I have other question
I want to show submenu when i click right button.
How can i add? now i am reference msdn but there is not answer.


button_1.Style = Office.MsoButtonStyle.msoButtonIconAndCaptionBelow;
button_1.Caption = "Button 1";
button_1.Tag = "Button1";
button_1.Picture = getImage();


sealed public class ConvertImage : System.Windows.Forms.AxHost
{
private ConvertImage()
: base(null)
{
}

public static stdole.IPictureDisp Convert
(System.Drawing.Image image)
{
return (stdole.IPictureDisp)System.
Windows.Forms.AxHost
.GetIPictureDispFromPicture(image);
}
}//sealed public class ConvertImage : System.Windows.Forms.AxHost



private stdole.IPictureDisp getImage()
{
stdole.IPictureDisp tempImage = null;
try
{

System.Drawing.Icon newIcon = new System.Drawing.Icon(@"Stars1.ico");


ImageList newImageList = new ImageList();

newImageList.Images.Add(newIcon);
tempImage = ConvertImage.Convert(newImageList.Images[0]);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
return tempImage;
}//private stdole.IPictureDisp getImage()
hi

My english is a little.
anyway, nice to meet you~~

Questiondistribute asp.net's dll to other pc. Pin
buffering8314-Feb-11 14:56
buffering8314-Feb-11 14:56 
AnswerRe: distribute asp.net's dll to other pc. Pin
Yusuf14-Feb-11 16:18
Yusuf14-Feb-11 16:18 
GeneralRe: distribute asp.net's dll to other pc. Pin
buffering8315-Feb-11 19:15
buffering8315-Feb-11 19:15 
Questioncould we add a table in the content area of the google calendar Pin
netJP12L14-Feb-11 6:55
netJP12L14-Feb-11 6:55 
AnswerRe: could we add a table in the content area of the google calendar Pin
Not Active14-Feb-11 8:32
mentorNot Active14-Feb-11 8:32 
GeneralRe: could we add a table in the content area of the google calendar Pin
netJP12L14-Feb-11 8:48
netJP12L14-Feb-11 8:48 
QuestionProgress Bar Pin
Mugdha_Aditya14-Feb-11 2:02
Mugdha_Aditya14-Feb-11 2:02 
AnswerRe: Progress Bar Pin
Not Active14-Feb-11 8:32
mentorNot Active14-Feb-11 8:32 
GeneralRe: Progress Bar Pin
Mugdha_Aditya14-Feb-11 23:59
Mugdha_Aditya14-Feb-11 23:59 
QuestionHow can i read and write session value in App_CODE? Pin
buffering8313-Feb-11 12:43
buffering8313-Feb-11 12:43 
GeneralRe: How can i read and write session value in App_CODE? Pin
Anurag Gandhi13-Feb-11 18:21
professionalAnurag Gandhi13-Feb-11 18:21 
GeneralRe: How can i read and write session value in App_CODE? Pin
buffering8313-Feb-11 18:51
buffering8313-Feb-11 18:51 
QuestionAdvise about implementing roulette like chat Pin
Haim Nachum12-Feb-11 23:36
Haim Nachum12-Feb-11 23:36 
QuestionInvalid Token when using XPath Pin
Member 297299210-Feb-11 9:41
Member 297299210-Feb-11 9:41 
AnswerRe: Invalid Token when using XPath Pin
phil.o10-Feb-11 23:21
professionalphil.o10-Feb-11 23:21 
Questiongetting an e-mail message to a string Pin
benams10-Feb-11 4:09
benams10-Feb-11 4:09 
AnswerRe: getting an e-mail message to a string Pin
Parwej Ahamad10-Feb-11 4:19
professionalParwej Ahamad10-Feb-11 4: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.