473,654 Members | 3,089 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Get member value by its name

Hi,
I have structure like this:
namespace Namespace
{
public class User
{
public Subnamespace.Se ttings Settings = new Subnamespace.Se ttings();
}
namespace Subnamespace
{
public class Settings
{
public string MyValue { get { return "Hello from there"; } }
}
public static class Helper
{
public static User User = new User();
}
}
}

now, I would like to get the value from string
"Namespace.Subn amespace.Helper .User.Settings. MyValue".

Reinout Waelput gave me on MSDN forums this code:

string Location = "MyNamespace.My Class.TheStruct .TheStruct2.MyV alue";
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflecti on.FieldInfo myField;
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myField = pageType.GetFie ld(str);
pageType = myField.GetValu e(pageType).Get Type();
}
pageType.GetFie ld(Location, System.Reflecti on.BindingFlags .GetField);

Which works well, however fails in my case, probably because of the
Subnamespace.Se ttings declaration. The exception is:
System.Argument Exception was unhandled
Field 'Settings' defined on type 'Namespace.User ' is not a field on the
target object which is of type 'System.Runtime Type'.
at System.Reflecti on.RtFieldInfo. CheckConsistenc y(Object target)
at System.Reflecti on.RtFieldInfo. InternalGetValu e(Object obj, Boolean
doVisibilityChe ck, Boolean doCheckConsiste ncy)
at System.Reflecti on.RtFieldInfo. GetValue(Object obj)

VisualStudio during debug, when selecting
Namespace.Subna mespace.Helper. User.Settings.M yValue have no troubles.

Any idea how to handle the cross namespace declaration?

Thanks a lot,
Jan

Jul 11 '06 #1
8 10476
Hi Jan,
I was able to get the string "Hello from there" using this code:

string inputString =
"Namespace.Subn amespace.Helper .User.Settings. MyValue";
int lastDot = inputString.Las tIndexOf('.');
string typeName = inputString.Sub string(0, lastDot);
string propertyName = inputString.Sub string(lastDot + 1);

Namespace.User user = new Namespace.User( );
Type userType = user.Settings.G etType();
PropertyInfo pi = userType.GetPro perty(propertyN ame);
object output = pi.GetValue(use r.Settings, null);

There isn't really a problem with the embedded namespace that I saw.

By the way, this code isn't very robust, since it assumes a lot about
the input string. I'm not sure where you get your input string from,
but it seems fragile to me to have to parse the string to separate the
type from the property name. Perhaps the calling code already knows
this information? If not, you'd probably want to add some error
handling in case the property does not exist, or that kind of thing.

Hope that helps,
John

Jan Kucera wrote:
Hi,
I have structure like this:
namespace Namespace
{
public class User
{
public Subnamespace.Se ttings Settings = new Subnamespace.Se ttings();
}
namespace Subnamespace
{
public class Settings
{
public string MyValue { get { return "Hello from there"; } }
}
public static class Helper
{
public static User User = new User();
}
}
}

now, I would like to get the value from string
"Namespace.Subn amespace.Helper .User.Settings. MyValue".

Reinout Waelput gave me on MSDN forums this code:

string Location = "MyNamespace.My Class.TheStruct .TheStruct2.MyV alue";
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflecti on.FieldInfo myField;
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myField = pageType.GetFie ld(str);
pageType = myField.GetValu e(pageType).Get Type();
}
pageType.GetFie ld(Location, System.Reflecti on.BindingFlags .GetField);

Which works well, however fails in my case, probably because of the
Subnamespace.Se ttings declaration. The exception is:
System.Argument Exception was unhandled
Field 'Settings' defined on type 'Namespace.User ' is not a field on the
target object which is of type 'System.Runtime Type'.
at System.Reflecti on.RtFieldInfo. CheckConsistenc y(Object target)
at System.Reflecti on.RtFieldInfo. InternalGetValu e(Object obj, Boolean
doVisibilityChe ck, Boolean doCheckConsiste ncy)
at System.Reflecti on.RtFieldInfo. GetValue(Object obj)

VisualStudio during debug, when selecting
Namespace.Subna mespace.Helper. User.Settings.M yValue have no troubles.

Any idea how to handle the cross namespace declaration?

