Prev: Form Resize
Next: Print the value in a variable
From: Jan Groshan on 4 Feb 2010 23:53 I do simple programming in qb45 basic. If I wanted to use vb5, and I want to write a simple program, what should it look like. assume all I have is x=2 and I want to print x, how do I do it. Any help would be appreciated.
From: Ralph on 5 Feb 2010 01:16 "Jan Groshan" <jangro(a)pacbell.net> wrote in message news:rq2dnQy7ofnUOfbWnZ2dnUVZ_oCdnZ2d(a)giganews.com... > I do simple programming in qb45 basic. If I wanted to use vb5, and I want > to write a simple program, what should it look like. assume all I have is > x=2 and I want to print x, how do I do it. Any help would be appreciated. > > Print to what? A file? A Form? The intermediate window? A printer? ... ??? In general it would be ... Dim x As Long : x = 2 <object>.Print x - or - Print #1, x ' print to file
|
Pages: 1 Prev: Form Resize Next: Print the value in a variable |