Click here to Skip to main content
15,885,998 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to analyze last data from clipboard ? Pin
Mycroft Holmes14-Nov-14 11:56
professionalMycroft Holmes14-Nov-14 11:56 
Question3d walls ib vb6.0 Pin
Otekpo Emmanuel14-Nov-14 3:54
Otekpo Emmanuel14-Nov-14 3:54 
AnswerRe: 3d walls ib vb6.0 Pin
Eddy Vluggen14-Nov-14 4:03
professionalEddy Vluggen14-Nov-14 4:03 
GeneralRe: 3d walls ib vb6.0 Pin
Otekpo Emmanuel14-Nov-14 6:14
Otekpo Emmanuel14-Nov-14 6:14 
GeneralRe: 3d walls ib vb6.0 Pin
Eddy Vluggen14-Nov-14 7:25
professionalEddy Vluggen14-Nov-14 7:25 
Question3d animation Pin
Otekpo Emmanuel13-Nov-14 20:08
Otekpo Emmanuel13-Nov-14 20:08 
AnswerRe: 3d animation Pin
Richard MacCutchan13-Nov-14 22:09
mveRichard MacCutchan13-Nov-14 22:09 
GeneralRe: 3d animation Pin
Otekpo Emmanuel13-Nov-14 22:45
Otekpo Emmanuel13-Nov-14 22:45 
Yep, i tried something of this nature but couldn't meet the requirement.
Dim YGap As Long
Dim XGap as Long
Dim setHeight As Integer 'set boy2 at the rear height
Dim curY as Long' get the boy2 current y position
then on form load, i added this
YGap=Me.Height
XGap=Me.Width
on timer tick, i added this
boy2.Top = boy2.Top + 100
curY=boy2.Top
If curY <= YGap/20 Then
setHeight = 900
boy2.Height = setHeight
End If
If curY <= YGap/15 Then
setHeight = 1200
boy2.Height = setHeight
End If
If curY <= YGap/10 Then
setHeight = 1400
boy2.Height = setHeight
End If
If curY <= YGap/5 Then
setHeight = 1800
boy2.Height = setHeight
End If
then, i added this to ensure boy2 returns to his starting once he gets to the Me.ScaleHeight
If boy2.Top >= Me.ScaleHeight Then
boy2.Top = Me.ScaleTop + 500
End if
but, not working fine. Please give any idea.
GeneralRe: 3d animation Pin
Richard MacCutchan13-Nov-14 23:01
mveRichard MacCutchan13-Nov-14 23:01 
GeneralRe: 3d animation Pin
Otekpo Emmanuel13-Nov-14 23:26
Otekpo Emmanuel13-Nov-14 23:26 
GeneralRe: 3d animation Pin
Richard MacCutchan13-Nov-14 23:34
mveRichard MacCutchan13-Nov-14 23:34 
GeneralRe: 3d animation Pin
Otekpo Emmanuel13-Nov-14 23:44
Otekpo Emmanuel13-Nov-14 23:44 
QuestionI Need Some Help In Visual Basic - msflexgrid Pin
akmckd13-Nov-14 19:04
akmckd13-Nov-14 19:04 
AnswerRe: I Need Some Help In Visual Basic - msflexgrid Pin
Mycroft Holmes13-Nov-14 20:09
professionalMycroft Holmes13-Nov-14 20:09 
AnswerRe: I Need Some Help In Visual Basic - msflexgrid Pin
Bernhard Hiller13-Nov-14 20:56
Bernhard Hiller13-Nov-14 20:56 
AnswerRe: I Need Some Help In Visual Basic - msflexgrid Pin
Richard MacCutchan13-Nov-14 22:07
mveRichard MacCutchan13-Nov-14 22:07 
QuestionSync textbox movement with grid display view movement Pin
josephls13-Nov-14 7:52
josephls13-Nov-14 7:52 
AnswerRe: Sync textbox movement with grid display view movement Pin
Eddy Vluggen14-Nov-14 8:27
professionalEddy Vluggen14-Nov-14 8:27 
Questionvb.net Pin
kusuma.d13-Nov-14 0:53
kusuma.d13-Nov-14 0:53 
AnswerRe: vb.net Pin
Dave Kreskowiak13-Nov-14 2:14
mveDave Kreskowiak13-Nov-14 2:14 
AnswerRe: vb.net Pin
Richard MacCutchan13-Nov-14 2:54
mveRichard MacCutchan13-Nov-14 2:54 
AnswerRe: vb.net Pin
Sheepings13-Nov-14 4:34
professionalSheepings13-Nov-14 4:34 
QuestionI am just starting and need direction Pin
Member 1122645911-Nov-14 19:33
Member 1122645911-Nov-14 19:33 
AnswerRe: I am just starting and need direction Pin
Chris Quinn11-Nov-14 21:06
Chris Quinn11-Nov-14 21:06 
GeneralRe: I am just starting and need direction Pin
Member 1122645912-Nov-14 22:28
Member 1122645912-Nov-14 22:28 

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.