Thanks a lot,
Jan
Jul 11 '06 #2
Please fix your date/clock. Or travel back to our time and let us know how
you did it :) Posting in the future is frowned upon and really doesn't help
you much here.

Mythran

Jul 11 '06 #3

Jan Kucera wrote:
Hi,
I have structure like this:
namespace Namespace
{
public class User
{
public Subnamespace.Se ttings Settings = new Subnamespace.Se ttings();
}
namespace Subnamespace
{
public class Settings
{
public string MyValue { get { return "Hello from there"; } }
}
public static class Helper
{
public static User User = new User();
}
}
}

now, I would like to get the value from string
"Namespace.Subn amespace.Helper .User.Settings. MyValue".

Reinout Waelput gave me on MSDN forums this code:

string Location = "MyNamespace.My Class.TheStruct .TheStruct2.MyV alue";
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflecti on.FieldInfo myField;
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myField = pageType.GetFie ld(str);
pageType = myField.GetValu e(pageType).Get Type();
}
pageType.GetFie ld(Location, System.Reflecti on.BindingFlags .GetField);

Which works well, however fails in my case, probably because of the
Subnamespace.Se ttings declaration. The exception is:
System.Argument Exception was unhandled
Field 'Settings' defined on type 'Namespace.User ' is not a field on the
target object which is of type 'System.Runtime Type'.
at System.Reflecti on.RtFieldInfo. CheckConsistenc y(Object target)
at System.Reflecti on.RtFieldInfo. InternalGetValu e(Object obj, Boolean
doVisibilityChe ck, Boolean doCheckConsiste ncy)
at System.Reflecti on.RtFieldInfo. GetValue(Object obj)

VisualStudio during debug, when selecting
Namespace.Subna mespace.Helper. User.Settings.M yValue have no troubles.

Any idea how to handle the cross namespace declaration?

Thanks a lot,
Jan
I assume that you're getting the exception on the line that says:

pageType = myField.GetValu e(pageType).Get Type();

because the error is saying exactly what's wrong: pageType is an
instance of System.Type, and System.Type has no field named "Settings".

The problem is that you're trying to get the _value_ of the "Settings"
field from a Namespace.User instance, but you're not supplying an
instance. Since there is a different value for "Settings" in every
Namespace.User object, how can you get a value if you don't specify
from which instance you want the value? You can do that only if
"Settings" is static (and therefore there's only one shared between all
instances), but it's not.

If you look at the other code posted on this thread, you'll see the
line:

Namespace.User newUser = new Namespace.User( );

or something like that. That's the key. You have to create an instance
in order to get the value of its "Settings" field.

On the other hand, if all you want is the type of Settings, you should
do that like this:

....
myField = pageType.GetFie ld(str);
pageType = myField.FieldTy pe;
}
pageType = pageType.GetFie ld(Location,
System.Reflecti on.BindingFlags .GetField).Fiel dType;

In otherwords, don't call the GetValue() method; use the FieldType
property instead.

Jul 11 '06 #4
Mythran,
Please accept my apologizies, if I wanted to post in future to gain your
attention I would set it years forward. This wasn't intended and I've
adjusted the date settings in my best belief :)
Jan

PS: And thanks for pointing that out, I wouldn't noticed it.
"Mythran" <ki********@hot mail.comREMOVET RAILwrote in message
news:u6******** ******@TK2MSFTN GP04.phx.gbl...
Please fix your date/clock. Or travel back to our time and let us know
how you did it :) Posting in the future is frowned upon and really
doesn't help you much here.

Mythran
Jul 11 '06 #5
Hi John,
unfortunately you assume I know the members declarations at design time.
This is not true, I have to completely search the runtime types to find out
the value as well as the VisualStudio does when hovering over the selected
string during debug.
Jan

"John Duval" <Jo********@gma il.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
Hi Jan,
I was able to get the string "Hello from there" using this code:

string inputString =
"Namespace.Subn amespace.Helper .User.Settings. MyValue";
int lastDot = inputString.Las tIndexOf('.');
string typeName = inputString.Sub string(0, lastDot);
string propertyName = inputString.Sub string(lastDot + 1);

Namespace.User user = new Namespace.User( );
Type userType = user.Settings.G etType();
PropertyInfo pi = userType.GetPro perty(propertyN ame);
object output = pi.GetValue(use r.Settings, null);

