Click here to Skip to main content
15,901,505 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerTreating CSV file as a DB Pin
HL_SUB12-Mar-06 0:25
HL_SUB12-Mar-06 0:25 
GeneralThanks but NO, LDAP Queries is where I am stuck. Pin
japel12-Mar-06 10:11
japel12-Mar-06 10:11 
QuestionCalling a child form from an MDI Container Pin
Scott341511-Mar-06 9:04
Scott341511-Mar-06 9:04 
AnswerRe: Calling a child form from an MDI Container Pin
Scott341511-Mar-06 9:11
Scott341511-Mar-06 9:11 
Question'sub main not found' bug Pin
formansworld11-Mar-06 7:22
formansworld11-Mar-06 7:22 
AnswerRe: 'sub main not found' bug Pin
Joshua Quick11-Mar-06 8:46
Joshua Quick11-Mar-06 8:46 
QuestionHow can I show a clips of a picture box at runtime? Pin
JUNEYT11-Mar-06 6:40
JUNEYT11-Mar-06 6:40 
AnswerRe: How can I show a clips of a picture box at runtime? Pin
Joshua Quick11-Mar-06 8:41
Joshua Quick11-Mar-06 8:41 
You need handle the PictureBox's MouseEnter and MouseLeave events as follows. You can make it display an image at runtime by setting the PictureBox.Image property.
Private Sub PictureBox1_MouseEnter(ByVal sender As Object, _
                                   ByVal e As System.EventArgs) _
                                   Handles PictureBox1.MouseEnter
   PictureBox1.Image = myImage
End Sub
Private Sub PictureBox1_MouseLeave(ByVal sender As Object, _
                                   ByVal e As System.EventArgs) _
                                   Handles PictureBox1.MouseLeave
   PictureBox1.Image = Nothing ' Clear the PictureBox.
End Sub

You can make the entire image fit inside the PictureBox by setting the PictureBox.SizeMode property to StretchImage.
GeneralYour answer is not the answer to my question Pin
JUNEYT11-Mar-06 10:06
JUNEYT11-Mar-06 10:06 
AnswerRe: Your answer is not the answer to my question Pin
Joshua Quick11-Mar-06 14:04
Joshua Quick11-Mar-06 14:04 
QuestionHow can I retrieve the command line arguments? Pin
JUNEYT11-Mar-06 6:34
JUNEYT11-Mar-06 6:34 
AnswerRe: How can I retrieve the command line arguments? Pin
Joshua Quick11-Mar-06 8:25
Joshua Quick11-Mar-06 8:25 
QuestionSeeking for an alternative solution for tabcontrol? Pin
JUNEYT11-Mar-06 6:31
JUNEYT11-Mar-06 6:31 
AnswerRe: Seeking for an alternative solution for tabcontrol? Pin
Joshua Quick11-Mar-06 8:19
Joshua Quick11-Mar-06 8:19 
GeneralRe: Seeking for an alternative solution for tabcontrol? Pin
JUNEYT11-Mar-06 9:44
JUNEYT11-Mar-06 9:44 
AnswerRe: Seeking for an alternative solution for tabcontrol? Pin
Joshua Quick11-Mar-06 10:05
Joshua Quick11-Mar-06 10:05 
QuestionVB.Net- Fields in Access database returned in alphabetical order Pin
JDMils11-Mar-06 5:41
JDMils11-Mar-06 5:41 
AnswerRe: did i use the wrong loop? it hang.. Pin
Guffa11-Mar-06 4:39
Guffa11-Mar-06 4:39 
Generalerror on the path how come it become null?? Pin
campbells11-Mar-06 5:36
campbells11-Mar-06 5:36 
AnswerRe: error on the path how come it become null?? Pin
Guffa11-Mar-06 5:55
Guffa11-Mar-06 5:55 
GeneralRe: error on the path how come it become null?? Pin
campbells11-Mar-06 6:26
campbells11-Mar-06 6:26 
GeneralRe: error on the path how come it become null?? Pin
Guffa11-Mar-06 6:33
Guffa11-Mar-06 6:33 
GeneralRe: error on the path how come it become null?? Pin
campbells11-Mar-06 16:19
campbells11-Mar-06 16:19 
Questionado.net Pin
SVb.net11-Mar-06 3:20
SVb.net11-Mar-06 3:20 
AnswerRe: ado.net Pin
Michael P Butler11-Mar-06 4:55
Michael P Butler11-Mar-06 4:55 

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.