Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I am using Visual Basic to align th

Status
Not open for further replies.

biggerb46

Programmer
Jul 20, 2012
7
US
I am using Visual Basic to align the text of strings which often consist of different fonts. The first part of each string consists of numerals. The second part of the string consists of Japanese characters and the third part consists of English characters.

These changes in fonts cause vertical alignment to be difficult. I need a method to ensure proper verticle alignment of the English portion of each string. In other words, I want to change this:

3.1.3.1 CPC コネクタ UNTESTED UNTESTED

3.1.4.2 バッテリチャージ (80 to 100 %) UNTESTED UNTESTED

3.1.6.4 VGA 出力試験 UNTESTED UNTESTED

3.1.8.4 ビデオオーバーレイ試験(図4) UNTESTED UNTESTED

3.1.9.3 MP3 UNTESTED UNTESTED

3.1.10.1 CPUバッテリ交換 UNTESTED UNTESTED


Into this:

3.1.3.1 CPC コネクタ UNTESTED UNTESTED

3.1.4.2 バッテリチャージ (80 to 100 %) UNTESTED UNTESTED

3.1.6.4 VGA 出力試験 UNTESTED UNTESTED

3.1.8.4 ビデオオーバーレイ試験(図4) UNTESTED UNTESTED

3.1.9.3 MP3 UNTESTED UNTESTED

3.1.10.1 CPUバッテリ交換 UNTESTED UNTESTED


I am using Visual Basic 6.5. I am trying to print the strings into a Word document.


I tried using the TextWidth() method in the Form that prints out these strings however this method is not available: I don't see it inside the list of methods of the Form's class.


I want to implement a method that will count the number of twips between each part of string before it is printed out. I could then make adjustments to the spacing between Japanese and English characters.


Is there a way to do this that does not involve the 'TextWidth' method?


Is there a declaration or code that I can add to either the Main Form or a Class Module that will allow me to use 'TextWidth' method or some other measurement function?



 
I meant to say change this:

3.1.3.1 CPC コネクタ UNTESTED UNTESTED

3.1.4.2 バッテリチャージ (80 to 100 %) UNTESTED UNTESTED

3.1.6.4 VGA 出力試験 UNTESTED UNTESTED

3.1.8.4 ビデオオーバーレイ試験(図4) UNTESTED UNTESTED

3.1.9.3 MP3 UNTESTED UNTESTED

3.1.10.1 CPUバッテリ交換 UNTESTED UNTESTED


Into this:

3.1.3.1 CPC コネクタ UNTESTED UNTESTED

3.1.4.2 バッテリチャージ (80 to 100 %) UNTESTED UNTESTED

3.1.6.4 VGA 出力試験 UNTESTED UNTESTED

3.1.8.4 ビデオオーバーレイ試験(図4) UNTESTED UNTESTED

3.1.9.3 MP3 UNTESTED UNTESTED

3.1.10.1 CPUバッテリ交換 UNTESTED UNTESTED


I am using Visual Basic 6.5. I am trying to print the strings into a Word document.


I tried using the TextWidth() method in the Form that prints out these strings however this method is not available: I don't see it inside the list of methods of the Form's class.


I want to implement a method that will count the number of twips between each part of string before it is printed out. I could then make adjustments to the spacing between Japanese and English characters.


Is there a way to do this that does not involve the 'TextWidth' method?


Is there a declaration or code that I can add to either the Main Form or a Class Module that will allow me to use 'TextWidth' method or some other measurement function?



 
I want all of the test showing "UNTESTED UNTESTES" to be vertically aligned.
 
Have you tried to use tabulations ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
>The first part of each string consists of numerals. The second part of the string consists of Japanese characters and the third part consists of English characters

How does

3.1.3.1 CPC コネクタ UNTESTED UNTESTED

fit into these criteria?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top