Click here to Skip to main content
16,005,206 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to improve my 2D collision detection system? [modified] Pin
O.G.I.18-Mar-09 4:08
O.G.I.18-Mar-09 4:08 
AnswerRe: how to improve my 2D collision detection system? Pin
Dave Kreskowiak18-Mar-09 6:04
mveDave Kreskowiak18-Mar-09 6:04 
GeneralRe: how to improve my 2D collision detection system? Pin
O.G.I.18-Mar-09 9:18
O.G.I.18-Mar-09 9:18 
GeneralRe: how to improve my 2D collision detection system? Pin
Dave Kreskowiak18-Mar-09 10:26
mveDave Kreskowiak18-Mar-09 10:26 
AnswerRe: how to improve my 2D collision detection system? Pin
riced18-Mar-09 7:32
riced18-Mar-09 7:32 
AnswerRe: how to improve my 2D collision detection system? Pin
Luc Pattyn18-Mar-09 8:39
sitebuilderLuc Pattyn18-Mar-09 8:39 
QuestionIs there a way to bypass the form_load event of vb.net windows application? Pin
rains197918-Mar-09 1:42
rains197918-Mar-09 1:42 
AnswerRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Eddy Vluggen18-Mar-09 1:58
professionalEddy Vluggen18-Mar-09 1:58 
Do you actually need to bypass the calling of the Load-method, or do you want to execute your function instead? 'Real' bypassing is harder, but if you only want to replace the things that get executed during "Load" with an other function then this would suffice;
Form1_Load(object sender, EventArgs e)
{
    MyMethod();
    return;

    // here comes the rest of the original Form1_Load
    InitializeComponent();
    DoOtherStuffThatDoesntGetExecuted();
}


I are troll Smile | :)

GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
rains197918-Mar-09 2:49
rains197918-Mar-09 2:49 
GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Eddy Vluggen18-Mar-09 2:57
professionalEddy Vluggen18-Mar-09 2:57 
GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
rains197918-Mar-09 3:08
rains197918-Mar-09 3:08 
GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Eddy Vluggen18-Mar-09 3:19
professionalEddy Vluggen18-Mar-09 3:19 
AnswerRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Alan N18-Mar-09 4:52
Alan N18-Mar-09 4:52 
AnswerRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Dave Kreskowiak18-Mar-09 5:52
mveDave Kreskowiak18-Mar-09 5:52 
GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
rains197918-Mar-09 23:42
rains197918-Mar-09 23:42 
GeneralRe: Is there a way to bypass the form_load event of vb.net windows application? Pin
Dave Kreskowiak19-Mar-09 2:15
mveDave Kreskowiak19-Mar-09 2:15 
Questioncombine and run two projects with diffrent menus forms Pin
Member 462416918-Mar-09 0:22
Member 462416918-Mar-09 0:22 
AnswerRe: combine and run two projects with diffrent menus forms Pin
Christian Graus18-Mar-09 0:25
protectorChristian Graus18-Mar-09 0:25 
GeneralRe: combine and run two projects with diffrent menus forms Pin
Member 462416918-Mar-09 1:05
Member 462416918-Mar-09 1:05 
QuestionCalling a function in VB.Net through Visual Basic 5 Pin
rains197917-Mar-09 23:38
rains197917-Mar-09 23:38 
AnswerRe: Calling a function in VB.Net through Visual Basic 5 Pin
Christian Graus18-Mar-09 0:14
protectorChristian Graus18-Mar-09 0:14 
QuestionRe: Calling a function in VB.Net through Visual Basic 5 Pin
rains197918-Mar-09 1:39
rains197918-Mar-09 1:39 
Questionconfigure crystal report2008 with vb6.0 Pin
demetter17-Mar-09 20:05
demetter17-Mar-09 20:05 
AnswerRe: configure crystal report2008 with vb6.0 Pin
_Damian S_17-Mar-09 20:39
professional_Damian S_17-Mar-09 20:39 
GeneralRe: configure crystal report2008 with vb6.0 Pin
Mycroft Holmes17-Mar-09 23:20
professionalMycroft Holmes17-Mar-09 23: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.