Below down are the emails which i save it into a folder name myemails. I create a table with following variables of type text in microsoft access. From Text:...
... I would use Split() quite frequently or a regexp pattern. For example: aBuild = Split(sWholeMessage, "From:", 2) sFrom = Split(aBuild(1), vbCrLf, 2)(0) ...
My file name is myemails.txt How to i load it into memory Thanks, ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo!...
... Dim fso, fil, ts, sContents Set fso = Server.CreateObject("Scripting.FileSystemObject") Set fil = fso.getfile(server.mappath("myemails.txt")) Set ts =...
Sorry for the easy question, but I've got an apparent brain cramp. I anm populating a form with existing information. The information could include single or...
I run the script to import textfile but it wont print any thing Dim fso, fil, ts, sContents Set fso = Server.CreateObject("Scripting.FileSystemObject") Set fil...
Hi all, lets say i have a product table . and i would like to track the quantity in and quantity out and also the balance ata the end of the month. what is the...
ali adon
aliadon@...
Aug 3, 2006 3:44 am
11724
The way to lay out the table is to draw it on paper (or perhaps look at what you're already doing on paper). I would think that this would give you the layout...
When i run that program it not print any thing nor any error. I have a text file contains email information which i save from micorosft inbox by selecting...
Ok you have a typing error in your code... sFrom = Split(aBuild(1), vbCrLf, 2)(0) response.write(sForm) In the first line you populate a variable called...
Is it possible to put it into a loop so that it will give me all values from each email one by one. I mean (From, To, Sent, Cc, Subject, Body). I have googled ...
http://support.microsoft.com/kb/q300982/ Regards, Dave S ... From: "Ehtisham" <thereadg@...> To: <active-server-pages@yahoogroups.com> Sent: Saturday,...
I try to put into a loop but it still dont print any thing. Dim fso, fil, ts, sContents Set fso = Server.CreateObject("Scripting.FileSystemObject") Set fil =...
Hi Ehtisham, ... The following code works fine to read the From header: '// ======================================================== <% Function Test1() Dim...
Thanks for the code. When i run the code it only read the first From of the text file but there are more than one email in that file. Am i missing some thing? ...
Thanks I put it into loop. Only one problem is left how to print the body of an email.I put the word body in sPattern but it dont work. Dim fso, fil, ts,...
Hi: Can any one please help me how to i get data from the body of an email. The script fetch all of the data (From, to, cc, subject) but when i try to get data...
I need to find a new hosting company for one of my clients that hasnt been happy with the costomer service at hostcentic (which is what we used till now...) I...
I use STP Webhosting and have not had a problem with them in two years. Their customer service has always been really good for me. I had problems with M6 when...
Bluedomino has online chat for customer service and i havne't heard of any issues with them. Also, we use 1and1. Lots of bells and whistles. Service is average...
Can any one please help me what changes i made in the expression so that it search pattern in square bracket and fetch data from next line. I try to play by...
When i search some thing in yahoo and then click on print preview it shows all the pages which are in search result. But when i run my script and check the...
Salena lux
salena.rose@...
Aug 9, 2006 1:25 am
11741
What browser are you using that does that? I've tried to recreate it in FireFox (v1.5.0.6) and can't. The browser can only show for print preview the HTML that...
When data is more than one line it skip the second line in my program. Case Summary where it get data only from first line. I need help what changes i will do...
Can you try this? Dim fs, a, retstring Set fs = CreateObject("Scripting.FileSystemObject") Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False) Do...
Is it possible after i run my process i delete text files from server. I run a process to read from text files after that i want to delete these text files so ...