There isn't really a problem with the embedded namespace that I saw.

By the way, this code isn't very robust, since it assumes a lot about
the input string. I'm not sure where you get your input string from,
but it seems fragile to me to have to parse the string to separate the
type from the property name. Perhaps the calling code already knows
this information? If not, you'd probably want to add some error
handling in case the property does not exist, or that kind of thing.

Hope that helps,
John

Jan Kucera wrote:
>Hi,
I have structure like this:
namespace Namespace
{
public class User
{
public Subnamespace.Se ttings Settings = new Subnamespace.Se ttings();
}
namespace Subnamespace
{
public class Settings
{
public string MyValue { get { return "Hello from there"; } }
}
public static class Helper
{
public static User User = new User();
}
}
}

now, I would like to get the value from string
"Namespace.Sub namespace.Helpe r.User.Settings .MyValue".

Reinout Waelput gave me on MSDN forums this code:

string Location = "MyNamespace.My Class.TheStruct .TheStruct2.MyV alue";
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflect ion.FieldInfo myField;
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myField = pageType.GetFie ld(str);
pageType = myField.GetValu e(pageType).Get Type();
}
pageType.GetFi eld(Location, System.Reflecti on.BindingFlags .GetField);

Which works well, however fails in my case, probably because of the
Subnamespace.S ettings declaration. The exception is:
System.Argumen tException was unhandled
Field 'Settings' defined on type 'Namespace.User ' is not a field on the
target object which is of type 'System.Runtime Type'.
at System.Reflecti on.RtFieldInfo. CheckConsistenc y(Object target)
at System.Reflecti on.RtFieldInfo. InternalGetValu e(Object obj,
Boolean
doVisibilityCh eck, Boolean doCheckConsiste ncy)
at System.Reflecti on.RtFieldInfo. GetValue(Object obj)

VisualStudio during debug, when selecting
Namespace.Subn amespace.Helper .User.Settings. MyValue have no troubles.

Any idea how to handle the cross namespace declaration?

Thanks a lot,
Jan
Jul 11 '06 #6
Hi Bruce.
Thanks for your reply. All I want is to get the "Hello from there" string.
Thanks for the hint with the instanced User. However... you have all the
code I need to handle. So does it mean I should supply the previous value as
a instance? Or where do I get the instance? Where does the VisualStudio?

Thanks,
Jan
>
I assume that you're getting the exception on the line that says:

pageType = myField.GetValu e(pageType).Get Type();

because the error is saying exactly what's wrong: pageType is an
instance of System.Type, and System.Type has no field named "Settings".

The problem is that you're trying to get the _value_ of the "Settings"
field from a Namespace.User instance, but you're not supplying an
instance. Since there is a different value for "Settings" in every
Namespace.User object, how can you get a value if you don't specify
from which instance you want the value? You can do that only if
"Settings" is static (and therefore there's only one shared between all
instances), but it's not.

If you look at the other code posted on this thread, you'll see the
line:

Namespace.User newUser = new Namespace.User( );

or something like that. That's the key. You have to create an instance
in order to get the value of its "Settings" field.

On the other hand, if all you want is the type of Settings, you should
do that like this:

...
myField = pageType.GetFie ld(str);
pageType = myField.FieldTy pe;
}
pageType = pageType.GetFie ld(Location,
System.Reflecti on.BindingFlags .GetField).Fiel dType;

In otherwords, don't call the GetValue() method; use the FieldType
property instead.
Jul 11 '06 #7
Hi Jan,
I should have guessed it was a harder problem than I first thought.

I think Bruce hit the nail on the head when he said that you need to
get an instance. Luckily, the Helper.User field is such an instance.

This code I'm posting really should be made more generic (specifically
the part that navigates down into User.Settings.M yValue). But in any
case, here is some code that gets the "hello from there" string without
knowing the field names:

string input = "Namespace.Subn amespace.Helper .User.Settings. MyValue";

string part1 = null, part2 = input;
while (true)
{
part1 += ParseNextPart(r ef part2);
if (part2 == null)
break;
if (Type.GetType(p art1) != null)
break;
part1 += ".";
}

