473,763 Members | 4,808 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cannot access 'CDO' object.

I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was.

I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine; if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers, CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj, String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003 installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on there. I have also tried catching the exception and looking for inner exceptions; I cannot identify any further information from them than is shown above!

Thanks.
Jan 30 '06 #1
5 2138
Most likley scenario is that your machine ( server ) is not enabled to allow mail relay. You need to correct this. See your exchange settings or look in your policy documents on your local machine if this is where you are running it from.
"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote in message news:uo******** ******@TK2MSFTN GP15.phx.gbl...
I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was.

I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine; if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers, CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj, String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003 installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on there. I have also tried catching the exception and looking for inner exceptions; I cannot identify any further information from them than is shown above!

Thanks.
Jan 30 '06 #2
Unfortunately this cannot be the case; if I send the message as text instead of HTML everything works. This rules out the SMTP server as it is relaying the non-HTML messages ok.
"Newbie" <me@me.com> wrote in message news:Os******** *****@TK2MSFTNG P14.phx.gbl...
Most likley scenario is that your machine ( server ) is not enabled to allow mail relay. You need to correct this. See your exchange settings or look in your policy documents on your local machine if this is where you are running it from.
"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote in message news:uo******** ******@TK2MSFTN GP15.phx.gbl...
I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was.

I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine; if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers, CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj, String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003 installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on there. I have also tried catching the exception and looking for inner exceptions; I cannot identify any further information from them than is shown above!

Thanks.
Jan 30 '06 #3
Martins you should be able to get some more info here at:-
http://www.systemwebmail.com/
Hope that helps
Patrick

"Martin Robins" <martin at orpheus-solutions dot co dot uk> wrote in message news:eY******** ******@TK2MSFTN GP09.phx.gbl...
Unfortunately this cannot be the case; if I send the message as text instead of HTML everything works. This rules out the SMTP server as it is relaying the non-HTML messages ok.
"Newbie" <me@me.com> wrote in message news:Os******** *****@TK2MSFTNG P14.phx.gbl...
Most likley scenario is that your machine ( server ) is not enabled to allow mail relay. You need to correct this. See your exchange settings or look in your policy documents on your local machine if this is where you are running it from.
"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote in message news:uo******** ******@TK2MSFTN GP15.phx.gbl...
I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was.

I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine; if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers, CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj, String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003 installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on there. I have also tried catching the exception and looking for inner exceptions; I cannot identify any further information from them than is shown above!

Thanks.
Jan 31 '06 #4
Thanks Patrick; but as I stated in my original message, I have already been through all of the options on that site. These fixes all seem to apply to errors with the SmtpServer configuration.

My problem is more specific; the error only occurs when I am sending a message as HTML - if I send text all is well.

Martin.

"Patrick.O. Ige" <na********@hot mail.com> wrote in message news:eb******** ******@TK2MSFTN GP14.phx.gbl...
Martins you should be able to get some more info here at:-
http://www.systemwebmail.com/
Hope that helps
Patrick

"Martin Robins" <martin at orpheus-solutions dot co dot uk> wrote in message news:eY******** ******@TK2MSFTN GP09.phx.gbl...
Unfortunately this cannot be the case; if I send the message as text instead of HTML everything works. This rules out the SMTP server as it is relaying the non-HTML messages ok.
"Newbie" <me@me.com> wrote in message news:Os******** *****@TK2MSFTNG P14.phx.gbl...
Most likley scenario is that your machine ( server ) is not enabled to allow mail relay. You need to correct this. See your exchange settings or look in your policy documents on your local machine if this is where you are running it from.
"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote in message news:uo******** ******@TK2MSFTN GP15.phx.gbl...
I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was.

I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine; if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers, CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj, String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003 installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on there. I have also tried catching the exception and looking for inner exceptions; I cannot identify any further information from them than is shown above!

Thanks.
Jan 31 '06 #5
Do you have an anti-virus programs running? If so, it may be configured to
block HTML messages.

Mike.

"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote
in message news:ua******** ******@tk2msftn gp13.phx.gbl...
Thanks Patrick; but as I stated in my original message, I have already been
through all of the options on that site. These fixes all seem to apply to
errors with the SmtpServer configuration.

My problem is more specific; the error only occurs when I am sending a
message as HTML - if I send text all is well.

Martin.

"Patrick.O. Ige" <na********@hot mail.com> wrote in message
news:eb******** ******@TK2MSFTN GP14.phx.gbl...
Martins you should be able to get some more info here at:-
http://www.systemwebmail.com/
Hope that helps
Patrick

"Martin Robins" <martin at orpheus-solutions dot co dot uk> wrote in message
news:eY******** ******@TK2MSFTN GP09.phx.gbl...
Unfortunately this cannot be the case; if I send the message as text instead
of HTML everything works. This rules out the SMTP server as it is relaying
the non-HTML messages ok.
"Newbie" <me@me.com> wrote in message
news:Os******** *****@TK2MSFTNG P14.phx.gbl...
Most likley scenario is that your machine ( server ) is not enabled to allow
mail relay. You need to correct this. See your exchange settings or look in
your policy documents on your local machine if this is where you are running
it from.
"Martin Robins" <martin dot robins at technicaldirect dot co dot uk> wrote
in message news:uo******** ******@TK2MSFTN GP15.phx.gbl...
I know that this has been asked before; and not only that, I know that it
has been answered (successfully) as I myself have previously resolved the
problem (with help) - however, I cannot for the life of me remember what the
solution was.

I am trying to send an email from an ASP.net application. If I send the
email with the MailMessage.Bod yFormat = MailFormat.Text then it sends fine;
if I set MailMessage.Bod yFormat = MailFormat.Html then I get the following
exception:
COMException (0x80040605): Unknown Error]

