473,750 Members | 2,630 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

call a method in an external class

I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a
deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?

Thanks
Nov 15 '05 #1
9 11575
Keith,

The reason for this is that the reference is of type object. You have
to cast obj to "Assembly.Assem bly" in order to call the method, like this:

// Create the instance.
Assembly.Assemb ly obj = (Assembly.Assem bly)
dll.CreateInsta nce("Assembly.A ssembly");

You can then use obj to call the func method.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:02******** *************** *****@phx.gbl.. .
I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a
deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?

Thanks

Nov 15 '05 #2


keith wrote:
I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a
deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?


Are you sure func is an instance member and not a class member
--

Martin Honnen
http://JavaScript.FAQTs.com/

Nov 15 '05 #3
Nicholas,

This will not work since the Assembly.Assemb ly is
an external class in an dll file that dosen't have
reference in my project that will use it.

Thanks
Keith

-----Original Message-----
Keith,

The reason for this is that the reference is of type object. You haveto cast obj to "Assembly.Assem bly" in order to call the method, like this:
// Create the instance.
Assembly.Assem bly obj = (Assembly.Assem bly)
dll.CreateInst ance("Assembly. Assembly");

You can then use obj to call the func method.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:02******* *************** ******@phx.gbl. ..
I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a
deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?

Thanks

.

Nov 15 '05 #4
Keith,

In that case, you have two options. The first is to have a base class
which exposes the methods of Assembly.Assemb ly which is accessible to both
Assembly.dll and to the code loading it dynamically, and then cast to the
base type. You can also do this with an interface. The key is to have both
assemblies able to access the interface/base class definition, and the one
loading Assembly.Assemb ly dynamically doesn't have to access the class that
has the implementation directly.

The only other option is to use reflection to call the method.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:01******** *************** *****@phx.gbl.. .
Nicholas,

This will not work since the Assembly.Assemb ly is
an external class in an dll file that dosen't have
reference in my project that will use it.

Thanks
Keith

-----Original Message-----
Keith,

The reason for this is that the reference is of type

object. You have
to cast obj to "Assembly.Assem bly" in order to call the

method, like this:

// Create the instance.
Assembly.Assem bly obj = (Assembly.Assem bly)
dll.CreateInst ance("Assembly. Assembly");

You can then use obj to call the func method.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:02******* *************** ******@phx.gbl. ..
I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a
deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?

Thanks

.

Nov 15 '05 #5
I'm sure.

I did use same method in an external class (a dll file).

Then I tried call the method from both C# and VB.NET
by using almost same codes. It worked for VB but not
in C#.

-----Original Message-----
keith wrote:
I created a class libery which has name space Assembly
and class Assembly and compiled it.

Then created a C# project and called a method in
the external class

e.g.

Assembly dll;
dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
object obj=dll.CreateI nstance("Assemb ly.Assembly");
obj.func();

When compiling, it said "'object' does not contain a deifinition for 'func'

But if created a VB.NET project
e.g.

Dim dll As Assembly
dll = System.Reflecti on.Assembly.Loa dFrom
("c:\app\Assemb ly.dll")
Dim obj As Object
obj = dll.CreateInsta nce("Assembly.A ssembly")
obj.func()

I compiled and ran it without any problem.

Can you tell what is problem?
Are you sure func is an instance member and not a class

member--

Martin Honnen
http://JavaScript.FAQTs.com/

.

Nov 15 '05 #6
My purpose is to call a method in a external file
dynamically. So I don't want to use base class or
interface.

I did use reflection in both VB.NET and
C# project. used almost same codes (please compare
the codes in my first email) to load and create instance,
finally call the method.

It worked for VB.NET but not C#. It surprised me since I
should be able to do samething in either language.
Thanks

Keith

-----Original Message-----
Keith,

In that case, you have two options. The first is to have a base classwhich exposes the methods of Assembly.Assemb ly which is accessible to bothAssembly.dll and to the code loading it dynamically, and then cast to thebase type. You can also do this with an interface. The key is to have bothassemblies able to access the interface/base class definition, and the oneloading Assembly.Assemb ly dynamically doesn't have to access the class thathas the implementation directly.

The only other option is to use reflection to call the method.

--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:01******* *************** ******@phx.gbl. ..
Nicholas,

This will not work since the Assembly.Assemb ly is
an external class in an dll file that dosen't have
reference in my project that will use it.

Thanks
Keith

