473,770 Members | 2,217 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Get field info of base class with reflection

Hi,

I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.

class EmployeesDC
{
private string mstrEmployeeNum ber;

etc
}

class EmployeesBL : EmployeesDC
{
}

Then in UI Assembly

class Employees : EmployeesBL
{
}

Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.

I have googled but I am still not clear how??

thanks
rotsey


Jun 22 '07 #1
10 9466
Rotsey wrote:
Hi,

I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.

class EmployeesDC
{
private string mstrEmployeeNum ber;

etc
}

class EmployeesBL : EmployeesDC
{
}

Then in UI Assembly

class Employees : EmployeesBL
{
}

Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.

I have googled but I am still not clear how??

thanks
rotsey
Hi rotsey,

It's not too complicated, but may I ask what type of information you're
after? If you're after the contents of the field, then is there a reason
why you can't declare it as protected?

If you're after something else, let us know and we'll point you in the right
direction.

--
Tom Spink
University of Edinburgh
Jun 22 '07 #2
thanks Tom

All I want is to get the name of all the private fields.

I will then know from the prefix to do something else

rotsey

"Tom Spink" <ts****@gmail.c omwrote in message
news:%2******** ********@TK2MSF TNGP06.phx.gbl. ..
Rotsey wrote:
>Hi,

I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.

class EmployeesDC
{
private string mstrEmployeeNum ber;

etc
}

class EmployeesBL : EmployeesDC
{
}

Then in UI Assembly

class Employees : EmployeesBL
{
}

Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.

I have googled but I am still not clear how??

thanks
rotsey

Hi rotsey,

It's not too complicated, but may I ask what type of information you're
after? If you're after the contents of the field, then is there a reason
why you can't declare it as protected?

If you're after something else, let us know and we'll point you in the
right
direction.

--
Tom Spink
University of Edinburgh

Jun 22 '07 #3
Rotsey wrote:
thanks Tom

All I want is to get the name of all the private fields.

I will then know from the prefix to do something else

rotsey

"Tom Spink" <ts****@gmail.c omwrote in message
news:%2******** ********@TK2MSF TNGP06.phx.gbl. ..
>Rotsey wrote:
>>Hi,

I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.

class EmployeesDC
{
private string mstrEmployeeNum ber;

etc
}

class EmployeesBL : EmployeesDC
{
}

Then in UI Assembly

class Employees : EmployeesBL
{
}

Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.

I have googled but I am still not clear how??

thanks
rotsey

Hi rotsey,

It's not too complicated, but may I ask what type of information you're
after? If you're after the contents of the field, then is there a reason
why you can't declare it as protected?

If you're after something else, let us know and we'll point you in the
right
direction.

--
Tom Spink
University of Edinburgh
Hi Rotsey,

Cool. Take a look at the following example:

///
using System;
using System.Reflecti on;

public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}

public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}

public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;

bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;

foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}

public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///

What's going on here is most interesting in the Foo() method of C. The
inheritance hierarchy is C -B -A, and when you call Foo() in C, it will
print out a list of fields it finds.

Modifying bf (the BindingFlags parameter) will help to refine/expand the
search.

The field variable (on each iteration of the foreach statement) will (most
likely) contain everything you need to know about the field.

--
Tom Spink
University of Edinburgh
Jun 22 '07 #4
Thank Tom I get it.

One thing though, how would you refactor the code so that
I dont't have to recode foo in all my objects like class C.

rotsey.
"Tom Sp
ink" <ts****@gmail.c omwrote in message
news:un******** ******@TK2MSFTN GP03.phx.gbl...
Rotsey wrote:
>thanks Tom

All I want is to get the name of all the private fields.

I will then know from the prefix to do something else

rotsey

"Tom Spink" <ts****@gmail.c omwrote in message
news:%2******* *********@TK2MS FTNGP06.phx.gbl ...
>>Rotsey wrote:

Hi,

I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.

class EmployeesDC
{
private string mstrEmployeeNum ber;

etc
}

class EmployeesBL : EmployeesDC
{
}

Then in UI Assembly

