PC Review


Reply
Thread Tools Rate Thread

CSV Header Information

 
 
=?Utf-8?B?SGVscD8=?=
Guest
Posts: n/a
 
      3rd Nov 2006
I have an excel program that converts excel files to csv files automatically
using VBA Macros. However, I am wanting to add csv print header information
example:
%!
XGF
9999 SETBUFSIZE
(,) SETDBSEP
QSTRIP_on
(GuntherIPEP.jdt) SETJDT
(IPEP.dbm) STARTDBM

The issue is that it must insert after csv conversion and not register as an
excel record. Is there VBA macros that will accomplish this for me? If so,
what would it be?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      3rd Nov 2006
write the file yourself.

here is some starter code:

http://www.cpearson.com/excel/imptext.htm import/export text files

--
Regards,
Tom Ogilvy


"Help?" wrote:

> I have an excel program that converts excel files to csv files automatically
> using VBA Macros. However, I am wanting to add csv print header information
> example:
> %!
> XGF
> 9999 SETBUFSIZE
> (,) SETDBSEP
> QSTRIP_on
> (GuntherIPEP.jdt) SETJDT
> (IPEP.dbm) STARTDBM
>
> The issue is that it must insert after csv conversion and not register as an
> excel record. Is there VBA macros that will accomplish this for me? If so,
> what would it be?

 
Reply With Quote
 
=?Utf-8?B?SGVscD8=?=
Guest
Posts: n/a
 
      3rd Nov 2006
This is coming up as Page not found.

"Tom Ogilvy" wrote:

> write the file yourself.
>
> here is some starter code:
>
> http://www.cpearson.com/excel/imptext.htm import/export text files
>
> --
> Regards,
> Tom Ogilvy
>
>
> "Help?" wrote:
>
> > I have an excel program that converts excel files to csv files automatically
> > using VBA Macros. However, I am wanting to add csv print header information
> > example:
> > %!
> > XGF
> > 9999 SETBUFSIZE
> > (,) SETDBSEP
> > QSTRIP_on
> > (GuntherIPEP.jdt) SETJDT
> > (IPEP.dbm) STARTDBM
> >
> > The issue is that it must insert after csv conversion and not register as an
> > excel record. Is there VBA macros that will accomplish this for me? If so,
> > what would it be?

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      3rd Nov 2006
Try it again. It works ok for me.

Help? wrote:
>
> This is coming up as Page not found.
>
> "Tom Ogilvy" wrote:
>
> > write the file yourself.
> >
> > here is some starter code:
> >
> > http://www.cpearson.com/excel/imptext.htm import/export text files
> >
> > --
> > Regards,
> > Tom Ogilvy
> >
> >
> > "Help?" wrote:
> >
> > > I have an excel program that converts excel files to csv files automatically
> > > using VBA Macros. However, I am wanting to add csv print header information
> > > example:
> > > %!
> > > XGF
> > > 9999 SETBUFSIZE
> > > (,) SETDBSEP
> > > QSTRIP_on
> > > (GuntherIPEP.jdt) SETJDT
> > > (IPEP.dbm) STARTDBM
> > >
> > > The issue is that it must insert after csv conversion and not register as an
> > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > what would it be?


--

Dave Peterson
 
Reply With Quote
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      3rd Nov 2006
I just copied this from the navigation window while viewing the cited page:

http://www.cpearson.com/excel/imptext.htm

--
Regards,
Tom Ogilvy


"Help?" wrote:

> This is coming up as Page not found.
>
> "Tom Ogilvy" wrote:
>
> > write the file yourself.
> >
> > here is some starter code:
> >
> > http://www.cpearson.com/excel/imptext.htm import/export text files
> >
> > --
> > Regards,
> > Tom Ogilvy
> >
> >
> > "Help?" wrote:
> >
> > > I have an excel program that converts excel files to csv files automatically
> > > using VBA Macros. However, I am wanting to add csv print header information
> > > example:
> > > %!
> > > XGF
> > > 9999 SETBUFSIZE
> > > (,) SETDBSEP
> > > QSTRIP_on
> > > (GuntherIPEP.jdt) SETJDT
> > > (IPEP.dbm) STARTDBM
> > >
> > > The issue is that it must insert after csv conversion and not register as an
> > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > what would it be?

 
Reply With Quote
 
=?Utf-8?B?SGVscD8=?=
Guest
Posts: n/a
 
      3rd Nov 2006
Thanks, sorry. Can't seem to get to the below website and what I have is not
working.

