VAX is a line of computers made by Digital Equipment Corp [which was bought by Compaq]. The were very popular in the '80s and '90s. Many are still in use today. They were the successor to the PDP-11 line of processors.
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!) 2008, 2009 In theory, there is no difference between theory and paractice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
There is not enough information available to determine the file sending requirements.
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!) 2008, 2009 In theory, there is no difference between theory and paractice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
Last edited by Cimperiali; April 21st, 2004 at 09:26 AM.
...at present time, using mainly Net 4.0, Vs 2010
Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
all the other wonderful people who made and make Codeguru a great place.
Come back soon, you Gurus.
A pretty good link, but be aware that not all VAX's are running Open/VMS!
Most of the early machines communicated using the DECNET protocol, later this was mgrated to IP.
The biggest issue is going to be the file format, rather than the transfer mechanism. Most of the file formats were proprietary or at least poorly documented.
My firm has been involved in this issue for over 20 years, but right now there are not enough details to provide any "answers".
Feel free to contact me off list.
David.
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!) 2008, 2009 In theory, there is no difference between theory and paractice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
i will let you know what i find out. i am currently waiting on information about the VAX system(server serial & obligation id).
it looks like windows software is available to connect to the VAX.
the file i need is an ASCII format file. i have the specs and it looks like a simple ASCII file that can be created by string handling.
here is a sample:
@1 means starting at column 1
@1 Billing period(MMYY) - 4 bytes
@5 Invoice date(MMDDYY) - 6 bytes
it then goes on to @65 with other required info.
it also says that it must end with standard ASCII carriage return/line feed charactors which should be vbCRLF
remind me something related to As400...
you could have to use fixed length strings:
dim sText as string * 3
is a three byte string....
line feed and charriage return: you're correct.
it stands for chr(13)+chr(10) which indeed is VbCrlf
Have fun.
Cesare
...at present time, using mainly Net 4.0, Vs 2010
Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
all the other wonderful people who made and make Codeguru a great place.
Come back soon, you Gurus.
it looks like they use string handling to retrieve the data from the ASCII file after it arrives. i would never expected it to be this simple, but i guess that i am not finished yet!
i did not really think about fixed length strings which would be a good idea.
Bookmarks