Click here to Skip to main content
15,899,754 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Run Process in background Pin
Christian Graus19-Dec-08 19:19
protectorChristian Graus19-Dec-08 19:19 
GeneralRe: Run Process in background Pin
Rajesh Anuhya19-Dec-08 19:24
professionalRajesh Anuhya19-Dec-08 19:24 
GeneralRe: Run Process in background Pin
Gagan.2019-Dec-08 21:51
Gagan.2019-Dec-08 21:51 
GeneralRe: Run Process in background Pin
Rajesh Anuhya19-Dec-08 22:36
professionalRajesh Anuhya19-Dec-08 22:36 
Questionactivex download problem Pin
Tabb Smith19-Dec-08 17:16
Tabb Smith19-Dec-08 17:16 
AnswerRe: activex download problem Pin
Christian Graus19-Dec-08 17:52
protectorChristian Graus19-Dec-08 17:52 
GeneralRe: activex download problem Pin
Tabb Smith21-Dec-08 12:20
Tabb Smith21-Dec-08 12:20 
QuestionLimit the movement of scrolling Picture Pin
yoyoaz7719-Dec-08 5:55
yoyoaz7719-Dec-08 5:55 
VB6: I have a picture on form and I currently have code that will allow the mousewheel scroll the picture up and down, but I am not sure how to set a limit or how to prevent the picture from scrolling out of view. Below is my code, any suggestions:


'**************************************
Private Sub ProcessMessages()Dim Message As Msg
Do While Not bCancel    
WaitMessage    
 If PeekMessage(Message, Me.hWnd, WM_MOUSEWHEEL, WM_MOUSEWHEEL, PM_REMOVE) Then        
  If Message.wParam < 0 Then             
    Picture1.Top = Picture1.Top + 240        
    Else            
    Picture1.Top = Picture1.Top - 240        
   End If    
 End If    
DoEventsLoop
End Sub
'**************************************</pre> 

<div class="ForumSig">YOYO</div>

AnswerRe: Limit the movement of scrolling Picture Pin
Dave Kreskowiak19-Dec-08 7:52
mveDave Kreskowiak19-Dec-08 7:52 
GeneralRe: Limit the movement of scrolling Picture Pin
EliottA19-Dec-08 8:53
EliottA19-Dec-08 8:53 
AnswerRe: Limit the movement of scrolling Picture Pin
Christian Graus19-Dec-08 15:28
protectorChristian Graus19-Dec-08 15:28 
QuestionComboboxes and Collections Pin
LostMonkey19-Dec-08 3:41
LostMonkey19-Dec-08 3:41 
AnswerRe: Comboboxes and Collections Pin
Christian Graus19-Dec-08 16:40
protectorChristian Graus19-Dec-08 16:40 
QuestionCreating Logon screen with SQL Connection Pin
Shrimpersfan19-Dec-08 1:17
Shrimpersfan19-Dec-08 1:17 
AnswerRe: Creating Logon screen with SQL Connection Pin
Jon_Boy19-Dec-08 1:42
Jon_Boy19-Dec-08 1:42 
GeneralRe: Creating Logon screen with SQL Connection Pin
Shrimpersfan19-Dec-08 3:00
Shrimpersfan19-Dec-08 3:00 
GeneralRe: Creating Logon screen with SQL Connection Pin
Dave Kreskowiak19-Dec-08 4:47
mveDave Kreskowiak19-Dec-08 4:47 
GeneralRe: Creating Logon screen with SQL Connection Pin
Shrimpersfan19-Dec-08 6:18
Shrimpersfan19-Dec-08 6:18 
GeneralRe: Creating Logon screen with SQL Connection Pin
Dave Kreskowiak19-Dec-08 7:48
mveDave Kreskowiak19-Dec-08 7:48 
Questionsplash screen to hold a some time to display to the mdiform Pin
jigneshDPatel19-Dec-08 0:53
jigneshDPatel19-Dec-08 0:53 
AnswerRe: splash screen to hold a some time to display to the mdiform Pin
Steven J Jowett19-Dec-08 1:18
Steven J Jowett19-Dec-08 1:18 
AnswerRe: splash screen to hold a some time to display to the mdiform Pin
Dave Kreskowiak19-Dec-08 4:43
mveDave Kreskowiak19-Dec-08 4:43 
GeneralRe: splash screen to hold a some time to display to the mdiform Pin
jigneshDPatel19-Dec-08 17:08
jigneshDPatel19-Dec-08 17:08 
GeneralRe: splash screen to hold a some time to display to the mdiform Pin
Dave Kreskowiak20-Dec-08 4:17
mveDave Kreskowiak20-Dec-08 4:17 
GeneralRe: splash screen to hold a some time to display to the mdiform Pin
jigneshDPatel21-Dec-08 16:53
jigneshDPatel21-Dec-08 16:53 

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.