"Dave Peterson" wrote:

> Try it again. It works ok for me.
>
> Help? wrote:
> >
> > This is coming up as Page not found.
> >
> > "Tom Ogilvy" wrote:
> >
> > > write the file yourself.
> > >
> > > here is some starter code:
> > >
> > > http://www.cpearson.com/excel/imptext.htm import/export text files
> > >
> > > --
> > > Regards,
> > > Tom Ogilvy
> > >
> > >
> > > "Help?" wrote:
> > >
> > > > I have an excel program that converts excel files to csv files automatically
> > > > using VBA Macros. However, I am wanting to add csv print header information
> > > > example:
> > > > %!
> > > > XGF
> > > > 9999 SETBUFSIZE
> > > > (,) SETDBSEP
> > > > QSTRIP_on
> > > > (GuntherIPEP.jdt) SETJDT
> > > > (IPEP.dbm) STARTDBM
> > > >
> > > > The issue is that it must insert after csv conversion and not register as an
> > > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > > what would it be?

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      3rd Nov 2006

http://support.microsoft.com/default...b;en-us;151262
Working with Sequential Access Files

http://www.applecore99.com/gen/gen029.asp


http://support.microsoft.com/support...eio/fileio.asp
http://web.archive.org/web/200404050...eio/fileio.asp
File Access with Visual BasicĀ® for Applications


--
Regards,
Tom Ogilvy


"Help?" wrote:

> Thanks, sorry. Can't seem to get to the below website and what I have is not
> working.
>
> "Dave Peterson" wrote:
>
> > Try it again. It works ok for me.
> >
> > Help? wrote:
> > >
> > > This is coming up as Page not found.
> > >
> > > "Tom Ogilvy" wrote:
> > >
> > > > write the file yourself.
> > > >
> > > > here is some starter code:
> > > >
> > > > http://www.cpearson.com/excel/imptext.htm import/export text files
> > > >
> > > > --
> > > > Regards,
> > > > Tom Ogilvy
> > > >
> > > >
> > > > "Help?" wrote:
> > > >
> > > > > I have an excel program that converts excel files to csv files automatically
> > > > > using VBA Macros. However, I am wanting to add csv print header information
> > > > > example:
> > > > > %!
> > > > > XGF
> > > > > 9999 SETBUFSIZE
> > > > > (,) SETDBSEP
> > > > > QSTRIP_on
> > > > > (GuntherIPEP.jdt) SETJDT
> > > > > (IPEP.dbm) STARTDBM
> > > > >
> > > > > The issue is that it must insert after csv conversion and not register as an
> > > > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > > > what would it be?

> >
> > --
> >
> > Dave Peterson
> >

 
Reply With Quote
 
=?Utf-8?B?SGVscD8=?=
Guest
Posts: n/a
 
      3rd Nov 2006
Finally got it! However, my programming is not accomplishing what I need. It
is outputing:
%!,XGF,9999 SETBUFSIZE,"(,) SETDBSEP",QSTRIP_on,(GuntherIPEP.jdt)
SETJDT,(IPEP.dbm)
STARTDBM,EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
TESTING,39024.68396

I need:
%!
XGF,9999 SETBUFSIZE
(,) SETDBSEP",QSTRIP_on
(GuntherIPEP.jdt) SETJDT
(IPEP.dbm) STARTDBM
EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
TESTING,39024.68396

My programming is:
Dim RowNdx As Integer
Dim ColNdx As Integer
Dim WholeLine As String
Dim FName As String

Application.ScreenUpdating = False

ColNdx = Range("A1").Column
RowNdx = Range("A1").Row
FName = "I:\06vs-EC Standard Kit Request Form\5 Daniel Huffine\Final Fully
Automated\Test new directions\CSV Header testing\FName.txt"
Open FName For Input Access Read As #1

While Not EOF(1)
Line Input #1, WholeLine
Cells(RowNdx, ColNdx).Value = WholeLine
ColNdx = ColNdx + 1

Wend
Close #1

Is their something I am doing wrong?


"Tom Ogilvy" wrote:

