Click here to Skip to main content
15,888,984 members
Home / Discussions / Visual Basic
   

Visual Basic

 
General2 ques regarding hexadecimal numbers Pin
r i s h a b h s14-Feb-03 0:58
r i s h a b h s14-Feb-03 0:58 
GeneralRe: 2 ques regarding hexadecimal numbers Pin
Richard Deeming14-Feb-03 6:52
mveRichard Deeming14-Feb-03 6:52 
GeneralRe: 2 ques regarding hexadecimal numbers Pin
Richard Deeming16-Feb-03 23:50
mveRichard Deeming16-Feb-03 23:50 
GeneralRe: 2 ques regarding hexadecimal numbers Pin
r i s h a b h s17-Feb-03 17:03
r i s h a b h s17-Feb-03 17:03 
GeneralWave Pedal Pin
syedhassan413-Feb-03 23:20
syedhassan413-Feb-03 23:20 
GeneralVB Pin
Ebin13-Feb-03 17:05
Ebin13-Feb-03 17:05 
QuestionHow do i code an animated (gif) button in vb.NET? Pin
qsdnj13-Feb-03 7:10
qsdnj13-Feb-03 7:10 
AnswerRe: How do i code an animated (gif) button in vb.NET? Pin
RZLR18-Feb-03 0:22
RZLR18-Feb-03 0:22 
First you should reference "System.Drawing" by right clicking on references or add "Imports System.Drawing" to the top of your project.
In the class name dropdown (above your code) choose the command button and next to that in the method name dropdown choose MouseHover/MouseLeave. Enter code similar to the following:


Private Sub Button1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.MouseHover
Button1.Image = Image.FromFile("D:\Source\App.ico")
End Sub

Private Sub Button1_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.MouseLeave
Button1.Image = Image.FromFile("D:\Source\Add.ico")
End Sub

Smile | :)

Generalpowerpoint automation Pin
pnpfriend13-Feb-03 5:14
pnpfriend13-Feb-03 5:14 
GeneralMSHFlexGrid Pin
Andy H12-Feb-03 11:28
Andy H12-Feb-03 11:28 
GeneralRe: MSHFlexGrid Pin
Andy H12-Feb-03 12:19
Andy H12-Feb-03 12:19 
Generaldisabling a row in a datagrid Pin
mcm12-Feb-03 5:40
mcm12-Feb-03 5:40 
Generalchecking for a numeric value in a loop Pin
mcm12-Feb-03 1:01
mcm12-Feb-03 1:01 
GeneralRe: checking for a numeric value in a loop Pin
xBlitzerx12-Feb-03 4:21
xBlitzerx12-Feb-03 4:21 
QuestionHow To Show MDI Form in ActiveXDll.OCX Pin
Uttam Kumar Unik!11-Feb-03 22:29
Uttam Kumar Unik!11-Feb-03 22:29 
AnswerRe: How To Show MDI Form in ActiveXDll.OCX Pin
Ray Cassick13-Feb-03 3:17
Ray Cassick13-Feb-03 3:17 
GeneralRe: How To Show MDI Form in ActiveXDll.OCX Pin
Uttam Kumar Unik!13-Feb-03 23:22
Uttam Kumar Unik!13-Feb-03 23:22 
GeneralRe: How To Show MDI Form in ActiveXDll.OCX Pin
Ray Cassick14-Feb-03 7:39
Ray Cassick14-Feb-03 7:39 
AnswerRe: How To Show MDI Form in ActiveXDll.OCX Pin
Tony Stark18-Feb-03 3:19
Tony Stark18-Feb-03 3:19 
General"Back" and "Forward" button functionality Pin
Vidvan11-Feb-03 10:50
Vidvan11-Feb-03 10:50 
GeneralRe: "Back" and "Forward" button functionality Pin
Nick Parker11-Feb-03 18:14
protectorNick Parker11-Feb-03 18:14 
GeneralSending Email Pin
Nick Seng10-Feb-03 19:28
Nick Seng10-Feb-03 19:28 
GeneralRecordSets In ADO for VB6 Pin
rradhay10-Feb-03 8:52
rradhay10-Feb-03 8:52 
GeneralRe: RecordSets In ADO for VB6 Pin
Andy H10-Feb-03 22:06
Andy H10-Feb-03 22:06 
GeneralRe: RecordSets In ADO for VB6 Pin
Andy H10-Feb-03 22:17
Andy H10-Feb-03 22:17 

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.