Click here to Skip to main content
15,922,894 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Passing value from combo box to textbox (urgent) Pin
vertig073012-Apr-05 16:22
vertig073012-Apr-05 16:22 
GeneralRe: Passing value from combo box to textbox (urgent) Pin
AndyYie12-Apr-05 16:26
AndyYie12-Apr-05 16:26 
GeneralListView RElational Pin
Codero12-Apr-05 14:50
Codero12-Apr-05 14:50 
GeneralRe: ListView RElational Pin
Dave Kreskowiak13-Apr-05 4:33
mveDave Kreskowiak13-Apr-05 4:33 
Generalslash screen Pin
Lisana12-Apr-05 9:58
Lisana12-Apr-05 9:58 
GeneralRe: slash screen Pin
rwestgraham12-Apr-05 10:16
rwestgraham12-Apr-05 10:16 
GeneralRe: slash screen Pin
Lisana12-Apr-05 10:43
Lisana12-Apr-05 10:43 
GeneralRe: slash screen Pin
vertig073012-Apr-05 11:29
vertig073012-Apr-05 11:29 
Create a module and use this code. Make sure you set the module as the startup program

Imports System.Threading


Module startmod
Dim threadsplash As Thread
Dim frmsplash As Form

Public Sub main()

frmsplash = New Splash
With frmsplash
.Show()
.Refresh()
End With
threadsplash = New Thread(AddressOf hidesplash)
threadsplash.Start()

Dim Form1 As New Form1
Application.Run(Form1)

End Sub

Private Sub hidesplash()

frmsplash.Opacity = 1
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.9
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.8
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.7
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.6
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.5
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.4
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Opacity = 0.3
frmsplash.Refresh()
threadsplash.Sleep(15)
frmsplash.Refresh()
frmsplash.Close()
End Sub

End Module


James Kennelly
GeneralRe: slash screen Pin
Lisana12-Apr-05 12:05
Lisana12-Apr-05 12:05 
GeneralRe: slash screen Pin
rwestgraham12-Apr-05 14:20
rwestgraham12-Apr-05 14:20 
Generalth VB in Access Pin
thetuxpenguin12-Apr-05 6:09
thetuxpenguin12-Apr-05 6:09 
GeneralRe: th VB in Access Pin
Dave Kreskowiak12-Apr-05 6:38
mveDave Kreskowiak12-Apr-05 6:38 
GeneralRe: th VB in Access Pin
thetuxpenguin12-Apr-05 7:44
thetuxpenguin12-Apr-05 7:44 
GeneralRe: th VB in Access Pin
Dave Kreskowiak12-Apr-05 7:58
mveDave Kreskowiak12-Apr-05 7:58 
GeneralRe: th VB in Access Pin
thetuxpenguin12-Apr-05 8:31
thetuxpenguin12-Apr-05 8:31 
GeneralRe: th VB in Access Pin
thetuxpenguin12-Apr-05 8:33
thetuxpenguin12-Apr-05 8:33 
GeneralRe: th VB in Access Pin
Dave Kreskowiak12-Apr-05 8:50
mveDave Kreskowiak12-Apr-05 8:50 
QuestionGetting RAM via registry? Pin
Member 108658612-Apr-05 4:50
Member 108658612-Apr-05 4:50 
AnswerRe: Getting RAM via registry? Pin
Dave Kreskowiak12-Apr-05 5:40
mveDave Kreskowiak12-Apr-05 5:40 
GeneralRe: Getting RAM via registry? Pin
Member 108658612-Apr-05 7:50
Member 108658612-Apr-05 7:50 
GeneralRe: Getting RAM via registry? Pin
Dave Kreskowiak12-Apr-05 8:03
mveDave Kreskowiak12-Apr-05 8:03 
GeneralRe: Getting RAM via registry? Pin
Member 108658612-Apr-05 8:10
Member 108658612-Apr-05 8:10 
GeneralRe: Getting RAM via registry? Pin
Dave Kreskowiak12-Apr-05 8:44
mveDave Kreskowiak12-Apr-05 8:44 
GeneralRe: Getting RAM via registry? Pin
Member 108658613-Apr-05 3:57
Member 108658613-Apr-05 3:57 
GeneralRe: Getting RAM via registry? Pin
Dave Kreskowiak13-Apr-05 5:17
mveDave Kreskowiak13-Apr-05 5: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.