> I just copied this from the navigation window while viewing the cited page:
>
> http://www.cpearson.com/excel/imptext.htm
>
> --
> Regards,
> Tom Ogilvy
>
>
> "Help?" wrote:
>
> > This is coming up as Page not found.
> >
> > "Tom Ogilvy" wrote:
> >
> > > write the file yourself.
> > >
> > > here is some starter code:
> > >
> > > http://www.cpearson.com/excel/imptext.htm import/export text files
> > >
> > > --
> > > Regards,
> > > Tom Ogilvy
> > >
> > >
> > > "Help?" wrote:
> > >
> > > > I have an excel program that converts excel files to csv files automatically
> > > > using VBA Macros. However, I am wanting to add csv print header information
> > > > example:
> > > > %!
> > > > XGF
> > > > 9999 SETBUFSIZE
> > > > (,) SETDBSEP
> > > > QSTRIP_on
> > > > (GuntherIPEP.jdt) SETJDT
> > > > (IPEP.dbm) STARTDBM
> > > >
> > > > The issue is that it must insert after csv conversion and not register as an
> > > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > > what would it be?

 
Reply With Quote
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      3rd Nov 2006
I thought you said you want to write/create a csv file with your data in it,
adding hour header at the top.

Your code is reading a file and putting it into Excel?

The lower part of the cited page has code to write a file.

--
Regards,
Tom Ogilvy


"Help?" wrote:

> Finally got it! However, my programming is not accomplishing what I need. It
> is outputing:
> %!,XGF,9999 SETBUFSIZE,"(,) SETDBSEP",QSTRIP_on,(GuntherIPEP.jdt)
> SETJDT,(IPEP.dbm)
> STARTDBM,EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
> HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
> TESTING,39024.68396
>
> I need:
> %!
> XGF,9999 SETBUFSIZE
> (,) SETDBSEP",QSTRIP_on
> (GuntherIPEP.jdt) SETJDT
> (IPEP.dbm) STARTDBM
> EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
> HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
> TESTING,39024.68396
>
> My programming is:
> Dim RowNdx As Integer
> Dim ColNdx As Integer
> Dim WholeLine As String
> Dim FName As String
>
> Application.ScreenUpdating = False
>
> ColNdx = Range("A1").Column
> RowNdx = Range("A1").Row
> FName = "I:\06vs-EC Standard Kit Request Form\5 Daniel Huffine\Final Fully
> Automated\Test new directions\CSV Header testing\FName.txt"
> Open FName For Input Access Read As #1
>
> While Not EOF(1)
> Line Input #1, WholeLine
> Cells(RowNdx, ColNdx).Value = WholeLine
> ColNdx = ColNdx + 1
>
> Wend
> Close #1
>
> Is their something I am doing wrong?
>
>
> "Tom Ogilvy" wrote:
>
> > I just copied this from the navigation window while viewing the cited page:
> >
> > http://www.cpearson.com/excel/imptext.htm
> >
> > --
> > Regards,
> > Tom Ogilvy
> >
> >
> > "Help?" wrote:
> >
> > > This is coming up as Page not found.
> > >
> > > "Tom Ogilvy" wrote:
> > >
> > > > write the file yourself.
> > > >
> > > > here is some starter code:
> > > >
> > > > http://www.cpearson.com/excel/imptext.htm import/export text files
> > > >
> > > > --
> > > > Regards,
> > > > Tom Ogilvy
> > > >
> > > >
> > > > "Help?" wrote:
> > > >
> > > > > I have an excel program that converts excel files to csv files automatically
> > > > > using VBA Macros. However, I am wanting to add csv print header information
> > > > > example:
> > > > > %!
> > > > > XGF
> > > > > 9999 SETBUFSIZE
> > > > > (,) SETDBSEP
> > > > > QSTRIP_on
> > > > > (GuntherIPEP.jdt) SETJDT
> > > > > (IPEP.dbm) STARTDBM
> > > > >
> > > > > The issue is that it must insert after csv conversion and not register as an
> > > > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > > > what would it be?

 
Reply With Quote
 
=?Utf-8?B?SGVscD8=?=
Guest
Posts: n/a
 
      3rd Nov 2006
I apologize, I am not an excel VBA Programmer. I am trying to coordinate this
to help some of our business partners and the websit you pointed me to says
that this was the code to add the header information. Is there any help?

"Tom Ogilvy" wrote:

