|
-
Jul 14th, 2000, 11:03 AM
#1
Thread Starter
Addicted Member
Just kidding.
I am just checking if anyone cares about this lovely language.
Regards,
-
Jul 14th, 2000, 12:22 PM
#2
Member
-
Jul 14th, 2000, 04:40 PM
#3
Hyperactive Member
-
Jul 19th, 2000, 02:17 AM
#4
Member
-
Jul 19th, 2000, 03:14 AM
#5
Phew thought all those vb books were going to waste
-
Jul 19th, 2000, 03:03 PM
#6
Lively Member
re: discontinue of vb
thought the last 18 mo's were wasted & gonna have to learn c language(don't want to)
Don't go away mad, just go away.
Bam-Bam
-
Jul 19th, 2000, 03:15 PM
#7
Addicted Member
you may have the chance to Bam_BamR
in the new VB7, it will contain more ObjectOriented stuff, that most programers went to VC++ to use, it'll contain polymorphism, inheiritance, etc, oh and even True MultiThreading, no more Woe of the VC++ programmers trying to get around VB's weak appartment threading model, also VB7 will have some of the standard C/C++ Coding(unsure of this one) but in other words, Microsoft is trying to bring the gap between VC++ and VB together, the goal of course is to have the increased ability of VC++, but have the highlevel easy to use IDE of Visual Basic.
-
Jul 19th, 2000, 03:27 PM
#8
Lively Member
Re: you may have the chance to Bam_BamR
Originally posted by kb244
in the new VB7, it will contain more ObjectOriented stuff, that most programers went to VC++ to use, it'll contain polymorphism, inheiritance, etc, oh and even True MultiThreading, no more Woe of the VC++ programmers trying to get around VB's weak appartment threading model, also VB7 will have some of the standard C/C++ Coding(unsure of this one) but in other words, Microsoft is trying to bring the gap between VC++ and VB together, the goal of course is to have the increased ability of VC++, but have the highlevel easy to use IDE of Visual Basic.
cool, but when is the latest coming out?? oh any recommendations on a book for learning SQL use in vb?
Don't go away mad, just go away.
Bam-Bam
-
Jul 19th, 2000, 03:31 PM
#9
Addicted Member
I know the time frame for release is anywhere in the Fall-Winter of 2000, and maybe spring of 2001, but been rumored it'll be out before october.
-
Jul 19th, 2000, 03:36 PM
#10
I think VB7 is gonna be awesome 
but I still recomend you learn C++, because C++ can do more stuff than Vb will ever be able to do(ok, not sure about this).
I am learning C++ right now and i am loving it, but I am kind of pissed at the compiler 
VC++ IDE is hard to use.... but I'll get used to it...
-
Jul 19th, 2000, 03:42 PM
#11
Addicted Member
I knew more C++ than VB when I Started this job, basically if you can learn c++ you can learn just about any other language becuase C++ Does almost everything possible with a programming language, also I would learn on something more simple, like Borland C++ 4.5 for windows, its a basic type in, run, etc, I would try to find a book that teaches you the Standard, rather than learning on a specific IDE, that way you can write C++ on almost all compilers (some of the older ones dont support the standard)
-
Jul 19th, 2000, 04:33 PM
#12
Frenzied Member
Yeah, I don't like VC++ too much because it tries to force you into MFC programming, which I don't wanna do. If I want that kind of functionality I'll use VB. I wanna do stuff in C++ directly and all the books and stuff say to do it through MFC. but that way I'm not really learning anything about Windows etc. Just about MFC.
-
Jul 19th, 2000, 04:40 PM
#13
C++ isnt the easiest language in the world(Vb is ) but its pretty simple, I think the hardest thing for ME is learning how to use the compiler (MSVC++ 6.0) after a year of using VB its really hard.
-
Jul 19th, 2000, 04:53 PM
#14
Addicted Member
For me, I did alot of dos programming, then went into C++ in Dos, and in a win 3.1 Compiler(borland C++ 4.5) then did Delphi for a lil while, then VB, then VC++ again, you can use VC++ without using the MFC, if you try use it's wizard then yes it's going to contain MFC.
-
Jul 20th, 2000, 12:03 AM
#15
Hyperactive Member
VB7 looks cool but it still doesnt have unary operators 
Doesnt anyone else think this would be useful?
instead of:
x = x + 1
you could just use
x++
"People who think they know everything are a great annoyance to those of us who do."
-
Jul 20th, 2000, 12:15 AM
#16
NOONE you are so right man
How about
Code:
iNumber += 1
iNumber -= 1
sName = sFirstName
sName := " " & sLastname
Stanadard Universe programming
Mind you have just finished claiming you shouldn't use the Me command over in VB General Section. Hmmmm...maybe should rethink that one
-
Jul 20th, 2000, 12:26 AM
#17
Hyperactive Member
All I want for Christmas is the ability to write a VB app that can be only 128k in size and doesn't need a 3.2MB runtime file to be included with it.
If I got that I would be happy
-
Jul 20th, 2000, 06:15 AM
#18
Addicted Member
i think my cd database app is under 128k when compile and it doesnt need a runtime but it needs a 1mb .mdb file
Reality is an illusion caused by by lack of drugs
Is this real or am i just having a dream?
-
Jul 20th, 2000, 09:15 AM
#19
Thread Starter
Addicted Member
Hmmm.
Harrild, no matter what you do you will always need at least vb runtime dll, this file is not distributed with Windows.
-
Jul 20th, 2000, 09:26 AM
#20
Addicted Member
but if they are usual downloaders they'll have it already, in anycase, if you look at it this way, the UI on your forms and what not are defined in the runtime, if you look at 90% of your commands (press F2) you'll see that it's located in the vb runtime, this way you only need 1 Runtime file, rather than 100 large files without runtimes. it's what makes the vB appz so small. Then again, could be similar to C++, and only compile into the exe, what it uses. but still it wouldnt be as small as 12K.
-
Jul 20th, 2000, 10:51 AM
#21
Gen-X:
The VB Runtime File is only 1.3mb, but 1.3mb is still frigin huge, so thats why I am learning C++, I hate that damn runtime file, I have to include installations with all of my programs, even little ones, if I have a 2kb app I would still have to make it 1.3mb + .002mb so they could run the damn thing!
well, its pretty hard to make a 2kb app,
I just tested, I made a program, with no title bar, it was about 20x40 pixels big, and it had three lines of code
Code:
Private Sub Form_Click()
Unload Me
End Sub
it is 16 KB!!!!!
-
Jul 20th, 2000, 10:56 AM
#22
Addicted Member
you can create a form, remove the Vb runtime from the Reference, compile it using no commands from the vbruntime, and you would still get kind of large, because VB at least compiles the Visual interface natively, you dont think that form is just a stored picture do you?
-
Jul 20th, 2000, 11:09 AM
#23
Thread Starter
Addicted Member
I overheard something that MS was going to include VB runtime files with every copy of Win2K but i don't think it is going to happen.
I mean i don't care about 1.3Mb extra to my app, nobody is distributing their apps on floppy anymore, so why would you care about that?
-
Jul 20th, 2000, 11:16 AM
#24
Addicted Member
If you least look at it in the beneficial perspective, even VC++ apps have a bunch of runtimes, if you use the MFC? it saves disk space as much as you think compared to a single application.
-
Jul 20th, 2000, 01:12 PM
#25
Fanatic Member
Originally posted by Gen-X
All I want for Christmas is the ability to write a VB app that can be only 128k in size and doesn't need a 3.2MB runtime file to be included with it.
If I got that I would be happy
I like that too. I want to be able to send a simple exe to a friend without using a bunch of require files. Do you think this will ever happen?
In C++, can you write an exe stand alone with out requires dll files like VB?
Originally posted by Noone
VB7 looks cool but it still doesnt have unary operators
Doesnt anyone else think this would be useful?
instead of:
x = x + 1
you could just use
x++
I don't know C++, but do know a little bit of Java. In Java, "x++" can also be use too. Is Java and C++ similar?
Chemically Formulated As:
Dr. Nitro
-
Jul 20th, 2000, 02:55 PM
#26
Thread Starter
Addicted Member
I saw something about MS adding unary operators (++,--) to VB 7.0 but i just can't remember where.
-
Jul 20th, 2000, 09:53 PM
#27
Hyperactive Member
Yes, Java is based on C++ the syntax of both are very similar.
"People who think they know everything are a great annoyance to those of us who do."
-
Jul 21st, 2000, 09:10 AM
#28
Addicted Member
Got me
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|