>-----Original Message-----
>Keith,
>
> The reason for this is that the reference is of type
object. You have
>to cast obj to "Assembly.Assem bly" in order to call
the method, like this:
>
>// Create the instance.
>Assembly.Assem bly obj = (Assembly.Assem bly)
>dll.CreateInst ance("Assembly. Assembly");
>
> You can then use obj to call the func method.
>
> Hope this helps.
>
>
>--
> - Nicholas Paldino [.NET/C# MVP]
> - ni************* *@exisconsultin g.com
>
>"keith" <ke*****@shaw.c a> wrote in message
>news:02******* *************** ******@phx.gbl. ..
>> I created a class libery which has name space

Assembly >> and class Assembly and compiled it.
>>
>> Then created a C# project and called a method in
>> the external class
>>
>> e.g.
>>
>> Assembly dll;
>> dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
>> object obj=dll.CreateI nstance("Assemb ly.Assembly");
>> obj.func();
>>
>> When compiling, it said "'object' does not contain a
>> deifinition for 'func'
>>
>> But if created a VB.NET project
>> e.g.
>>
>> Dim dll As Assembly
>> dll = System.Reflecti on.Assembly.Loa dFrom
>> ("c:\app\Assemb ly.dll")
>> Dim obj As Object
>> obj = dll.CreateInsta nce("Assembly.A ssembly")
>> obj.func()
>>
>> I compiled and ran it without any problem.
>>
>> Can you tell what is problem?
>>
>> Thanks
>
>
>.
>

.

Nov 15 '05 #7
Keith,

In VB, if you make a method call on type object, it will perform all of
the reflection work for you. VB and C# can do the same things, they just go
about it differently.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:04******** *************** *****@phx.gbl.. .
My purpose is to call a method in a external file
dynamically. So I don't want to use base class or
interface.

I did use reflection in both VB.NET and
C# project. used almost same codes (please compare
the codes in my first email) to load and create instance,
finally call the method.

It worked for VB.NET but not C#. It surprised me since I
should be able to do samething in either language.
Thanks

Keith

-----Original Message-----
Keith,

In that case, you have two options. The first is to

have a base class
which exposes the methods of Assembly.Assemb ly which is

accessible to both
Assembly.dll and to the code loading it dynamically, and

then cast to the
base type. You can also do this with an interface. The

key is to have both
assemblies able to access the interface/base class

definition, and the one
loading Assembly.Assemb ly dynamically doesn't have to

access the class that
has the implementation directly.

The only other option is to use reflection to call

the method.


--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:01******* *************** ******@phx.gbl. ..
Nicholas,

This will not work since the Assembly.Assemb ly is
an external class in an dll file that dosen't have
reference in my project that will use it.

Thanks
Keith
>-----Original Message-----
>Keith,
>
> The reason for this is that the reference is of type object. You have
>to cast obj to "Assembly.Assem bly" in order to call the method, like this:
>
>// Create the instance.
>Assembly.Assem bly obj = (Assembly.Assem bly)
>dll.CreateInst ance("Assembly. Assembly");
>
> You can then use obj to call the func method.
>
> Hope this helps.
>
>
>--
> - Nicholas Paldino [.NET/C# MVP]
> - ni************* *@exisconsultin g.com
>
>"keith" <ke*****@shaw.c a> wrote in message
>news:02******* *************** ******@phx.gbl. ..
>> I created a class libery which has name space Assembly >> and class Assembly and compiled it.
>>
>> Then created a C# project and called a method in
>> the external class
>>
>> e.g.
>>
>> Assembly dll;
>> dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
>> object obj=dll.CreateI nstance("Assemb ly.Assembly");
>> obj.func();
>>
>> When compiling, it said "'object' does not contain a
>> deifinition for 'func'
>>
>> But if created a VB.NET project
>> e.g.
>>
>> Dim dll As Assembly
>> dll = System.Reflecti on.Assembly.Loa dFrom
>> ("c:\app\Assemb ly.dll")
>> Dim obj As Object
>> obj = dll.CreateInsta nce("Assembly.A ssembly")
>> obj.func()
>>
>> I compiled and ran it without any problem.
>>
>> Can you tell what is problem?
>>
>> Thanks
>
>
>.
>

.

Nov 15 '05 #8
Nicholas,

How to get samething work for C#?

Keith
-----Original Message-----
Keith,

In VB, if you make a method call on type object, it will perform all ofthe reflection work for you. VB and C# can do the same things, they just goabout it differently.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:04******* *************** ******@phx.gbl. ..
My purpose is to call a method in a external file
dynamically. So I don't want to use base class or
interface.

I did use reflection in both VB.NET and
C# project. used almost same codes (please compare
the codes in my first email) to load and create instance, finally call the method.

It worked for VB.NET but not C#. It surprised me since I should be able to do samething in either language.
Thanks

Keith