> I thought you said you want to write/create a csv file with your data in it,
> adding hour header at the top.
>
> Your code is reading a file and putting it into Excel?
>
> The lower part of the cited page has code to write a file.
>
> --
> Regards,
> Tom Ogilvy
>
>
> "Help?" wrote:
>
> > Finally got it! However, my programming is not accomplishing what I need. It
> > is outputing:
> > %!,XGF,9999 SETBUFSIZE,"(,) SETDBSEP",QSTRIP_on,(GuntherIPEP.jdt)
> > SETJDT,(IPEP.dbm)
> > STARTDBM,EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
> > HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
> > TESTING,39024.68396
> >
> > I need:
> > %!
> > XGF,9999 SETBUFSIZE
> > (,) SETDBSEP",QSTRIP_on
> > (GuntherIPEP.jdt) SETJDT
> > (IPEP.dbm) STARTDBM
> > EMPLOYER,EE_STATE,EE_ZIP,APP_STATE,GENERIC_KIT_COUNT,START_DATE,END_DATE,PIN_CODE,CEO_LETTER_OPTION,CEO_LETTER_FROM,CEO_LETTER_TITLE,CEO_LETTER_DATE,HOW_LETTER_OPTION,HOW_LETTER_DATE,HOW_LETTER_FROM,HOW_LETTER_TITLE,HOW_LETTER_DEPT,ENROLLMENT_OPTION,GROUP_MEETINGS_WILL_BE,BENEFIT_COUNSELORS_WILL_BE,WILL_BE_DISTRIBUTED,CALL_CENTER_ENROLL_TELEPHONE_NUMBER,SELF_SERVE_START_DATE,SELF_SERVE_END_DATE,ACCIDENT,CANCER,CI,ISWL,LTC,MEDSUPPORT,STD,TERM_LIFE,VIUL,GROUP_LTC,GROUP_LTD,GROUP_STD,GROUP_TERM_LIFE,WEB_ADDRESS,OTHER1,OTHER2,OTHER3,OTHER4,OTHER5
> > HEADER TESTING,,,,,,,,,,,,,,,,,,,Y,,,,,A,,,,,,,,,,,,,,,,,,,,,,,,HEADER
> > TESTING,39024.68396
> >
> > My programming is:
> > Dim RowNdx As Integer
> > Dim ColNdx As Integer
> > Dim WholeLine As String
> > Dim FName As String
> >
> > Application.ScreenUpdating = False
> >
> > ColNdx = Range("A1").Column
> > RowNdx = Range("A1").Row
> > FName = "I:\06vs-EC Standard Kit Request Form\5 Daniel Huffine\Final Fully
> > Automated\Test new directions\CSV Header testing\FName.txt"
> > Open FName For Input Access Read As #1
> >
> > While Not EOF(1)
> > Line Input #1, WholeLine
> > Cells(RowNdx, ColNdx).Value = WholeLine
> > ColNdx = ColNdx + 1
> >
> > Wend
> > Close #1
> >
> > Is their something I am doing wrong?
> >
> >
> > "Tom Ogilvy" wrote:
> >
> > > I just copied this from the navigation window while viewing the cited page:
> > >
> > > http://www.cpearson.com/excel/imptext.htm
> > >
> > > --
> > > Regards,
> > > Tom Ogilvy
> > >
> > >
> > > "Help?" wrote:
> > >
> > > > This is coming up as Page not found.
> > > >
> > > > "Tom Ogilvy" wrote:
> > > >
> > > > > write the file yourself.
> > > > >
> > > > > here is some starter code:
> > > > >
> > > > > http://www.cpearson.com/excel/imptext.htm import/export text files
> > > > >
> > > > > --
> > > > > Regards,
> > > > > Tom Ogilvy
> > > > >
> > > > >
> > > > > "Help?" wrote:
> > > > >
> > > > > > I have an excel program that converts excel files to csv files automatically
> > > > > > using VBA Macros. However, I am wanting to add csv print header information
> > > > > > example:
> > > > > > %!
> > > > > > XGF
> > > > > > 9999 SETBUFSIZE
> > > > > > (,) SETDBSEP
> > > > > > QSTRIP_on
> > > > > > (GuntherIPEP.jdt) SETJDT
> > > > > > (IPEP.dbm) STARTDBM
> > > > > >
> > > > > > The issue is that it must insert after csv conversion and not register as an
> > > > > > excel record. Is there VBA macros that will accomplish this for me? If so,
> > > > > > what would it be?

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Header Information Belin Microsoft Excel Worksheet Functions 1 29th May 2010 03:31 AM
How do I show all the header information? CAD Fiend Microsoft Outlook Discussion 2 12th Feb 2005 08:58 PM
Header Information Look Kenneth Parker Microsoft Outlook 2 6th Nov 2004 04:06 PM
Header Information Kip Microsoft Outlook 0 2nd Jul 2004 05:34 AM
Updating Header Information via VBA Brock Microsoft Excel Programming 5 2nd Jun 2004 05:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:12 AM.