class Employees : EmployeesBL
{
}

Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.

I have googled but I am still not clear how??

thanks
rotsey

Hi rotsey,

It's not too complicated, but may I ask what type of information you're
after? If you're after the contents of the field, then is there a
reason
why you can't declare it as protected?

If you're after something else, let us know and we'll point you in the
right
direction.

--
Tom Spink
University of Edinburgh

Hi Rotsey,

Cool. Take a look at the following example:

///
using System;
using System.Reflecti on;

public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}

public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}

public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;

bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;

foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}

public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///

What's going on here is most interesting in the Foo() method of C. The
inheritance hierarchy is C -B -A, and when you call Foo() in C, it
will
print out a list of fields it finds.

Modifying bf (the BindingFlags parameter) will help to refine/expand the
search.

The field variable (on each iteration of the foreach statement) will (most
likely) contain everything you need to know about the field.

--
Tom Spink
University of Edinburgh

Jun 22 '07 #5
Rotsey wrote:
Thank Tom I get it.

One thing though, how would you refactor the code so that
I dont't have to recode foo in all my objects like class C.

rotsey.
"Tom Sp
ink" <ts****@gmail.c omwrote in message
news:un******** ******@TK2MSFTN GP03.phx.gbl...
>Rotsey wrote:
>>thanks Tom

All I want is to get the name of all the private fields.

I will then know from the prefix to do something else

rotsey

"Tom Spink" <ts****@gmail.c omwrote in message
news:%2****** **********@TK2M SFTNGP06.phx.gb l...
Rotsey wrote:

Hi,
>
I have a class that exist in my UI assembly that inherits from a class
in a referenced assembly like this.
>
class EmployeesDC
{
private string mstrEmployeeNum ber;
>
etc
}
>
class EmployeesBL : EmployeesDC
{
}
>
Then in UI Assembly
>
class Employees : EmployeesBL
{
}
>
Can someone give me the code so I can get info on the private fields
in EmployeesDC using reflection.
>
I have googled but I am still not clear how??
>
thanks
rotsey

Hi rotsey,

It's not too complicated, but may I ask what type of information you're
after? If you're after the contents of the field, then is there a
reason
why you can't declare it as protected?

If you're after something else, let us know and we'll point you in the
right
direction.

--
Tom Spink
University of Edinburgh

Hi Rotsey,

Cool. Take a look at the following example:

///
using System;
using System.Reflecti on;

public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}

public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}

public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;

bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;

foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}

public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///

What's going on here is most interesting in the Foo() method of C. The
inheritance hierarchy is C -B -A, and when you call Foo() in C, it
will
print out a list of fields it finds.

Modifying bf (the BindingFlags parameter) will help to refine/expand the
search.

The field variable (on each iteration of the foreach statement) will
(most likely) contain everything you need to know about the field.

--
Tom Spink
University of Edinburgh
Hi Rotsey,

There are a couple of approaches to this, the most simple being a static
utility class that exposes a method, taking in the type of the object,
rather than calling GetType in the method.

--
Tom Spink
University of Edinburgh
Jun 22 '07 #6
Ok thats what I am doing.

So when I pass the "this" to the static method
do I use "Object" as type

ie
GetFieldtype(th is,"EmployeeNum ber");

GetFieldtype(Ob ject obj,string fieldname)
{

}

Thats what puzzles me?

"Tom Spink" <ts****@gmail.c omwrote in message
news:O8******** ******@TK2MSFTN GP03.phx.gbl...
Rotsey wrote:
>Thank Tom I get it.

One thing though, how would you refactor the code so that
I dont't have to recode foo in all my objects like class C.

rotsey.
"Tom Sp
ink" <ts****@gmail.c omwrote in message
news:un******* *******@TK2MSFT NGP03.phx.gbl.. .
>>Rotsey wrote:

thanks Tom

All I want is to get the name of all the private fields.

I will then know from the prefix to do something else

rotsey

