Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
lemonade.
Alright ;),
im going to use it for random things.
lol i understand =)
im still updating it , it will be done soon =D!
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
Laz-low
Code:
Private Sub Command1_Click()
Form2.Show
Form1.Hide
End Sub
No way lol
That just hides it, it doesn't like close that window
Code:
Private Sub Command1_Click()
Unload Form1 'Closes Form1 altogether =]
Form2.Show 'Shows Form2
End Sub
:)
~ RascaL
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
I suggest you switch over to a real programming language before your ability to learn a real language is completely ruined.
It might already by too late.
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
Pieman
I suggest you switch over to a real programming language before your ability to learn a real language is completely ruined.
It might already by too late.
100% agreed,
try vb.net, c++, c#
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
RascaL
No way lol
That just hides it, it doesn't like close that window
Code:
Private Sub Command1_Click()
Unload Form1 'Closes Form1 altogether =]
Form2.Show 'Shows Form2
End Sub
:)
~ RascaL
All you've basically done is just add Unload and remove the .hide part, that's nothing special.
And I agree with Superfun, try learning C++ or something, it's similar to Javascript (?) and it can do alot more.
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
Laz-low
All you've basically done is just add Unload and remove the .hide part, that's nothing special.
And I agree with Superfun, try learning C++ or something, it's similar to Javascript (?) and it can do alot more.
if its similar to javascript then it will be extremely easy
the only problem is the download size :S
ill probably download it when im away from my computer today =)
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
One of the fastest? Nope.
If you want it fast, program it in C, and use an Intel compiler.
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
None would be fast..it depends
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
Hidden
compared to my firefox it is much faster, probably cause it doesn't load the flash and other stuff
and what is Intel Compiler?
Yes, thats because firefox is full of plugins and added features. So, yours will be faster indeed, but with less functionality.
How do you use it btw, using the IE engine?
The intel compiler transforms code (C/C++ or fortran) into machine code, this happens unnoticed in VB6. Intel is one of the best performing compilers at the moment.
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
Quote:
Originally Posted by
Daevius
Yes, thats because firefox is full of plugins and added features. So, yours will be faster indeed, but with less functionality.
How do you use it btw, using the IE engine?
The intel compiler transforms code (C/C++ or fortran) into machine code, this happens unnoticed in VB6. Intel is one of the best performing compilers at the moment.
It doesn't load flash images and stuff
like runescape etc
I guess thats just default settings , probably in the shdocwv.dll (or something)
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!
how do you save the files properly cause i can't open them after i save it and i can't make it a .exe in C :(
Re: [VB6]My first application <3 a WEB Browser!-one of the fastest!