473,327 Members | 1,920 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

email body contains bad characters

I have created a side application in VB.NET which reads
rows from a DB and builds an email message.

when i have a long string the the mailmessage.body or the
mailmessage, it puts in an "!<linefeed><space>" at about
every 980th space. I have confirmed that these characters
are not in the string or the message body before the email
is sent. Has anyone seen this or have any thoughts?

Thanks
Mike
Jul 21 '05 #1
6 3426
Hi Mike,

I can not reproduce the problem, when I test to send a string from a txt
file about 40kb.

1.You may try to send the mail via another smtp server to see if the
problem persists.
2. You may try to send a string which is not retrieve from the DB, e.g. you
may get it from a txt file, to see if the problem persists.
if yes, I hope you can post the code and the test txt file which will
become the mail.body for me to reproduce the problem on my machine.
3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107789
NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which reads
rows from a DB and builds an email message.

when i have a long string the the mailmessage.body or the
mailmessage, it puts in an "!<linefeed><space>" at about
every 980th space. I have confirmed that these characters
are not in the string or the message body before the email
is sent. Has anyone seen this or have any thoughts?

Thanks
Mike


Jul 21 '05 #2
Hi Peter, thanks for the quick reply and the suggestions.
I tried using a hard coded string and a different web
server and still recveived the same results. However i
stumbled on a solution to the problem by adding a VbCrLf
to the end of the line. Let me give you a bit of backgroud
on what i am doing here:

This app will read rows from a table which represent
individual items. There may be more than one row per
email. This application, a windows service built in VB,
takes the SQLDataReader and reads every in a While
Datareader.Read loop. In each iteration, a MailMessage
object is created with a header and individual line
representing the data. It then attempts to add this
mailmessage to a hash, using a key based on the email
address. If it fails the add because it already exist in
the hash, we take the datastring and append it to the end
of the mailmessage.body of the existing item in the hash.

previously we only had one CrLf at the end of the add to
the body of the message. but now when i put in another
crlf at the end of the string itself, it seems to work.

Sorry for the long-winded explanation. I would like you to
see the code, but i will have to email it to you: i cant
post this material to a newsgroup.

thanks
Mike

-----Original Message-----
Hi Mike,

I can not reproduce the problem, when I test to send a string from a txtfile about 40kb.

1.You may try to send the mail via another smtp server to see if theproblem persists.
2. You may try to send a string which is not retrieve from the DB, e.g. youmay get it from a txt file, to see if the problem persists.if yes, I hope you can post the code and the test txt file which willbecome the mail.body for me to reproduce the problem on my machine.3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107789NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which reads
rows from a DB and builds an email message.

when i have a long string the the mailmessage.body or themailmessage, it puts in an "!<linefeed><space>" at about
every 980th space. I have confirmed that these charactersare not in the string or the message body before the emailis sent. Has anyone seen this or have any thoughts?

Thanks
Mike


.

Jul 21 '05 #3
SMTP has a defined limit of 76 characters per line. Some mail
servers/gateways will not accept your mail if this line length is not
enforced. If you want your e-mail to look better you should add your own
breaks when creating the text this will make sure the breaks are on the
correct lines. Another option is to use quoted-printable encoding which
will break the lines for you.

Feel free to see:
http://www.freesmtp.net
"Mike" <mi************@linedata.com> wrote in message
news:0c****************************@phx.gbl...
Hi Peter, thanks for the quick reply and the suggestions.
I tried using a hard coded string and a different web
server and still recveived the same results. However i
stumbled on a solution to the problem by adding a VbCrLf
to the end of the line. Let me give you a bit of backgroud
on what i am doing here:

This app will read rows from a table which represent
individual items. There may be more than one row per
email. This application, a windows service built in VB,
takes the SQLDataReader and reads every in a While
Datareader.Read loop. In each iteration, a MailMessage
object is created with a header and individual line
representing the data. It then attempts to add this
mailmessage to a hash, using a key based on the email
address. If it fails the add because it already exist in
the hash, we take the datastring and append it to the end
of the mailmessage.body of the existing item in the hash.

previously we only had one CrLf at the end of the add to
the body of the message. but now when i put in another
crlf at the end of the string itself, it seems to work.

Sorry for the long-winded explanation. I would like you to
see the code, but i will have to email it to you: i cant
post this material to a newsgroup.

thanks
Mike

-----Original Message-----
Hi Mike,

I can not reproduce the problem, when I test to send a

string from a txt
file about 40kb.

1.You may try to send the mail via another smtp server to

see if the
problem persists.
2. You may try to send a string which is not retrieve

from the DB, e.g. you
may get it from a txt file, to see if the problem

persists.
if yes, I hope you can post the code and the test txt

file which will
become the mail.body for me to reproduce the problem on

my machine.
3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107789NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which reads
rows from a DB and builds an email message.

when i have a long string the the mailmessage.body or themailmessage, it puts in an "!<linefeed><space>" at about
every 980th space. I have confirmed that these charactersare not in the string or the message body before the emailis sent. Has anyone seen this or have any thoughts?

