473,385 Members | 1,766 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,385 software developers and data experts.

How to run DLL?

I've created a windows class library project in MS Visual Studio Beta1. When
I try to run the project, I get a popup with this:

A project with an Output Type of Class Library cannot be started directly.
In order to debug this project, go to the Debugging tab under Configuration
Settings in Project Properties, and set the Start Action to Start External
Program or Start URL.

Does this mean DLLs can only be debugged or started via some other EXE that
calls a particular function in the DLL?

I do have another project with only a form for calling the DLL. It has two
buttons: One to instantiate the object (DLL) and another to invoke a method
in it. The entire code is:

Option Explicit Off

Public Class Form1

Private mailobj As TestSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New TestSaveEmail.Form1
mailobj.SaveEmail()
End Sub
End Class

The error message in the above code is
'SaveEmail' is not a member of 'TestSaveEmail.Form1'.

SaveEmail is the DLL I'm trying to call. The function within it is
SaveMessage() with no parameters. How do I make it a member to the above?

Thanks,
Brett
Nov 21 '05 #1
14 1033
> Does this mean DLLs can only be debugged or started via some other EXE
that
calls a particular function in the DLL?
Yes.
SaveEmail is the DLL I'm trying to call. The function within it is
SaveMessage() with no parameters. How do I make it a member to the above?


Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen
http://rlewallen.blogspot.com
Nov 21 '05 #2
This gives:

Type expected.

It doesn't seem to know that SaveEmail is a DLL. What might be wrong?

Brett

"Raymond Lewallen" wrote:
Does this mean DLLs can only be debugged or started via some other EXE

that
calls a particular function in the DLL?


Yes.
SaveEmail is the DLL I'm trying to call. The function within it is
SaveMessage() with no parameters. How do I make it a member to the above?


Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen
http://rlewallen.blogspot.com

Nov 21 '05 #3
I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
needs to be added to the list of references to your project. What is your
class name that contains the SaveMessage function? The Type it is expecting
is the name of the class in SaveEmail.dll. See the code below:

Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that contains
SaveMessage function

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail.ClassName ' Name of DLL.Class that contains
SaveMessage function
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen

"Brett" <Br***@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
This gives:

Type expected.

It doesn't seem to know that SaveEmail is a DLL. What might be wrong?

Brett

Nov 21 '05 #4
Thanks. I seem to have made some progress and was able to complete the
build. However, when I click the instantiate button, I get this error
message:

Cannot create ActiveX component.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Cannot create ActiveX component.

What exactly does the above mean?

The code now looks like:

Option Explicit Off

Public Class Form1
Private mailobj As OutlookSaveEmail.SaveOutlookMessage

Private Outlookobj As TestOutlookSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New OutlookSaveEmail.SaveOutlookMessage
mailobj.SaveOutlookMessage()
End Sub
End Class

Thanks,
Brett

"Raymond Lewallen" wrote:
I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
needs to be added to the list of references to your project. What is your
class name that contains the SaveMessage function? The Type it is expecting
is the name of the class in SaveEmail.dll. See the code below:

Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that contains
SaveMessage function

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail.ClassName ' Name of DLL.Class that contains
SaveMessage function
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen

"Brett" <Br***@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
This gives:

Type expected.

It doesn't seem to know that SaveEmail is a DLL. What might be wrong?

Brett


Nov 21 '05 #5
The error is not being thrown from the code you have posted here, but
actually from the OutlookSaveEmail.Dll you wrote, which probably creates
instances of Outlook via something like
Server.CreateObject("Outlook.Application"). That is where the error is
being thrown, trying to create an instance of the outlook process. I would
google 'System.Exception: Cannot create ActiveX component Outlook' and
you'll find may hits of people with the same issues and how they solved
them.

--

Raymond Lewallen
http://rlewallen.blogspot.com
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
Thanks. I seem to have made some progress and was able to complete the
build. However, when I click the instantiate button, I get this error
message:

Cannot create ActiveX component.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Cannot create ActiveX component.

What exactly does the above mean?

The code now looks like:

Option Explicit Off

Public Class Form1
Private mailobj As OutlookSaveEmail.SaveOutlookMessage

Private Outlookobj As TestOutlookSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles instantiate.Click
mailobj = New OutlookSaveEmail.SaveOutlookMessage
mailobj.SaveOutlookMessage()
End Sub
End Class