>-----Original Message-----
>Keith,
>
> In that case, you have two options. The first is to
have a base class
>which exposes the methods of Assembly.Assemb ly which
is accessible to both
>Assembly.dll and to the code loading it dynamically,
and then cast to the
>base type. You can also do this with an interface.
The key is to have both
>assemblies able to access the interface/base class

definition, and the one
>loading Assembly.Assemb ly dynamically doesn't have to

access the class that
>has the implementation directly.
>
> The only other option is to use reflection to call

the method.
>
>
>--
> - Nicholas Paldino [.NET/C# MVP]
> - ni************* *@exisconsultin g.com
>
>"keith" <ke*****@shaw.c a> wrote in message
>news:01******* *************** ******@phx.gbl. ..
>> Nicholas,
>>
>> This will not work since the Assembly.Assemb ly is
>> an external class in an dll file that dosen't have
>> reference in my project that will use it.
>>
>> Thanks
>> Keith
>>
>>
>> >-----Original Message-----
>> >Keith,
>> >
>> > The reason for this is that the reference is of

type
>> object. You have
>> >to cast obj to "Assembly.Assem bly" in order to call

the
>> method, like this:
>> >
>> >// Create the instance.
>> >Assembly.Assem bly obj = (Assembly.Assem bly)
>> >dll.CreateInst ance("Assembly. Assembly");
>> >
>> > You can then use obj to call the func method.
>> >
>> > Hope this helps.
>> >
>> >
>> >--
>> > - Nicholas Paldino [.NET/C# MVP]
>> > -

ni************* *@exisconsultin g.com >> >
>> >"keith" <ke*****@shaw.c a> wrote in message
>> >news:02******* *************** ******@phx.gbl. ..
>> >> I created a class libery which has name space

Assembly
>> >> and class Assembly and compiled it.
>> >>
>> >> Then created a C# project and called a method in
>> >> the external class
>> >>
>> >> e.g.
>> >>
>> >> Assembly dll;
>> >> dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
>> >> object obj=dll.CreateI nstance ("Assembly.Asse mbly"); >> >> obj.func();
>> >>
>> >> When compiling, it said "'object' does not contain a >> >> deifinition for 'func'
>> >>
>> >> But if created a VB.NET project
>> >> e.g.
>> >>
>> >> Dim dll As Assembly
>> >> dll = System.Reflecti on.Assembly.Loa dFrom
>> >> ("c:\app\Assemb ly.dll")
>> >> Dim obj As Object
>> >> obj = dll.CreateInsta nce("Assembly.A ssembly")
>> >> obj.func()
>> >>
>> >> I compiled and ran it without any problem.
>> >>
>> >> Can you tell what is problem?
>> >>
>> >> Thanks
>> >
>> >
>> >.
>> >
>
>
>.
>

.

Nov 15 '05 #9
Keith,

You must use reflection, getting the MethodInfo instance for the method,
and then Invoking it.

You really should consider using an interface, it's just better design,
and you get the type safety.

I should ammend my statement from before, VB and C# can't do everything
the other can do, but most things.

--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:8a******** *************** *****@phx.gbl.. .
Nicholas,

How to get samething work for C#?

Keith
-----Original Message-----
Keith,

In VB, if you make a method call on type object, it

will perform all of
the reflection work for you. VB and C# can do the same

things, they just go
about it differently.
--
- Nicholas Paldino [.NET/C# MVP]
- ni************* *@exisconsultin g.com

"keith" <ke*****@shaw.c a> wrote in message
news:04******* *************** ******@phx.gbl. ..
My purpose is to call a method in a external file
dynamically. So I don't want to use base class or
interface.

I did use reflection in both VB.NET and
C# project. used almost same codes (please compare
the codes in my first email) to load and create instance, finally call the method.

It worked for VB.NET but not C#. It surprised me since I should be able to do samething in either language.
Thanks

Keith


>-----Original Message-----
>Keith,
>
> In that case, you have two options. The first is to have a base class
>which exposes the methods of Assembly.Assemb ly which is accessible to both
>Assembly.dll and to the code loading it dynamically, and then cast to the
>base type. You can also do this with an interface. The key is to have both
>assemblies able to access the interface/base class
definition, and the one
>loading Assembly.Assemb ly dynamically doesn't have to
access the class that
>has the implementation directly.
>
> The only other option is to use reflection to call
the method.
>
>
>--
> - Nicholas Paldino [.NET/C# MVP]
> - ni************* *@exisconsultin g.com
>
>"keith" <ke*****@shaw.c a> wrote in message
>news:01******* *************** ******@phx.gbl. ..
>> Nicholas,
>>
>> This will not work since the Assembly.Assemb ly is
>> an external class in an dll file that dosen't have
>> reference in my project that will use it.
>>
>> Thanks
>> Keith
>>
>>
>> >-----Original Message-----
>> >Keith,
>> >
>> > The reason for this is that the reference is of
type
>> object. You have
>> >to cast obj to "Assembly.Assem bly" in order to call
the
>> method, like this:
>> >
>> >// Create the instance.
>> >Assembly.Assem bly obj = (Assembly.Assem bly)
>> >dll.CreateInst ance("Assembly. Assembly");
>> >
>> > You can then use obj to call the func method.
>> >
>> > Hope this helps.
>> >
>> >
>> >--
>> > - Nicholas Paldino [.NET/C# MVP]
>> > - ni************* *@exisconsultin g.com >> >
>> >"keith" <ke*****@shaw.c a> wrote in message
>> >news:02******* *************** ******@phx.gbl. ..
>> >> I created a class libery which has name space
Assembly
>> >> and class Assembly and compiled it.
>> >>
>> >> Then created a C# project and called a method in
>> >> the external class
>> >>
>> >> e.g.
>> >>
>> >> Assembly dll;
>> >> dll=Assembly.Lo adFrom(@"c:\app \Assembly.dll") ;
>> >> object obj=dll.CreateI nstance ("Assembly.Asse mbly"); >> >> obj.func();
>> >>
>> >> When compiling, it said "'object' does not contain a >> >> deifinition for 'func'
>> >>
>> >> But if created a VB.NET project
>> >> e.g.
>> >>
>> >> Dim dll As Assembly
>> >> dll = System.Reflecti on.Assembly.Loa dFrom
>> >> ("c:\app\Assemb ly.dll")
>> >> Dim obj As Object
>> >> obj = dll.CreateInsta nce("Assembly.A ssembly")
>> >> obj.func()
>> >>
>> >> I compiled and ran it without any problem.
>> >>
>> >> Can you tell what is problem?
>> >>
>> >> Thanks
>> >
>> >
>> >.
>> >
>
>
>.
>

.

Nov 15 '05 #10

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

Similar topics

5
10056
by: christopher vogt | last post by:
Hi, i'm wondering if there is something like $this-> to call a method inside another method of the same class without using the classname in front. I actually use class TEST { function func1()
10
8264
by: Sanyi Benczik | last post by:
Is there a standard way in C++ to call an external program or is this platform dependent? If it is platform dependent, can somebody drop a line what to use or where to look for info for GNU C++ on RedHat? I am doing some numerical calculations and need to invoke an external plotting program (gnuplot) and return to the numerics. Sorry if I posted twice.
4
6079
by: Amy Matlock | last post by:
Hi all: How does the hardware work if you invoke a BASE::METHOD() on a DERIVED class member? Do you still hit the v-table dynamically at run time? Suppose you have a derived class method, but you use the :: scoping operator to directly call the base class method. Like this: class BASE
6
1771
by: John | last post by:
I wrote this class class CLine { public float sX,sY,dX,dY,m,x,y; public void Draw (PaintEventArgs g) { //Graphics g = this.CreateGraphics (); Bitmap bm=new Bitmap(1,1);
4
2855
by: Dave | last post by:
I have a program that I've written a class for. I need to call the function in the program from the class. When I try to call the function I receive the error, the name xxx does not exist in the class or namespace. Where xxx is the function being called. How do I call the function?
1
1474
by: Martijn Mulder | last post by:
Documentation suggests that I should make a call to the base-class method for some methods. When I try to do so for the class below, I get wrong results. What is the correct way to make a call to the base class for an event like this? //class Form class Form:System.Windows.Forms.Form {
3
1576
by: Andy B | last post by:
I have a web form that has controls to be modified on it. The class that will modify the controls is not contained inside the page code. How would I best pass the controls to the external class?
5
2300
by: macap.usenet | last post by:
Hello, I´ve a problem which maybe sounds a bit easy, but it is hard do ask google for the problem. I have a CheckBoxList and a class derived from this checkboxlist Let´s say: ChildCheckBoxList : CheckBoxList
2
5368
by: danphillips1977 | last post by:
Hopefully this hasn't been asked already - apologies if so I have a Windows Form running inside C# - built using the form designer I've built a number of methods inside the form Events which I now want to strip out into External class files (in order to try and make the app a bit more architecturally correct so to speak). To do this, I have created a new Project which I've added to the Solution. I've managed to connect the class to...
0
9000
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8838
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
9577
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...
0
9256
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
8260
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
6804
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
4713
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4887
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2225
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.