Thanks
Mike


.

Jul 21 '05 #4
Hi Mike,

I agree with Bill's suggestion. So that I suggest you change another smtp
server.
If you want to email to me, you may email to my email address with the
"online" omitted.

I look forward to hearing from you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "Mike" <mi************@linedata.com>
Sender: "Mike" <mi************@linedata.com>
References: <56****************************@phx.gbl> <kH**************@cpmsftngxa06.phx.gbl>Subject: RE: email body contains bad characters
Date: Wed, 10 Sep 2003 05:42:40 -0700
Lines: 101
Message-ID: <0c****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN3mQXECbRgzfmxThykjnjzUL1n1Q==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107927
NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.public.dotnet.general

Hi Peter, thanks for the quick reply and the suggestions.
I tried using a hard coded string and a different web
server and still recveived the same results. However i
stumbled on a solution to the problem by adding a VbCrLf
to the end of the line. Let me give you a bit of backgroud
on what i am doing here:

This app will read rows from a table which represent
individual items. There may be more than one row per
email. This application, a windows service built in VB,
takes the SQLDataReader and reads every in a While
Datareader.Read loop. In each iteration, a MailMessage
object is created with a header and individual line
representing the data. It then attempts to add this
mailmessage to a hash, using a key based on the email
address. If it fails the add because it already exist in
the hash, we take the datastring and append it to the end
of the mailmessage.body of the existing item in the hash.

previously we only had one CrLf at the end of the add to
the body of the message. but now when i put in another
crlf at the end of the string itself, it seems to work.

Sorry for the long-winded explanation. I would like you to
see the code, but i will have to email it to you: i cant
post this material to a newsgroup.

thanks
Mike

-----Original Message-----
Hi Mike,

I can not reproduce the problem, when I test to send a

string from a txt
file about 40kb.

1.You may try to send the mail via another smtp server to

see if the
problem persists.
2. You may try to send a string which is not retrieve

from the DB, e.g. you
may get it from a txt file, to see if the problem

persists.
if yes, I hope you can post the code and the test txt

file which will
become the mail.body for me to reproduce the problem on

my machine.
3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gblmicrosoft.public.dotnet.general:107789NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which reads
rows from a DB and builds an email message.

when i have a long string the the mailmessage.body orthemailmessage, it puts in an "!<linefeed><space>" at about
every 980th space. I have confirmed that thesecharactersare not in the string or the message body before theemailis sent. Has anyone seen this or have any thoughts?

Thanks
Mike


.


Jul 21 '05 #5
I think it did have something to do with the 76 characters
per line limit. I was inserting my own line breaks, but
somewhere around the 85th character.

Thanks to everyone who helped out with this one.

Mike
-----Original Message-----
Hi Mike,

I agree with Bill's suggestion. So that I suggest you change another smtpserver.
If you want to email to me, you may email to my email address with the"online" omitted.

I look forward to hearing from you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Mike" <mi************@linedata.com>
Sender: "Mike" <mi************@linedata.com>
References: <56****************************@phx.gbl>

<kH**************@cpmsftngxa06.phx.gbl>
Subject: RE: email body contains bad characters
Date: Wed, 10 Sep 2003 05:42:40 -0700
Lines: 101
Message-ID: <0c****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN3mQXECbRgzfmxThykjnjzUL1n1Q==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107927NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.public.dotnet.general

Hi Peter, thanks for the quick reply and the suggestions.I tried using a hard coded string and a different web
server and still recveived the same results. However i
stumbled on a solution to the problem by adding a VbCrLf
to the end of the line. Let me give you a bit of backgroudon what i am doing here:

This app will read rows from a table which represent
individual items. There may be more than one row per
email. This application, a windows service built in VB,
takes the SQLDataReader and reads every in a While
Datareader.Read loop. In each iteration, a MailMessage
object is created with a header and individual line
representing the data. It then attempts to add this
mailmessage to a hash, using a key based on the email
address. If it fails the add because it already exist in
the hash, we take the datastring and append it to the endof the mailmessage.body of the existing item in the hash.
previously we only had one CrLf at the end of the add to
the body of the message. but now when i put in another
crlf at the end of the string itself, it seems to work.

Sorry for the long-winded explanation. I would like you tosee the code, but i will have to email it to you: i cant
post this material to a newsgroup.

thanks
Mike

-----Original Message-----
Hi Mike,

I can not reproduce the problem, when I test to send a

string from a txt
file about 40kb.

1.You may try to send the mail via another smtp server to
see if the
problem persists.
2. You may try to send a string which is not retrieve

from the DB, e.g. you
may get it from a txt file, to see if the problem

persists.
if yes, I hope you can post the code and the test txt

file which will
become the mail.body for me to reproduce the problem on

my machine.
3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE

V5.50.4910.0300Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl

microsoft.public.dotnet.general:107789
NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which readsrows from a DB and builds an email message.

when i have a long string the the mailmessage.body or

the
mailmessage, it puts in an "!<linefeed><space>" at aboutevery 980th space. I have confirmed that these

