Click here to Skip to main content
15,893,161 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Please help a newbie that is totally confused.... Pin
Kschuler26-May-09 7:30
Kschuler26-May-09 7:30 
AnswerRe: Please help a newbie that is totally confused.... Pin
Guffa26-May-09 11:20
Guffa26-May-09 11:20 
GeneralRe: Please help a newbie that is totally confused.... Pin
ymilan27-May-09 12:59
ymilan27-May-09 12:59 
AnswerRe: Please help a newbie that is totally confused.... Pin
Jarno Burger28-May-09 1:16
Jarno Burger28-May-09 1:16 
GeneralRe: Please help a newbie that is totally confused.... Pin
ymilan28-May-09 2:29
ymilan28-May-09 2:29 
GeneralRe: Please help a newbie that is totally confused.... Pin
ymilan28-May-09 2:58
ymilan28-May-09 2:58 
GeneralRe: Please help a newbie that is totally confused.... Pin
Jarno Burger28-May-09 3:55
Jarno Burger28-May-09 3:55 
GeneralRe: Please help a newbie that is totally confused.... Pin
ymilan28-May-09 11:57
ymilan28-May-09 11:57 
Yep we did; thanks!

I have another question.   Trying to move the image1(12) card (drag and drop) to the hearts(12) card.   Testing to see if the tags are equal first, which they are set in design view, then setting the same image bitmap of image1(12) card over (dropped on) the blank image of hearts(12) card.   What happens at run time is ALL the cards 0 - 12 of image1 can only be dropped in hearts(12) spot.   None of the other cards in the image1 stack (up to 52, remember, I'm just doing a sample first) can be dropped over the hearts cards, but no "shirley" error message pops up either.   Any suggestions?

Pardon the format; just testing now

'Private Sub Image1_DragDrop(Index As Integer, Source As Control, X As Single, Y As Single)
      'Image1(Index).Picture = Source.Picture

'End Sub
Private Sub Hearts_DragDrop(Index As Integer, Source As Control, X As Single, Y As Single)
  
      'Dim ImageIndex As Integer
      Dim HeartsPic0 As Image
      HeartsPic0.Picture = Source.Picture
      Source.Picture = LoadPicture("C:\Program1\013h.gif")
                             
                              If Image1(12).Tag = Hearts(12).Tag Then
                             
                              Hearts(12).Picture = HeartsPic0.Picture
                                         
                                
                             
                             
                              Else
                              MsgBox ("You're wrong Shirley")
                     Exit Sub
End If


End Sub
GeneralRe: Please help a newbie that is totally confused.... Pin
Jarno Burger28-May-09 23:23
Jarno Burger28-May-09 23:23 
QuestionGet the last line from a constantly updating textbox Pin
The Mighty Atom26-May-09 5:21
The Mighty Atom26-May-09 5:21 
AnswerRe: Get the last line from a constantly updating textbox Pin
Luc Pattyn26-May-09 5:45
sitebuilderLuc Pattyn26-May-09 5:45 
GeneralRe: Get the last line from a constantly updating textbox Pin
The Mighty Atom26-May-09 6:59
The Mighty Atom26-May-09 6:59 
GeneralRe: Get the last line from a constantly updating textbox Pin
Luc Pattyn26-May-09 7:14
sitebuilderLuc Pattyn26-May-09 7:14 
AnswerRe: Get the last line from a constantly updating textbox Pin
Jarno Burger28-May-09 4:10
Jarno Burger28-May-09 4:10 
GeneralRe: Get the last line from a constantly updating textbox [modified] Pin
The Mighty Atom28-May-09 6:36
The Mighty Atom28-May-09 6:36 
GeneralRe: Get the last line from a constantly updating textbox Pin
DidiKunz29-May-09 4:22
DidiKunz29-May-09 4:22 
GeneralRe: Get the last line from a constantly updating textbox Pin
The Mighty Atom1-Jun-09 3:22
The Mighty Atom1-Jun-09 3:22 
GeneralRe: Get the last line from a constantly updating textbox Pin
DidiKunz1-Jun-09 8:01
DidiKunz1-Jun-09 8:01 
GeneralRe: Get the last line from a constantly updating textbox Pin
The Mighty Atom1-Jun-09 8:20
The Mighty Atom1-Jun-09 8:20 
GeneralRe: Get the last line from a constantly updating textbox Pin
DidiKunz1-Jun-09 9:54
DidiKunz1-Jun-09 9:54 
GeneralRe: Get the last line from a constantly updating textbox Pin
The Mighty Atom1-Jun-09 11:02
The Mighty Atom1-Jun-09 11:02 
GeneralRe: Get the last line from a constantly updating textbox Pin
DidiKunz1-Jun-09 20:50
DidiKunz1-Jun-09 20:50 
QuestionHow to insert image in menu bar in visual basic 2003 or 2005 Pin
alokesh_paine26-May-09 3:24
alokesh_paine26-May-09 3:24 
AnswerRe: How to insert image in menu bar in visual basic 2003 or 2005 Pin
Jon_Boy26-May-09 5:03
Jon_Boy26-May-09 5:03 
GeneralRe: How to insert image in menu bar in visual basic 2003 or 2005 Pin
alokesh_paine27-May-09 2:19
alokesh_paine27-May-09 2: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.