From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 11390f,c7c122525bd25afe,start X-Google-Attributes: gid11390f,public X-Google-Thread: 10a640,c7c122525bd25afe,start X-Google-Attributes: gid10a640,public X-Google-Thread: 103376,c7c122525bd25afe,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-31 10:48:19 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: lulle4u@hotmail.com (Lulle) Newsgroups: comp.lang.ada,comp.lang.apl,comp.lang.clos Subject: Visual Basic Date: 31 Mar 2002 10:48:19 -0800 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 140.184.81.29 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1017600499 476 127.0.0.1 (31 Mar 2002 18:48:19 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 31 Mar 2002 18:48:19 GMT Xref: archiver1.google.com comp.lang.ada:21923 comp.lang.apl:2741 comp.lang.clos:199 Date: 2002-03-31T18:48:19+00:00 List-Id: How can i align text in one textbox ? I'm trying to use tabs and have some control over the spaces ( Tab (15) --> does not work) on the other hand vbTab is working but with no control over the number of spaces. for example: picBox.print "whatever" ; Tab (15); "Whatever" --> working txtBox.SelText "whatever" & vbTab & "whatever" --> working txtBox.SelText "whatever" & Tab(15) & "whatever" --> not working :( Can you please help Thanks