Thanks,
Brett

"Raymond Lewallen" wrote:
I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
needs to be added to the list of references to your project. What is your class name that contains the SaveMessage function? The Type it is expecting is the name of the class in SaveEmail.dll. See the code below:

Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that contains SaveMessage function

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail.ClassName ' Name of DLL.Class that contains SaveMessage function
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen

"Brett" <Br***@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
This gives:

Type expected.

It doesn't seem to know that SaveEmail is a DLL. What might be wrong?

Brett


Nov 21 '05 #6
Create a Solution with both projects in it

Jeff
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:19**********************************@microsof t.com...
I've created a windows class library project in MS Visual Studio Beta1. When I try to run the project, I get a popup with this:

A project with an Output Type of Class Library cannot be started directly.
In order to debug this project, go to the Debugging tab under Configuration Settings in Project Properties, and set the Start Action to Start External
Program or Start URL.

Does this mean DLLs can only be debugged or started via some other EXE that calls a particular function in the DLL?

I do have another project with only a form for calling the DLL. It has two buttons: One to instantiate the object (DLL) and another to invoke a method in it. The entire code is:

Option Explicit Off

Public Class Form1

Private mailobj As TestSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles instantiate.Click
mailobj = New TestSaveEmail.Form1
mailobj.SaveEmail()
End Sub
End Class

The error message in the above code is
'SaveEmail' is not a member of 'TestSaveEmail.Form1'.

SaveEmail is the DLL I'm trying to call. The function within it is
SaveMessage() with no parameters. How do I make it a member to the above?

Thanks,
Brett

Nov 21 '05 #7
I did the search on that term. However, nothing seemed to work. One
suggestion was to use System.Web.Mail but does that reference Outlook?

Another was to use server.createobject() rather than only createobject().
Is server declared only as an object or something different?

One other thing was the web.config file and to be sure it has impersonate
user set to true. The one I have in the Windows folder does. There are a
few more in the program files folder. Which should I be checking?

Thanks,
Brett

"Raymond Lewallen" wrote:
The error is not being thrown from the code you have posted here, but
actually from the OutlookSaveEmail.Dll you wrote, which probably creates
instances of Outlook via something like
Server.CreateObject("Outlook.Application"). That is where the error is
being thrown, trying to create an instance of the outlook process. I would
google 'System.Exception: Cannot create ActiveX component Outlook' and
you'll find may hits of people with the same issues and how they solved
them.

--

Raymond Lewallen
http://rlewallen.blogspot.com
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
Thanks. I seem to have made some progress and was able to complete the
build. However, when I click the instantiate button, I get this error
message:

Cannot create ActiveX component.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Cannot create ActiveX component.

What exactly does the above mean?

The code now looks like:

Option Explicit Off

Public Class Form1
Private mailobj As OutlookSaveEmail.SaveOutlookMessage

Private Outlookobj As TestOutlookSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e

As
System.EventArgs) Handles instantiate.Click
mailobj = New OutlookSaveEmail.SaveOutlookMessage
mailobj.SaveOutlookMessage()
End Sub
End Class

Thanks,
Brett

"Raymond Lewallen" wrote:
I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
needs to be added to the list of references to your project. What is your class name that contains the SaveMessage function? The Type it is expecting is the name of the class in SaveEmail.dll. See the code below:

Option Explicit Off

Public Class Form1
Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that contains SaveMessage function

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles instantiate.Click
mailobj = New SaveEmail.ClassName ' Name of DLL.Class that contains SaveMessage function
mailobj.SaveMessage()
End Sub
End Class

--

Raymond Lewallen

"Brett" <Br***@discussions.microsoft.com> wrote in message
news:1F**********************************@microsof t.com...
> This gives:
>
> Type expected.
>
> It doesn't seem to know that SaveEmail is a DLL. What might be wrong?
>
> Brett
>


Nov 21 '05 #8
Your Public Class Form1
does not inherit from System.Windows.Forms.Form and then above you go to talk about web config
files?

Is this a winform or webform application?

Richard
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:8D**********************************@microsof t.com...
I did the search on that term. However, nothing seemed to work. One
suggestion was to use System.Web.Mail but does that reference Outlook?

Another was to use server.createobject() rather than only createobject().
Is server declared only as an object or something different?