// can probably turn these next 3 parts into a generic loop of some
sort
string nextPart = ParseNextPart(r ef part2);
FieldInfo fieldInfo = Type.GetType(pa rt1).GetField(n extPart,
BindingFlags.Pu blic | BindingFlags.St atic);
object userInstance = fieldInfo.GetVa lue(null);

nextPart = ParseNextPart(r ef part2);
FieldInfo fieldInfo2 = userInstance.Ge tType().GetFiel d(nextPart,
BindingFlags.Pu blic | BindingFlags.St atic);
object settingsInstanc e = fieldInfo2.GetV alue(userInstan ce);

nextPart = ParseNextPart(r ef part2);
PropertyInfo propertyInfo =
settingsInstanc e.GetType().Get Property(nextPa rt);
object myValueInstance = propertyInfo.Ge tValue(settings Instance,
null);

And here's that ParseNextPart routine:

static string ParseNextPart(r ef string input)
{
int dotIndex = input.IndexOf(' .');
if (dotIndex == -1)
dotIndex = input.Length;
string ret = input.Substring (0, dotIndex);
if (dotIndex + 1 input.Length)
input = null;
else
input = input.Substring (dotIndex + 1);
return ret;
}

Cleaning it up will be left as an exercise for the reader... :)
Hope that helps,
John

Jan Kucera wrote:
Hi John,
unfortunately you assume I know the members declarations at design time.
This is not true, I have to completely search the runtime types to find out
the value as well as the VisualStudio does when hovering over the selected
string during debug.
Jan

"John Duval" <Jo********@gma il.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
Hi Jan,
I was able to get the string "Hello from there" using this code:

string inputString =
"Namespace.Subn amespace.Helper .User.Settings. MyValue";
int lastDot = inputString.Las tIndexOf('.');
string typeName = inputString.Sub string(0, lastDot);
string propertyName = inputString.Sub string(lastDot + 1);

Namespace.User user = new Namespace.User( );
Type userType = user.Settings.G etType();
PropertyInfo pi = userType.GetPro perty(propertyN ame);
object output = pi.GetValue(use r.Settings, null);

There isn't really a problem with the embedded namespace that I saw.

By the way, this code isn't very robust, since it assumes a lot about
the input string. I'm not sure where you get your input string from,
but it seems fragile to me to have to parse the string to separate the
type from the property name. Perhaps the calling code already knows
this information? If not, you'd probably want to add some error
handling in case the property does not exist, or that kind of thing.

Hope that helps,
John

Jan Kucera wrote:
Hi,
I have structure like this:
namespace Namespace
{
public class User
{
public Subnamespace.Se ttings Settings = new Subnamespace.Se ttings();
}
namespace Subnamespace
{
public class Settings
{
public string MyValue { get { return "Hello from there"; } }
}
public static class Helper
{
public static User User = new User();
}
}
}

now, I would like to get the value from string
"Namespace.Subn amespace.Helper .User.Settings. MyValue".

Reinout Waelput gave me on MSDN forums this code:

string Location = "MyNamespace.My Class.TheStruct .TheStruct2.MyV alue";
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflecti on.FieldInfo myField;
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myField = pageType.GetFie ld(str);
pageType = myField.GetValu e(pageType).Get Type();
}
pageType.GetFie ld(Location, System.Reflecti on.BindingFlags .GetField);

Which works well, however fails in my case, probably because of the
Subnamespace.Se ttings declaration. The exception is:
System.Argument Exception was unhandled
Field 'Settings' defined on type 'Namespace.User ' is not a field on the
target object which is of type 'System.Runtime Type'.
at System.Reflecti on.RtFieldInfo. CheckConsistenc y(Object target)
at System.Reflecti on.RtFieldInfo. InternalGetValu e(Object obj,
Boolean
doVisibilityChe ck, Boolean doCheckConsiste ncy)
at System.Reflecti on.RtFieldInfo. GetValue(Object obj)

VisualStudio during debug, when selecting
Namespace.Subna mespace.Helper. User.Settings.M yValue have no troubles.

Any idea how to handle the cross namespace declaration?

Thanks a lot,
Jan
Jul 12 '06 #8
Hi folks!
Thanks to John Duval and Bruce Wood I was able to manage the code that
works and I believe is more general. The string manipulation could be
cleared but this was not the aim.
For all whose are intersted:

