Click here to Skip to main content
15,920,603 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: print, assign and logon Pin
Christian Graus28-Jun-05 13:14
protectorChristian Graus28-Jun-05 13:14 
GeneralRe: print, assign and logon Pin
Manik Nath29-Jun-05 0:06
Manik Nath29-Jun-05 0:06 
GeneralRe: print, assign and logon Pin
Christian Graus29-Jun-05 11:28
protectorChristian Graus29-Jun-05 11:28 
GeneralError when showing report by Crystal Report Viewer Pin
tshung24-Jun-05 19:03
tshung24-Jun-05 19:03 
GeneralRe: Error when showing report by Crystal Report Viewer Pin
Madni Abbasi25-Jun-05 6:54
Madni Abbasi25-Jun-05 6:54 
QuestionHow to design Server (TCP/IP) only listen to a specific client Pin
NEOWT24-Jun-05 15:18
sussNEOWT24-Jun-05 15:18 
GeneralExporting Images from Word Pin
ironclads24-Jun-05 11:21
ironclads24-Jun-05 11:21 
GeneralUninstall doesn't work Excel Addin Pin
btoyer24-Jun-05 10:48
btoyer24-Jun-05 10:48 
I have made an Excel Addin that creates four buttons and links them to my forms to retrieve data. I used a Shared Addin project so that I would get a .msi file generated for me when I built the solution. All is well until I attempt to remove the addin. The msi file as put an entry into the Add/Remove Programs list so I simply went there and clicked remove. I went back to Excel and the buttons were still there. I have restarted the machine and the buttons continue to exist and connect to the forms that should have also gone away.

Any suggestions on how to get rid of it?


As a side point that may be of some concequence, when I reinstalled the program I ended up with 6 buttons coming up. All of these buttons link to the appropriate form. I believe this problem is related to the following code from my connect.vb file.


This only creates one button:
MyCJ = oStandardBar.Controls.Item("CJ")
If MyCJ Is Nothing Then
MyCJ = oStandardBar.Controls.Add(1)
With MyCJ
.Caption = "CJ"
.Style = MsoButtonStyle.msoButtonCaption
.Tag = "CJ"
.OnAction = "!<SEOEXCELADDIN.Connect>"
.Visible = True
End With
End If


This buttons gets duplicated:
MyTD = oStandardBar.Controls.Item("TD")
If MyTD Is Nothing Then
MyTD = oStandardBar.Controls.Add(1)
With MyTD
.Caption = "TopDrivers"
.Style = MsoButtonStyle.msoButtonCaption
.Tag = "TD"
.OnAction = "!<SEOEXCELADDIN.Connect>"
.Visible = True
End With
End If
GeneralWierd Spy++ issue Pin
Abhishek Karnik24-Jun-05 10:18
Abhishek Karnik24-Jun-05 10:18 
GeneralRe: Wierd Spy++ issue Pin
Abhishek Karnik24-Jun-05 10:19
Abhishek Karnik24-Jun-05 10:19 
GeneralMultiple Selections at DesignTime Pin
SBendBuckeye24-Jun-05 9:24
SBendBuckeye24-Jun-05 9:24 
GeneralSolution compile problem Pin
mtone24-Jun-05 7:48
mtone24-Jun-05 7:48 
GeneralRe: Solution compile problem Pin
Dave Kreskowiak24-Jun-05 8:00
mveDave Kreskowiak24-Jun-05 8:00 
Question.NET or not ? Pin
dondo102024-Jun-05 7:24
dondo102024-Jun-05 7:24 
AnswerRe: .NET or not ? Pin
Dave Kreskowiak24-Jun-05 7:59
mveDave Kreskowiak24-Jun-05 7:59 
GeneralRe: .NET or not ? Pin
Steve Maier24-Jun-05 11:05
professionalSteve Maier24-Jun-05 11:05 
AnswerRe: .NET or not ? Pin
Het210927-Jun-05 1:30
Het210927-Jun-05 1:30 
GeneralAdd an element to an Array Pin
directred24-Jun-05 1:38
directred24-Jun-05 1:38 
GeneralRe: Add an element to an Array Pin
Member 188578024-Jun-05 2:40
Member 188578024-Jun-05 2:40 
GeneralRe: Add an element to an Array Pin
Dave Doknjas25-Jun-05 13:47
Dave Doknjas25-Jun-05 13:47 
GeneralOpening Outlook from Code Pin
Member 188578024-Jun-05 0:40
Member 188578024-Jun-05 0:40 
GeneralRe: Opening Outlook from Code Pin
Dave Kreskowiak24-Jun-05 1:49
mveDave Kreskowiak24-Jun-05 1:49 
Generalconversion from excel to pdf Pin
Member 199825024-Jun-05 0:35
Member 199825024-Jun-05 0:35 
GeneralRe: conversion from excel to pdf Pin
Dave Kreskowiak24-Jun-05 1:48
mveDave Kreskowiak24-Jun-05 1:48 
GeneralRe: conversion from excel to pdf Pin
Member 199825024-Jun-05 2:56
Member 199825024-Jun-05 2: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.