One other thing was the web.config file and to be sure it has impersonate
user set to true. The one I have in the Windows folder does. There are a
few more in the program files folder. Which should I be checking?

Thanks,
Brett

"Raymond Lewallen" wrote:
The error is not being thrown from the code you have posted here, but
actually from the OutlookSaveEmail.Dll you wrote, which probably creates
instances of Outlook via something like
Server.CreateObject("Outlook.Application"). That is where the error is
being thrown, trying to create an instance of the outlook process. I would
google 'System.Exception: Cannot create ActiveX component Outlook' and
you'll find may hits of people with the same issues and how they solved
them.

--

Raymond Lewallen
http://rlewallen.blogspot.com
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
Thanks. I seem to have made some progress and was able to complete the
build. However, when I click the instantiate button, I get this error
message:

Cannot create ActiveX component.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Cannot create ActiveX component.

What exactly does the above mean?

The code now looks like:

Option Explicit Off

Public Class Form1
Private mailobj As OutlookSaveEmail.SaveOutlookMessage

Private Outlookobj As TestOutlookSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e

As
System.EventArgs) Handles instantiate.Click
mailobj = New OutlookSaveEmail.SaveOutlookMessage
mailobj.SaveOutlookMessage()
End Sub
End Class

Thanks,
Brett

"Raymond Lewallen" wrote:

> I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
> needs to be added to the list of references to your project. What is

your
> class name that contains the SaveMessage function? The Type it is

expecting
> is the name of the class in SaveEmail.dll. See the code below:
>
> Option Explicit Off
>
> Public Class Form1
> Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that

contains
> SaveMessage function
>
> Private Sub instantiate_Click(ByVal sender As System.Object, ByVal

e As
> System.EventArgs) Handles instantiate.Click
> mailobj = New SaveEmail.ClassName ' Name of DLL.Class that

contains
> SaveMessage function
> mailobj.SaveMessage()
> End Sub
> End Class
>
> --
>
> Raymond Lewallen
>
> "Brett" <Br***@discussions.microsoft.com> wrote in message
> news:1F**********************************@microsof t.com...
> > This gives:
> >
> > Type expected.
> >
> > It doesn't seem to know that SaveEmail is a DLL. What might be wrong?
> >
> > Brett
> >
>
>
>


Nov 21 '05 #9
Server.CreateObject("Outlook.Application"). is for automation. If all you want to do is send an
email then System.Web.Mail is the way to go. It doesn't reference Outllook at all. Outlook uses some
of the same component as System.Web.Mail under the hood but Outlook is just a mail client that you
can bypass.

Sounds to me like a permissions problem. Maybe you dont have access to the Active Outllok server
object becuase your running from the web and your application is sandbox in non trusted code zone.
Or perhaps your deploying to a webserver that does not have outlook client installed.

Either way i think you are using the wrong tool for the job..try System.Web.Mail...its a very
simple namespace.

hth
Richard
Nov 21 '05 #10
The app with the form is working fine. The issue now is the ActiveX error
thrown from the DLL.

How can I tell if this is a win or webform?

The problem is most likely with permissions but I'm unsure where this
setting is.

Brett

"Richard Myers" wrote:
Your Public Class Form1
does not inherit from System.Windows.Forms.Form and then above you go to talk about web config
files?

Is this a winform or webform application?

Richard
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:8D**********************************@microsof t.com...
I did the search on that term. However, nothing seemed to work. One
suggestion was to use System.Web.Mail but does that reference Outlook?

Another was to use server.createobject() rather than only createobject().
Is server declared only as an object or something different?

One other thing was the web.config file and to be sure it has impersonate
user set to true. The one I have in the Windows folder does. There are a
few more in the program files folder. Which should I be checking?

Thanks,
Brett

"Raymond Lewallen" wrote:
The error is not being thrown from the code you have posted here, but
actually from the OutlookSaveEmail.Dll you wrote, which probably creates
instances of Outlook via something like
Server.CreateObject("Outlook.Application"). That is where the error is
being thrown, trying to create an instance of the outlook process. I would
google 'System.Exception: Cannot create ActiveX component Outlook' and
you'll find may hits of people with the same issues and how they solved
them.

--