"Tom Spink" <ts****@gmail.c omwrote in message
news:%2***** ***********@TK2 MSFTNGP06.phx.g bl...
Rotsey wrote:
>
>Hi,
>>
>I have a class that exist in my UI assembly that inherits from a
>class
>in a referenced assembly like this.
>>
>class EmployeesDC
>{
> private string mstrEmployeeNum ber;
>>
>etc
>}
>>
>class EmployeesBL : EmployeesDC
>{
>}
>>
>Then in UI Assembly
>>
>class Employees : EmployeesBL
>{
>}
>>
>Can someone give me the code so I can get info on the private fields
>in EmployeesDC using reflection.
>>
>I have googled but I am still not clear how??
>>
>thanks
>rotsey
>
Hi rotsey,
>
It's not too complicated, but may I ask what type of information
you're
after? If you're after the contents of the field, then is there a
reason
why you can't declare it as protected?
>
If you're after something else, let us know and we'll point you in the
right
direction .
>
--
Tom Spink
Universit y of Edinburgh

Hi Rotsey,

Cool. Take a look at the following example:

///
using System;
using System.Reflecti on;

public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}

public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}

public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;

bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;

foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}

public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///

What's going on here is most interesting in the Foo() method of C. The
inheritance hierarchy is C -B -A, and when you call Foo() in C, it
will
print out a list of fields it finds.

Modifying bf (the BindingFlags parameter) will help to refine/expand the
search.

The field variable (on each iteration of the foreach statement) will
(most likely) contain everything you need to know about the field.

--
Tom Spink
University of Edinburgh

Hi Rotsey,

There are a couple of approaches to this, the most simple being a static
utility class that exposes a method, taking in the type of the object,
rather than calling GetType in the method.

--
Tom Spink
University of Edinburgh

Jun 22 '07 #7
Tom I have tried using just Foo in each object
but I am not getting any fields returned

Any ideas???
"Rotsey" <ma***********@ RemoveThis.optu snet.com.auwrot e in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
Ok thats what I am doing.

So when I pass the "this" to the static method
do I use "Object" as type

ie
GetFieldtype(th is,"EmployeeNum ber");

GetFieldtype(Ob ject obj,string fieldname)
{

}

Thats what puzzles me?

"Tom Spink" <ts****@gmail.c omwrote in message
news:O8******** ******@TK2MSFTN GP03.phx.gbl...
>Rotsey wrote:
>>Thank Tom I get it.

One thing though, how would you refactor the code so that
I dont't have to recode foo in all my objects like class C.

rotsey.
"Tom Sp
ink" <ts****@gmail.c omwrote in message
news:un****** ********@TK2MSF TNGP03.phx.gbl. ..
Rotsey wrote:

thanks Tom
>
All I want is to get the name of all the private fields.
>
I will then know from the prefix to do something else
>
rotsey
>
"Tom Spink" <ts****@gmail.c omwrote in message
news:%2**** ************@TK 2MSFTNGP06.phx. gbl...
>Rotsey wrote:
>>
>>Hi,
>>>
>>I have a class that exist in my UI assembly that inherits from a
>>class
>>in a referenced assembly like this.
>>>
>>class EmployeesDC
>>{
>> private string mstrEmployeeNum ber;
>>>
>>etc
>>}
>>>
>>class EmployeesBL : EmployeesDC
>>{
>>}
>>>
>>Then in UI Assembly
>>>
>>class Employees : EmployeesBL
>>{
>>}
>>>
>>Can someone give me the code so I can get info on the private fields
>>in EmployeesDC using reflection.
>>>
>>I have googled but I am still not clear how??
>>>
>>thanks
>>rotsey
>>
>Hi rotsey,
>>
>It's not too complicated, but may I ask what type of information
>you're
>after? If you're after the contents of the field, then is there a
>reason
>why you can't declare it as protected?
>>
>If you're after something else, let us know and we'll point you in
>the
>right
>directio n.
>>
>--
>Tom Spink
>Universi ty of Edinburgh

Hi Rotsey,

Cool. Take a look at the following example:

///
using System;
using System.Reflecti on;

public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}

public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}

public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;

bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;

foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}

public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///