public static object DebugWatch(stri ng type)
{
string Location = type;
string s = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
while (Type.GetType(s ) == null)
{
s = string.Concat(s , ".", Location.Substr ing(0, Location.IndexO f(".")));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
}
System.Type pageType = Type.GetType(s) ;
System.Reflecti on.MemberInfo[] myMember;
object value = null;
Location += ".";
while (Location.Index Of(".") >= 1)
{
string str = Location.Substr ing(0, Location.IndexO f("."));
Location = Location.Substr ing(Location.In dexOf(".") + 1);
myMember = pageType.GetMem ber(str);
if (myMember.Lengt h < 1) return null;
else
switch (myMember[0].MemberType)
{
case System.Reflecti on.MemberTypes. Field:
value = ((System.Reflec tion.FieldInfo) myMember[0]).GetValue(valu e);
break;
case System.Reflecti on.MemberTypes. Property:
value = ((System.Reflec tion.PropertyIn fo)myMember[0]).GetValue(valu e,
null);
break;
}
pageType = value.GetType() ;
}
return value;
}

So thank you all!

Jul 17 '06 #9

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

Similar topics

2
11320
by: Alex Vinokur | last post by:
========================================= Windows 2000 CYGWIN_NT-5.0 1.3.22(0.78/3/2) GNU gcc version 3.2 20020927 (prerelease) ========================================= Here is some program which is compiled and works fine. ############################################
0
1870
by: Gianni Mariani | last post by:
I remember seeing a neat template specialization trick posted here a few months ago that allowed the detection of a type containing a member. After a day searching through google archives I come up zip. Anyhow, after much trial and error I came up with this. This "contains_member" template sets value to 1 if the type D contains a typedef named MEMBER of type TD.
6
7507
by: Harshil | last post by:
I am developing an application in vb.net and oracle as my database. my goal is to display the county names (display member) to the user while store county id (value member) in the combo box. when I run my code I get county id displayed in the combo box rather than the county names. When I tried debugging my code I found out the display member and the value member get assigned the same value i.e ID. What could possibly be wrong??
60
5019
by: Dave | last post by:
I'm never quite sure whether to use "this." or not when referring to fields or properties in the same class. It obviously works just fine without it but sometimes I wonder if using this. consistently may make the code easier to understand for someone else, etc. Using "this." makes it immediately clear, for example, that the variable being referred to is a member of the same class and is not declared in the method as a local variable. ...
14
33260
by: Dave Booker | last post by:
It looks like the language is trying to prevent me from doing this sort of thing. Nevertheless, the following compiles, and I'd like to know why it doesn't work the way it should: public class ComponentA { static string s_name = "I am the root class."; public string Name { get {return s_name;} } }
114
7822
by: Jonathan Wood | last post by:
I was just wondering what naming convention most of you use for class variables. Underscore, "m_" prefix, camel case, capitalized, etc? Has one style emerged as the most popular? Thanks for any comments. --
0
266
by: tom arnall | last post by:
> George, did you ever put your object dumper on the internet? tom arnall north spit, ca
1
2576
by: =?Utf-8?B?bWZt?= | last post by:
I have recently migrated to VS.Net 2005, and I am struggling to do something very basic with the combo box. I want to manually loop through a data table and add both the display text and the value manually. The reason I cannot bind the combo box to my data table is that there are more than one field that I want to combine to be the display member. So what I had to do was create yet another data table at run time (or an array list) and...
0
1625
by: msconfused | last post by:
Hello all. I'm hoping that someone can help me solve this error. This is the error that I am getting. Fatal error: Call to a member function on a non-object in /home/paytoo/public_html/prices.php on line 2 Below is the complete contents of the file. <? $sql=$Db1->query("SELECT COUNT(userid) AS total FROM user WHERE refered=''"); $referralcount=$Db1->fetch_array($sql);
11
1515
by: infoseekar | last post by:
Hi I am trying to create a form for new member to create an account. There are 2 php files. File 1 is a form where user can enter their data for registration purpose. File 2 sends typed data to database. My problem is I cann't send MySQL query to database to add a new account. Can any one help me. file 1 'nuform.php' <html> <title> Member Information</title> <?php echo
0
8294
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
8816
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
8494
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
7309
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
6162
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
4150
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
4297
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1924
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1597
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.