[TargetInvocatio nException: Exception has been thrown by the target of an
invocation.]
System.RuntimeT ype.InvokeDispM ethod(String name, BindingFlags invokeAttr,
Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture,
String[] namedParameters ) +0
System.RuntimeT ype.InvokeMembe r(String name, BindingFlags invokeAttr,
Binder binder, Object target, Object[] args, ParameterModifi er[] modifiers,
CultureInfo culture, String[] namedParameters ) +473
System.Type.Inv okeMember(Strin g name, BindingFlags invokeAttr, Binder
binder, Object target, Object[] args) +29
System.Web.Mail .LateBoundAcces sHelper.SetProp (Type type, Object obj,
String propName, Object propValue)
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String
propName, Object propValue)

[HttpException (0x80004005): Could not access 'CDO.Message' object.]
System.Web.Mail .LateBoundAcces sHelper.SetProp (Object obj, String
propName, Object propValue)
System.Web.Mail .CdoSysHelper.S end(MailMessage message)
System.Web.Mail .SmtpMail.Send( MailMessage message)
My code is simple:
// Prepare the message to be sent ...
MailMessage mailMessage = new MailMessage();
mailMessage.To = "martin.robins@ ..."; // Changed to avoid spam
mailMessage.Fro m = "emails@... "; // Changed to avoid spam
mailMessage.Sub ject = "My email";
mailMessage.Bod yFormat = MailFormat.Html ;
mailMessage.Bod y = "<html><body>We lcome<P>New line text<BR>Another
line</P></body></html>";
SmtpMail.SmtpSe rver = "MyServer";
SmtpMail.Send(m ailMessage);
I am using Framework 1.1 on Windows/XP Pro - I also have Office 2003
installed (I seem to recall that this is relevant)

All help gratefully accepted. I have already tried the usual candidates (MS
Knowledgebase, systemwebmail.c om etc.) and I cannot find the answer on
there. I have also tried catching the exception and looking for inner
exceptions; I cannot identify any further information from them than is
shown above!

Thanks.

Feb 1 '06 #6

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

Similar topics

4
9290
by: Thys Brits | last post by:
Hi, I'm using the System.Web.Mail class to send an e-mail from my ASP.Net application, but when sending the e-mail, I'm getting the above error. It seems to be because I have Office XP installed, and the version of CDO is replaced by this installation. I haven't been able to find this error anywhere on any MS site. Anyone have a clue on how to then actually send the e-mail? Thanks
1
3207
by: Carol | last post by:
Hi, I am using VB.NET2003 on a Windows XP. I tried to write a simple program to send email with attachment (see below for the code). I add reference to "Microsoft CDO 1.21 library" and "Microsoft CDO for Windows2000library". It was compiled successfully. But I got run-time error message "Can not access 'CDO.Message' object". Did I miss something for XP here like PIA of CDO?? Thank you for your input!
2
7273
by: Desmond | last post by:
Hi, I would really appreciate if somebody could give some advise on this. I've a ASP.NET application that is supposed to send emails and it is tested to be working well on IIS 5.0 and tested working in .NET Framework 1.0/1.1. Recently this is ported over to IIS 6.0 using .NET Framework 1.1 and the error "Could Not Access CDO.Message object" is encountered. I suspect it could be due to the low privilege asp.net
0
1201
by: Jacob Anderson | last post by:
Hello In my ASP.NET application and other windows services that access the CDO.Message object via the System.Web.Mail namespace, I often get the "Could not access the CDO.Message object" message. Just recenly after upgrading the Windows Server 2003 system with a new security update from Microsoft, I've noticed that none of the System.Web.Mail.SmtpServer access is working Does anyone know if/where there is a configuration tool for...
1
2396
by: gamorgan | last post by:
I am having trouble with mail attachments when executing mail.send(message). The mail attachment is fine if it is an RTF, but as soon as i use JPEG or Doc then i get the error of Cannot access CDO Message Object. I have tried adding Header (message.headers.add("Content-Transfer-Encoding", "base64") and also when attaching the file i use message.attachments.add(New MailAttachment(path, mailencoding.base64), as per looking through
5
2456
by: Sean | last post by:
Hi... I want to use the macro/sendobject (or any other procedure) to send the contents of a table (very small, ~5 rows/columns) as an Outlook message body, not as an attachment. Access 2000 will not allow "Send To Mail Recipient" (as opposed to "send as attachment") for tables. Needless to say, every other MS application (Word, Excel, etc) let's me send anything I want as a message body. Outlook lets me import anything as a message...
6
1277
by: Martin Robins | last post by:
I know that this has been asked before; and not only that, I know that it has been answered (successfully) as I myself have previously resolved the problem (with help) - however, I cannot for the life of me remember what the solution was. I am trying to send an email from an ASP.net application. If I send the email with the MailMessage.BodyFormat = MailFormat.Text then it sends fine; if I set MailMessage.BodyFormat = MailFormat.Html then I...
12
3939
by: Dave G | last post by:
Apologies if this has been covered before - I couldn't find it. I currently use ASPEmail to create and send HTML emails from an Access database. The text is personalised and includes embedded graphics, eg logos and even the recipients photo. Note that everything is embedded, no attachments are sent. ASPEmail works a treat but is very long winded to create. The email designs come to me as finished HTML but I have to extract the source and...
0
1344
by: Dhananjay | last post by:
Hi All, I want to develop one application in vb.net for exchange 2000. I tried to add one contact with the code snippet below. The same logic is there for appointment on Microsoft's site. (I added Microsoft CDO exchange library for 2000 & activex data object 2.5 reference to the project) Dim sURL As String sURL = "http://sbsserver/Exchange/trial/contacts"
0
9386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10144
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9937
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9822
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8821
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7366
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3917
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2793
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.