What's going on here is most interesting in the Foo() method of C. The
inheritanc e hierarchy is C -B -A, and when you call Foo() in C, it
will
print out a list of fields it finds.

Modifying bf (the BindingFlags parameter) will help to refine/expand
the
search.

The field variable (on each iteration of the foreach statement) will
(most likely) contain everything you need to know about the field.

--
Tom Spink
University of Edinburgh

Hi Rotsey,

There are a couple of approaches to this, the most simple being a static
utility class that exposes a method, taking in the type of the object,
rather than calling GetType in the method.

--
Tom Spink
University of Edinburgh


Jun 22 '07 #8
you gave up on me Tom.

I had to reference the base class directly to get the private fields.

Don't know why your method doesn't work?

"Rotsey" <ma***********@ RemoveThis.optu snet.com.auwrot e in message
news:uo******** ******@TK2MSFTN GP06.phx.gbl...
Tom I have tried using just Foo in each object
but I am not getting any fields returned

Any ideas???
"Rotsey" <ma***********@ RemoveThis.optu snet.com.auwrot e in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
>Ok thats what I am doing.

So when I pass the "this" to the static method
do I use "Object" as type

ie
GetFieldtype(t his,"EmployeeNu mber");

GetFieldtype(O bject obj,string fieldname)
{

}

Thats what puzzles me?

"Tom Spink" <ts****@gmail.c omwrote in message
news:O8******* *******@TK2MSFT NGP03.phx.gbl.. .
>>Rotsey wrote:

Thank Tom I get it.

One thing though, how would you refactor the code so that
I dont't have to recode foo in all my objects like class C.

rotsey.
"Tom Sp
ink" <ts****@gmail.c omwrote in message
news:un***** *********@TK2MS FTNGP03.phx.gbl ...
Rotsey wrote:
>
>thanks Tom
>>
>All I want is to get the name of all the private fields.
>>
>I will then know from the prefix to do something else
>>
>rotsey
>>
>"Tom Spink" <ts****@gmail.c omwrote in message
>news:%2*** *************@T K2MSFTNGP06.phx .gbl...
>>Rotsey wrote:
>>>
>>>Hi,
>>>>
>>>I have a class that exist in my UI assembly that inherits from a
>>>class
>>>in a referenced assembly like this.
>>>>
>>>class EmployeesDC
>>>{
>>> private string mstrEmployeeNum ber;
>>>>
>>>etc
>>>}
>>>>
>>>class EmployeesBL : EmployeesDC
>>>{
>>>}
>>>>
>>>Then in UI Assembly
>>>>
>>>class Employees : EmployeesBL
>>>{
>>>}
>>>>
>>>Can someone give me the code so I can get info on the private
>>>fields
>>>in EmployeesDC using reflection.
>>>>
>>>I have googled but I am still not clear how??
>>>>
>>>thanks
>>>rotsey
>>>
>>Hi rotsey,
>>>
>>It's not too complicated, but may I ask what type of information
>>you're
>>after? If you're after the contents of the field, then is there a
>>reason
>>why you can't declare it as protected?
>>>
>>If you're after something else, let us know and we'll point you in
>>the
>>right
>>direction .
>>>
>>--
>>Tom Spink
>>Universit y of Edinburgh
>
Hi Rotsey,
>
Cool. Take a look at the following example:
>
///
using System;
using System.Reflecti on;
>
public class A
{
private string pfa_A;
private string pfb_A;
private string pfc_A;
}
>
public class B : A
{
private string pfa_B;
private string pfb_B;
private string pfc_B;
}
>
public class C : B
{
public void Foo ()
{
Type t = this.GetType();
BindingFlags bf = BindingFlags.De fault;
>
bf |= BindingFlags.No nPublic;
bf |= BindingFlags.Fl attenHierarchy;
bf |= BindingFlags.In stance;
>
foreach (FieldInfo field in t.GetFields(bf) )
{
Console.WriteLi ne(field);
}
}
}
>
public class E
{
public static void Main ()
{
C c = new C();
c.Foo();
}
}
///
>
What's going on here is most interesting in the Foo() method of C.
The
inheritan ce hierarchy is C -B -A, and when you call Foo() in C, it
will
print out a list of fields it finds.
>
Modifying bf (the BindingFlags parameter) will help to refine/expand
the
search.
>
The field variable (on each iteration of the foreach statement) will
(most likely) contain everything you need to know about the field.
>
--
Tom Spink
Universit y of Edinburgh