characters
are not in the string or the message body before the

email
is sent. Has anyone seen this or have any thoughts?

Thanks
Mike
.


.

Jul 21 '05 #6
I think it did have something to do with the 76 characters
per line limit. I was inserting my own line breaks, but
somewhere around the 85th character.

Thanks to everyone who helped out with this one.

Mike
-----Original Message-----
Hi Mike,

I agree with Bill's suggestion. So that I suggest you change another smtpserver.
If you want to email to me, you may email to my email address with the"online" omitted.

I look forward to hearing from you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Mike" <mi************@linedata.com>
Sender: "Mike" <mi************@linedata.com>
References: <56****************************@phx.gbl>

<kH**************@cpmsftngxa06.phx.gbl>
Subject: RE: email body contains bad characters
Date: Wed, 10 Sep 2003 05:42:40 -0700
Lines: 101
Message-ID: <0c****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcN3mQXECbRgzfmxThykjnjzUL1n1Q==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:107927NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
X-Tomcat-NG: microsoft.public.dotnet.general

Hi Peter, thanks for the quick reply and the suggestions.I tried using a hard coded string and a different web
server and still recveived the same results. However i
stumbled on a solution to the problem by adding a VbCrLf
to the end of the line. Let me give you a bit of backgroudon what i am doing here:

This app will read rows from a table which represent
individual items. There may be more than one row per
email. This application, a windows service built in VB,
takes the SQLDataReader and reads every in a While
Datareader.Read loop. In each iteration, a MailMessage
object is created with a header and individual line
representing the data. It then attempts to add this
mailmessage to a hash, using a key based on the email
address. If it fails the add because it already exist in
the hash, we take the datastring and append it to the endof the mailmessage.body of the existing item in the hash.
previously we only had one CrLf at the end of the add to
the body of the message. but now when i put in another
crlf at the end of the string itself, it seems to work.

Sorry for the long-winded explanation. I would like you tosee the code, but i will have to email it to you: i cant
post this material to a newsgroup.

thanks
Mike

-----Original Message-----
Hi Mike,

I can not reproduce the problem, when I test to send a

string from a txt
file about 40kb.

1.You may try to send the mail via another smtp server to
see if the
problem persists.
2. You may try to send a string which is not retrieve

from the DB, e.g. you
may get it from a txt file, to see if the problem

persists.
if yes, I hope you can post the code and the test txt

file which will
become the mail.body for me to reproduce the problem on

my machine.
3. What Mail client did you use?

I will appreciate your effort.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "mike" <mi************@linedata.com>
Sender: "mike" <mi************@linedata.com>
Subject: email body contains bad characters
Date: Tue, 9 Sep 2003 07:59:16 -0700
Lines: 11
Message-ID: <56****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE

V5.50.4910.0300Thread-Index: AcN24vCRbEaUVCSkTFi7S5KYVpNGyA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl

microsoft.public.dotnet.general:107789
NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

I have created a side application in VB.NET which readsrows from a DB and builds an email message.

when i have a long string the the mailmessage.body or

the
mailmessage, it puts in an "!<linefeed><space>" at aboutevery 980th space. I have confirmed that these

characters
are not in the string or the message body before the

email
is sent. Has anyone seen this or have any thoughts?

Thanks
Mike
.


.

Jul 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: dave | last post by:
Hi There Is there any how can we attach html page into email body by just encoding url ? something like with oMsg .From="blah blah blah" .To="abc@xyz.com" .body=www.mysite.com/default.htm...
16
by: TJO | last post by:
I am trying to pre populate an email body using javascript. I cannot figure out how to control the carraige returns for the text. The standard \r\n is not working. Is there another technique I...
4
by: Merlin | last post by:
Hi there, I would like to check if a string is a valid zip code via Javascript. Length and existents are already checked. How can I find out if the string contains characters other than...
2
by: William Gower | last post by:
I am creating an email message to be sent from a web page. How do I embed variables like strFirstName, strLastName etc. into the body I would like it to say. Last Name : strLastName ...
6
by: mike | last post by:
I have created a side application in VB.NET which reads rows from a DB and builds an email message. when i have a long string the the mailmessage.body or the mailmessage, it puts in an...
0
by: RickVidallon | last post by:
Missing or Truncated Body Text in Email Application - 2 Strange Examples... There is no earthly reason why this is happening! EXAMPLES HERE: http://65.36.227.70/actmailer/ We have a...
1
by: salad | last post by:
I can store in a a hyperlink like this ClickMe#http://www.test.com in Access ClickMe is the display text, http://www.test.com the address. Is it possible, using SendObject, to send this...
2
by: =?Utf-8?B?UGF1bA==?= | last post by:
Hi, I am creating emails dynamically using C# and would like to place a hyperlink in the email body before sending it out. I added the text for what I thought was a hyperlink but the email just...
9
by: Aslam Shah | last post by:
I have a form with 150 checkboxes. Need to send email with the Checked ones usng ASP. But i am unable to figure a simple way to do it. All i can understand is getting their values one by one and...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.