Here is a function that writes the string that is passed and the current
time to a csv file:

Function UpdateEmailCounts(ByVal strSubject)
  Dim fso, f
  Set fso = CreateObject("Scripting.FileSystemObject")
  Set f = fso.OpenTextFile("commadelimited.csv", ForAppending, True)
  f.Write CHR(34) & strSubJect & chr(34) & "," & Now() & chr(13) & chr(10)
  f.Close
  set f = nothing
End Function


Bob Filipiak
A question not asked
  is a lost opportunity to learn.
----- Original Message ----- 
From: "peijanelaw" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 26, 2004 1:48 PM
Subject: [AspClassicAnyQuestionIsOk] convert db to textfile


> hi all,
>
> anyone has sample code or anyone can show me how to convert Microsoft
> Access database, for example from a table to a textfile? please
> kindly reply... thanks..
>
> regards,
> callisto
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>



------------------------ Yahoo! Groups Sponsor --------------------~--> 
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 

Reply via email to