Hi Rotsey,

There are a couple of approaches to this, the most simple being a static
utility class that exposes a method, taking in the type of the object,
rather than calling GetType in the method.

--
Tom Spink
University of Edinburgh



Jun 22 '07 #9
Rotsey wrote:
you gave up on me Tom.

I had to reference the base class directly to get the private fields.

Don't know why your method doesn't work?
<snippedy-doo-dah>
you gave up on me Tom.
I may be a student, but I have a job ;-)
I had to reference the base class directly to get the private fields.

Don't know why your method doesn't work?
Can you post the code you were using?

--
Tom Spink
University of Edinburgh
Jun 22 '07 #10

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

Similar topics

1
2660
by: Steve | last post by:
Hello, I'm encountering an unexpected behavior when using the "new" modifier in a derived class to hide an inherited base class property. I use "new" intentionally so I can change the Type of the property in the derived class, and I can use the derived class as expected through standard instantiation. The unexpected behavior occurs when I try to set gather the PropertyInfo for the derived class property via Reflection. I get an...
8
1489
by: Lars-Erik Aabech | last post by:
Hi! I've been looking around for an attribute that tells the intellitip thingy to skip some field or operation. Is there any? IE. a ListControl object has the DataSource property, but not all of the inherited classes "supports" that public property, although you can use them. Some of these properties are hidden from intellitip, but doesn't throw a compiler error. Ex.:
8
2035
by: Calan | last post by:
I have a server-side ASP script that dynamically creates an input form from a database table. The table contains a field name, the table where values are stored, type of input control, value for a label, etc. What I need to do is create a JS validation routine that will check each control for valid input, regardless of what the control name is. If it is a "select", it needs to verify the index is > 1. If it is an "input", it needs to...
10
7370
by: Sunny | last post by:
Hi, I have an old problem which I couldn't solve so far. Now I have found a post in that group that gave me an idea, but I can not fully understand it. The problem is: I'm trying to use a Windows.Forms.UserControl in a COM environment, i.e. I want to host that control in a COM host. So far, so good, I can host it, but I can not reach the parent COM object from the control (Parent property is null :( ). I have stopped the control in the...
3
2533
by: tony lock | last post by:
I am writing a simulation program, the main classes inherit from a base class which itself inherits from Control. I am using reflection to serialize these objects including the fields from control. This works perfectly apart from the field text in Control which always comes back null. Although the IDE always shows it having the correct value. Since the IDE presumably uses reflection to show the value, I am at a loss to know why this one...
10
25743
by: Abelardo Vacca | last post by:
Hi, The title sums up the question pretty much. I would like to access all private members of a class including the private members of its base classes.( I already have the ReflectionPermission ) Is there a way to get this information ? Thnaks in advance
5
3164
by: Andy | last post by:
Hi all, I have a site with the following architecture: Common.Web.dll - Contains a CommonPageBase class which inherits System.Web.UI.Page myadd.dll - Contains PageBase which inherits CommonPageBase - Contains myPage which inherits PageBase Each of these classes overrides OnInit and ties an event handler
6
2146
by: Philip Warner | last post by:
I have a set of classes: C (base) C1 (inherits C) C2 (inherits C) ... Cn (inherits C) (the C1..Cn also have subclasses, but thats not really relevant to the question)
26
5375
by: nyathancha | last post by:
Hi, How Do I create an instance of a derived class from an instance of a base class, essentially wrapping up an existing base class with some additional functionality. The reason I need this is because I am not always able to control/create all the different constructors the base class has. My problem can be described in code as follows ... /* This is the base class with a whole heap of constructors/functionality*/ public class Animal
0
9619
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
9454
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,...
1
10038
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
9910
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...
1
7460
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
5354
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
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
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
2850
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.