Click here to Skip to main content
15,914,222 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to close a form when move one to another form Pin
samarjeet sing27-Oct-07 2:10
samarjeet sing27-Oct-07 2:10 
AnswerRe: How to close a form when move one to another form Pin
yogesh_kumar_agarwal27-Oct-07 2:15
yogesh_kumar_agarwal27-Oct-07 2:15 
AnswerRe: How to close a form when move one to another form Pin
manni_n27-Oct-07 3:42
manni_n27-Oct-07 3:42 
AnswerRe: How to close a form when move one to another form Pin
Dave Kreskowiak27-Oct-07 3:51
mveDave Kreskowiak27-Oct-07 3:51 
GeneralRe: How to close a form when move one to another form Pin
The ANZAC27-Oct-07 13:38
The ANZAC27-Oct-07 13:38 
GeneralRe: How to close a form when move one to another form Pin
Dave Kreskowiak28-Oct-07 3:49
mveDave Kreskowiak28-Oct-07 3:49 
QuestionTimer Control Help Pin
SilentCodingOne27-Oct-07 1:53
SilentCodingOne27-Oct-07 1:53 
AnswerRe: Timer Control Help Pin
AliAmjad27-Oct-07 2:12
AliAmjad27-Oct-07 2:12 
If you are working under Visual Studio 2005 then you can display the Splash screen just by going to the Project properties and on Application Tab just check the box 'Enable Application Framework' and choose your Splash Screen from the Splash Screen drop down and select the startup form from the
"Startup Object" drop down. No need to use timers here. But if you are not then just add a timer control to the form set its Enabled property to 'True' change the interval to '5000' for five seconds then in the Timer's Tick event just enter the following code:

Me.Timer1.Enabled = False
Me.Hide()
Dim frm_main as new MainForm()
frm_main.Show()


Hope it helps !

AliAmjad(MCP)

GeneralRe: Timer Control Help Pin
SilentCodingOne27-Oct-07 10:47
SilentCodingOne27-Oct-07 10:47 
Questionpositioning a textbox in the AXMSFlexgrid cell Pin
aransiola27-Oct-07 0:47
aransiola27-Oct-07 0:47 
AnswerRe: positioning a textbox in the AXMSFlexgrid cell Pin
Dave Kreskowiak27-Oct-07 3:48
mveDave Kreskowiak27-Oct-07 3:48 
GeneralRe: positioning a textbox in the AXMSFlexgrid cell Pin
aransiola27-Oct-07 9:28
aransiola27-Oct-07 9:28 
GeneralRe: positioning a textbox in the AXMSFlexgrid cell Pin
Dave Kreskowiak28-Oct-07 3:47
mveDave Kreskowiak28-Oct-07 3:47 
GeneralRe: positioning a textbox in the AXMSFlexgrid cell Pin
Member 410891213-Aug-10 6:10
Member 410891213-Aug-10 6:10 
Questiongrid view control Pin
kadkir27-Oct-07 0:21
kadkir27-Oct-07 0:21 
AnswerRe: grid view control Pin
Abhijit Jana27-Oct-07 1:21
professionalAbhijit Jana27-Oct-07 1:21 
QuestionText Input Detection Pin
Absenm26-Oct-07 22:55
Absenm26-Oct-07 22:55 
AnswerRe: Text Input Detection Pin
AliAmjad27-Oct-07 2:30
AliAmjad27-Oct-07 2:30 
AnswerRe: Text Input Detection Pin
Dave Kreskowiak27-Oct-07 3:47
mveDave Kreskowiak27-Oct-07 3:47 
GeneralRe: Text Input Detection Pin
Absenm29-Oct-07 13:55
Absenm29-Oct-07 13:55 
GeneralRe: Text Input Detection Pin
Dave Kreskowiak29-Oct-07 14:38
mveDave Kreskowiak29-Oct-07 14:38 
GeneralRe: Text Input Detection Pin
Absenm29-Oct-07 15:30
Absenm29-Oct-07 15:30 
GeneralRe: Text Input Detection Pin
Dave Kreskowiak29-Oct-07 18:12
mveDave Kreskowiak29-Oct-07 18:12 
QuestionHow to generate serial hard disk? Pin
sovysim26-Oct-07 22:47
sovysim26-Oct-07 22:47 
AnswerRe: How to generate serial hard disk? Pin
Abhijit Jana27-Oct-07 1:20
professionalAbhijit Jana27-Oct-07 1:20 

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.