Click here to Skip to main content
15,924,507 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to get target path of Shorcut (lnk) files in VB 6 Pin
Milton Karimbekallil13-Apr-04 21:04
Milton Karimbekallil13-Apr-04 21:04 
GeneralRe: How to get target path of Shorcut (lnk) files in VB 6 Pin
EmanAli13-Apr-04 21:59
EmanAli13-Apr-04 21:59 
GeneralDataGrid Header and Alignment Pin
ibok235-Apr-04 15:01
ibok235-Apr-04 15:01 
QuestionGetWindowText() from hidden window? Pin
ndalal5-Apr-04 11:01
ndalal5-Apr-04 11:01 
AnswerRe: GetWindowText() from hidden window? Pin
Milton Karimbekallil5-Apr-04 23:10
Milton Karimbekallil5-Apr-04 23:10 
GeneralRe: GetWindowText() from hidden window? Pin
ndalal6-Apr-04 11:09
ndalal6-Apr-04 11:09 
GeneralRe: GetWindowText() from hidden window? Pin
Milton Karimbekallil11-Apr-04 19:09
Milton Karimbekallil11-Apr-04 19:09 
Generaltask bar button doesn't work Pin
skoizumi291105-Apr-04 10:37
sussskoizumi291105-Apr-04 10:37 
The following is the way to put the button and also add the functions for ConnectButton and DisconnectButton when those buttons are pressed.
however, whenever press one of button two functions will be executed instead of only the one with pressed but both of them. Why is that?


Dim WithEvents ConnectButton As CommandBarButton
Dim WithEvents DisconnectButton As CommandBarButton

' Connection Button
With ConnectButton
.Style = msoButtonIconAndCaption
.Caption = "Connect"
.FaceId = 19
.ToolTipText = "Press me for fun and profit."
'.OnAction = "ConnectButton"
.Tag = "My Big Button"
End With
'Disconnection Button
Set DisconnectButton = _
.Add(msoControlButton)
' Disconnect Button
With cbcDisconnectButton
.Style = msoButtonIconAndCaption
.Caption = "disconnect"
.FaceId = 19
.ToolTipText = "disconnect from iims"
'.OnAction = "DisconnectButton"
.Tag = "My Big Button"
End With


GeneralRe: task bar button doesn't work Pin
Dave Kreskowiak5-Apr-04 11:29
mveDave Kreskowiak5-Apr-04 11:29 
GeneralRe: task bar button doesn't work Pin
skoizumi291105-Apr-04 13:42
sussskoizumi291105-Apr-04 13:42 
QuestionDateTimePicker DropDown? Pin
Dino685-Apr-04 7:42
Dino685-Apr-04 7:42 
QuestionDateTimePicker DropDown? Pin
Dino685-Apr-04 7:41
Dino685-Apr-04 7:41 
AnswerRe: DateTimePicker DropDown? Pin
sagmam23-Jul-04 6:58
sagmam23-Jul-04 6:58 
AnswerRe: DateTimePicker DropDown? Pin
Anonymous23-Jul-04 8:48
Anonymous23-Jul-04 8:48 
General"Specified Cast Not Valid" Pin
nvmoss5-Apr-04 5:41
nvmoss5-Apr-04 5:41 
QuestionHow to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Codemonkey855-Apr-04 5:06
Codemonkey855-Apr-04 5:06 
AnswerRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Nadroj5-Apr-04 7:23
Nadroj5-Apr-04 7:23 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Codemonkey855-Apr-04 17:19
Codemonkey855-Apr-04 17:19 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Nadroj5-Apr-04 18:52
Nadroj5-Apr-04 18:52 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Codemonkey855-Apr-04 19:56
Codemonkey855-Apr-04 19:56 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Nadroj5-Apr-04 20:08
Nadroj5-Apr-04 20:08 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Nadroj5-Apr-04 20:15
Nadroj5-Apr-04 20:15 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Codemonkey855-Apr-04 21:52
Codemonkey855-Apr-04 21:52 
GeneralRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Nadroj6-Apr-04 3:01
Nadroj6-Apr-04 3:01 
AnswerRe: How to programatically create a text file containing the VB.Net code neccessary for recreating a different file programatically Pin
Dave Kreskowiak6-Apr-04 0:56
mveDave Kreskowiak6-Apr-04 0: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.