Login | |
|
 |
RE: Exporting to Text - 2/7/2007 12:59:46 AM
|
|
 |
|
| |
Country73
Posts: 716
Score: 8
Joined: 8/25/2004
From: USA
Status: offline
|
I'm not exactly sure what you want our assistance on? This doesn't look like an issue with VBScript, but with the application you are running (GLIFACE.EXE). You may want to look into the options of that program to see if there are any commandlines to adjust its output.
|
|
| |
|
|
|
 |
RE: Exporting to Text - 2/7/2007 3:25:49 AM
|
|
 |
|
| |
Country73
Posts: 716
Score: 8
Joined: 8/25/2004
From: USA
Status: offline
|
What happens if you manually run your "CmdLine" manually from a command line? Does it still export 14 characters per inch, or is it in 12 characters per inch? You may have to make an adjustment to the command line itself to get the results your looking for. (if possible)
|
|
| |
|
|
|
 |
RE: Exporting to Text - 2/26/2007 1:35:01 AM
|
|
 |
|
| |
ebgreen
Posts: 4613
Score: 31
Joined: 7/12/2005
Status: offline
|
Simple text files do not provide the metadata required for complex formatting like characters per inch. YOu would need to store it in a more complex file type such as a word document or a PDF I believe.
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|
| |
|
|
|
 |
RE: Exporting to Text - 2/27/2007 2:56:26 AM
|
|
 |
|
| |
Country73
Posts: 716
Score: 8
Joined: 8/25/2004
From: USA
Status: offline
|
Items in RED are optional. Replace(expression, find, replacewith, start, count, compare) Example: Dim MyString 'A binary comparison starting at the beginning of the string: MyString = Replace("XXpXXPXXp","p","Y") 'Returns "XXYXXPXXY" 'A textual comparison starting at position 3. MyString = Replace("XXpXXPXXp", "p", "Y", 3, -1, 1) 'Returns "YXXYXXY"
|
|
| |
|
|
|
|
|