Raymond Lewallen
http://rlewallen.blogspot.com
"Brett" <Br***@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
> Thanks. I seem to have made some progress and was able to complete the
> build. However, when I click the instantiate button, I get this error
> message:
>
> Cannot create ActiveX component.
> See the end of this message for details on invoking
> just-in-time (JIT) debugging instead of this dialog box.
>
> ************** Exception Text **************
> System.Exception: Cannot create ActiveX component.
>
> What exactly does the above mean?
>
> The code now looks like:
>
> Option Explicit Off
>
> Public Class Form1
> Private mailobj As OutlookSaveEmail.SaveOutlookMessage
>
> Private Outlookobj As TestOutlookSaveEmail.Form1
>
> Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e
As
> System.EventArgs) Handles instantiate.Click
> mailobj = New OutlookSaveEmail.SaveOutlookMessage
> mailobj.SaveOutlookMessage()
> End Sub
> End Class
>
> Thanks,
> Brett
>
> "Raymond Lewallen" wrote:
>
> > I'm sorry, I wasn't thinking when I answered previously. SaveEmail.dll
> > needs to be added to the list of references to your project. What is
your
> > class name that contains the SaveMessage function? The Type it is
expecting
> > is the name of the class in SaveEmail.dll. See the code below:
> >
> > Option Explicit Off
> >
> > Public Class Form1
> > Private mailobj As SaveEmail.ClassName ' Name of DLL.Class that
contains
> > SaveMessage function
> >
> > Private Sub instantiate_Click(ByVal sender As System.Object, ByVal
e As
> > System.EventArgs) Handles instantiate.Click
> > mailobj = New SaveEmail.ClassName ' Name of DLL.Class that
contains
> > SaveMessage function
> > mailobj.SaveMessage()
> > End Sub
> > End Class
> >
> > --
> >
> > Raymond Lewallen
> >
> > "Brett" <Br***@discussions.microsoft.com> wrote in message
> > news:1F**********************************@microsof t.com...
> > > This gives:
> > >
> > > Type expected.
> > >
> > > It doesn't seem to know that SaveEmail is a DLL. What might be wrong?
> > >
> > > Brett
> > >
> >
> >
> >


Nov 21 '05 #11
O.k a winform is windows form and a webform is a webpage.
Webpages have an .aspx extension and require a browser to view them.

I misread your previous post you were saying that someone else had told to check the web.config file
so they obviously thought you were using the web as well.
So to be clear you have a Winforms application calling a SameMail dll and you are trying to save a
message to an outlook folder and you are encountering an error that is causing an unhandled
exception to be thrown when trying to create your activex .dll

So first up have you added a reference into your savemail .dll for Outlook ActiveX

Microsoft Outlook 10.0 Object Library

Richard
Nov 21 '05 #12
Check out the article in Windows Forms Tips and Tricks on how to debug a
control. The technique works for just about any DLL.
--
Bob Powell [MVP]
Visual C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml


"Brett" <Br***@discussions.microsoft.com> wrote in message
news:19**********************************@microsof t.com...
I've created a windows class library project in MS Visual Studio Beta1. When I try to run the project, I get a popup with this:

A project with an Output Type of Class Library cannot be started directly.
In order to debug this project, go to the Debugging tab under Configuration Settings in Project Properties, and set the Start Action to Start External
Program or Start URL.

Does this mean DLLs can only be debugged or started via some other EXE that calls a particular function in the DLL?

I do have another project with only a form for calling the DLL. It has two buttons: One to instantiate the object (DLL) and another to invoke a method in it. The entire code is:

Option Explicit Off

Public Class Form1

Private mailobj As TestSaveEmail.Form1

Private Sub instantiate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles instantiate.Click
mailobj = New TestSaveEmail.Form1
mailobj.SaveEmail()
End Sub
End Class

The error message in the above code is
'SaveEmail' is not a member of 'TestSaveEmail.Form1'.

SaveEmail is the DLL I'm trying to call. The function within it is
SaveMessage() with no parameters. How do I make it a member to the above?

Thanks,
Brett

Nov 21 '05 #13
I don't see what relevance this link has to my post or that of the original
poster.

Care to enlighten?

--
Bob Powell [MVP]
Visual C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml


"Richard Myers" <fa**@address.com> wrote in message
news:uD**************@TK2MSFTNGP15.phx.gbl...
http://www.outlookcode.com/d/index.htm

Nov 21 '05 #15

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.