Click here to Skip to main content
16,010,334 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVBscript, CreateFolder & Scheduler confusion. Pin
Member 37212832-Jul-08 7:01
Member 37212832-Jul-08 7:01 
AnswerRe: VBscript, CreateFolder & Scheduler confusion. Pin
Dave Kreskowiak2-Jul-08 7:14
mveDave Kreskowiak2-Jul-08 7:14 
GeneralRe: VBscript, CreateFolder & Scheduler confusion. Pin
Member 37212832-Jul-08 20:26
Member 37212832-Jul-08 20:26 
Questiontimer vs thread Pin
Ebube2-Jul-08 5:58
Ebube2-Jul-08 5:58 
AnswerRe: timer vs thread Pin
Dave Kreskowiak2-Jul-08 7:12
mveDave Kreskowiak2-Jul-08 7:12 
AnswerRe: timer vs thread Pin
Ebube2-Jul-08 7:15
Ebube2-Jul-08 7:15 
GeneralRe: timer vs thread Pin
Luc Pattyn2-Jul-08 7:42
sitebuilderLuc Pattyn2-Jul-08 7:42 
AnswerRe: timer vs thread Pin
KarstenK3-Jul-08 1:12
mveKarstenK3-Jul-08 1:12 
QuestionVBA/Excel Pin
torgerjl2-Jul-08 3:53
torgerjl2-Jul-08 3:53 
AnswerRe: VBA/Excel Pin
RCoate2-Jul-08 17:13
RCoate2-Jul-08 17:13 
AnswerRe: VBA/Excel Pin
Andy_L_J2-Jul-08 22:35
Andy_L_J2-Jul-08 22:35 
Questionvb6 & vb.net comparison Pin
jds12072-Jul-08 2:58
jds12072-Jul-08 2:58 
AnswerRe: vb6 & vb.net comparison Pin
Baixinho2-Jul-08 3:23
Baixinho2-Jul-08 3:23 
AnswerRe: vb6 & vb.net comparison Pin
John_Adams2-Jul-08 4:52
John_Adams2-Jul-08 4:52 
AnswerRe: vb6 & vb.net comparison Pin
Paul Conrad2-Jul-08 4:54
professionalPaul Conrad2-Jul-08 4:54 
AnswerRe: vb6 & vb.net comparison Pin
supercat92-Jul-08 5:30
supercat92-Jul-08 5:30 
VB6 is a muddled mess of a language which is saddled with oodles of quirks which were designed to make it somewhat compatible with QuickBasic and QBASIC, which were in turn designed to be compatible with the original IBM PC Cassette BASIC. Although it "looks" object-oriented, it lacks features like inheritance which are necessary to make real object-oriented programming possible. Further, as a result of its Cassette BASIC roots, many object methods have strange and bizarre variations in syntax which cannot be mimicked with user-defined functions. For example, to draw a box on the printer,
Printer.Line(10,10)-(20,20),0,BF
The use of two coordinate pairs, separated by a dash, and the use of the literal characters "BF" (block fill) without any string delimiter, are both perfectly fine syntax in an interpreted language (like Cassette Basic). They're not really any harder to parse than would be "LINE 10,10,20,20,0,2" (the "3" being "BF") and they're easier to read, but syntax line that makes it impossible to create a function that behaves like the "Line" function.
AnswerRe: vb6 & vb.net comparison Pin
sa_runner2-Jul-08 5:59
sa_runner2-Jul-08 5:59 
AnswerRe: vb6 & vb.net comparison Pin
jzonthemtn2-Jul-08 6:01
jzonthemtn2-Jul-08 6:01 
GeneralRe: vb6 & vb.net comparison Pin
Guffa2-Jul-08 13:49
Guffa2-Jul-08 13:49 
GeneralRe: vb6 & vb.net comparison Pin
jzonthemtn2-Jul-08 13:56
jzonthemtn2-Jul-08 13:56 
AnswerRe: vb6 & vb.net comparison Pin
Jay Royall2-Jul-08 6:08
Jay Royall2-Jul-08 6:08 
AnswerRe: vb6 & vb.net comparison Pin
Vimalsoft(Pty) Ltd3-Jul-08 0:54
professionalVimalsoft(Pty) Ltd3-Jul-08 0:54 
GeneralRe: vb6 & vb.net comparison Pin
Jay Royall3-Jul-08 2:41
Jay Royall3-Jul-08 2:41 
GeneralRe: vb6 & vb.net comparison Pin
Vimalsoft(Pty) Ltd3-Jul-08 3:51
professionalVimalsoft(Pty) Ltd3-Jul-08 3:51 
AnswerRe: vb6 & vb.net comparison Pin
Thomas Stockwell3-Jul-08 10:21
professionalThomas Stockwell3-Jul-08 10:21 

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.