473,748 Members | 2,294 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Class problem

I can't seem to figure this one out.

Here is my class structure

namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
In the object browser 'propf' does not show up as a class. It just appears
just as a member variable of foo1. In the object browser if you look at the
system.System object you see several objects that are members variables and
you can expand them.

What am I missing?

thanks,

lee franke
Nov 17 '05 #1
14 1986
Lee,

I don't know what you are expecting to see. This code doesn't compile.
The "public foo propf" is outside of the foo1 definition, and should throw a
compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m
namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...I can't seem to figure this one out.

Here is my class structure

namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
In the object browser 'propf' does not show up as a class. It just appears
just as a member variable of foo1. In the object browser if you look at
the system.System object you see several objects that are members
variables and you can expand them.

What am I missing?

thanks,

lee franke

Nov 17 '05 #2
It compiles fine. But leave that out for a second, how would you get the
desired results then?

thanks,

lee franke
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in
message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

I don't know what you are expecting to see. This code doesn't compile.
The "public foo propf" is outside of the foo1 definition, and should throw
a compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m
namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}


"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
I can't seem to figure this one out.

Here is my class structure

namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
In the object browser 'propf' does not show up as a class. It just
appears just as a member variable of foo1. In the object browser if you
look at the system.System object you see several objects that are members
variables and you can expand them.

What am I missing?

thanks,

lee franke


Nov 17 '05 #3
Lee,

The code, as posted, does not compile fine. You get a "Expected class,
delegate, enum, interface, or struct" error on the line:

public foo propf;
As for the desired results, what are you trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
It compiles fine. But leave that out for a second, how would you get the
desired results then?

thanks,

lee franke
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

I don't know what you are expecting to see. This code doesn't
compile. The "public foo propf" is outside of the foo1 definition, and
should throw a compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m
namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}


"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
I can't seem to figure this one out.

Here is my class structure

namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
In the object browser 'propf' does not show up as a class. It just
appears just as a member variable of foo1. In the object browser if you
look at the system.System object you see several objects that are
members variables and you can expand them.

What am I missing?

thanks,

lee franke



Nov 17 '05 #4
Compiles fine on mine. Are you compiling it as a class library? (mmmm maybe
that is my problem)

Anyway, I want a class that has a member property another class which has
its own public member properties.

When you look at it thru an object browser you see foo1 with a little '+'
sign with foo under it with another little '+' sign.

Make sense?

thanks,

lee
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in
message news:eI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

The code, as posted, does not compile fine. You get a "Expected class,
delegate, enum, interface, or struct" error on the line:

public foo propf;
As for the desired results, what are you trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
It compiles fine. But leave that out for a second, how would you get the
desired results then?

thanks,

lee franke
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

I don't know what you are expecting to see. This code doesn't
compile. The "public foo propf" is outside of the foo1 definition, and
should throw a compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
I can't seem to figure this one out.

Here is my class structure

namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
public foo propf;
}
In the object browser 'propf' does not show up as a class. It just
appears just as a member variable of foo1. In the object browser if you
look at the system.System object you see several objects that are
members variables and you can expand them.

What am I missing?

thanks,

lee franke



Nov 17 '05 #5
Are you sure you are compiling this with csc? :-))
This code can't compile because all members must be declared inside class
(that's what their name says)

This is the most similar code to yours which would compile (if using csc, of
course :D)
namespace name
{
public class foo1
{
public foo propf = new foo();
}
}
"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Compiles fine on mine. Are you compiling it as a class library? (mmmm maybe that is my problem)

Anyway, I want a class that has a member property another class which has
its own public member properties.

When you look at it thru an object browser you see foo1 with a little '+'
sign with foo under it with another little '+' sign.

Make sense?

thanks,

lee
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in message news:eI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

The code, as posted, does not compile fine. You get a "Expected class, delegate, enum, interface, or struct" error on the line:

public foo propf;
As for the desired results, what are you trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
It compiles fine. But leave that out for a second, how would you get the desired results then?

thanks,

lee franke
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

I don't know what you are expecting to see. This code doesn't
compile. The "public foo propf" is outside of the foo1 definition, and
should throw a compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

> namespace name
> {
> public class foo1
> {
> foo propf = new foo();
> }
> public foo propf;
> }

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
>I can't seem to figure this one out.
>
> Here is my class structure
>
> namespace name
> {
> public class foo
> {
> }
> }
>
> namespace name
> {
> public class foo1
> {
> foo propf = new foo();
> }
> public foo propf;
> }
>
>
> In the object browser 'propf' does not show up as a class. It just
> appears just as a member variable of foo1. In the object browser if you> look at the system.System object you see several objects that are
> members variables and you can expand them.
>
> What am I missing?
>
> thanks,
>
> lee franke
>



Nov 17 '05 #6
I'm NOT compiling with csc. I'm compliing thru the VS interface.

Interestingly enought, yours does not compile with teh VS interface.

thanks,

lee
"Lebesgue" <no****@spam.jp > wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Are you sure you are compiling this with csc? :-))
This code can't compile because all members must be declared inside class
(that's what their name says)

This is the most similar code to yours which would compile (if using csc,
of
course :D)
namespace name
{
public class foo1
{
public foo propf = new foo();
}
}
"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Compiles fine on mine. Are you compiling it as a class library? (mmmm

maybe
that is my problem)

Anyway, I want a class that has a member property another class which has
its own public member properties.

When you look at it thru an object browser you see foo1 with a little '+'
sign with foo under it with another little '+' sign.

Make sense?

thanks,

lee
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote

in
message news:eI******** ********@TK2MSF TNGP09.phx.gbl. ..
> Lee,
>
> The code, as posted, does not compile fine. You get a "Expected class, > delegate, enum, interface, or struct" error on the line:
>
> public foo propf;
>
>
> As for the desired results, what are you trying to do?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard. caspershouse.co m
>
> "Lee Franke" <le********@fnc .fujitsu.com> wrote in message
> news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
>> It compiles fine. But leave that out for a second, how would you get the >> desired results then?
>>
>> thanks,
>>
>> lee franke
>>
>>
>> "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote >> in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
>>> Lee,
>>>
>>> I don't know what you are expecting to see. This code doesn't
>>> compile. The "public foo propf" is outside of the foo1 definition,
>>> and
>>> should throw a compiler error.
>>>
>>>
>>> --
>>> - Nicholas Paldino [.NET/C# MVP]
>>> - mv*@spam.guard. caspershouse.co m
>>>
>>>> namespace name
>>>> {
>>>> public class foo1
>>>> {
>>>> foo propf = new foo();
>>>> }
>>>> public foo propf;
>>>> }
>>>
>>> "Lee Franke" <le********@fnc .fujitsu.com> wrote in message
>>> news:%2******** **********@TK2M SFTNGP11.phx.gb l...
>>>>I can't seem to figure this one out.
>>>>
>>>> Here is my class structure
>>>>
>>>> namespace name
>>>> {
>>>> public class foo
>>>> {
>>>> }
>>>> }
>>>>
>>>> namespace name
>>>> {
>>>> public class foo1
>>>> {
>>>> foo propf = new foo();
>>>> }
>>>> public foo propf;
>>>> }
>>>>
>>>>
>>>> In the object browser 'propf' does not show up as a class. It just
>>>> appears just as a member variable of foo1. In the object browser if you >>>> look at the system.System object you see several objects that are
>>>> members variables and you can expand them.
>>>>
>>>> What am I missing?
>>>>
>>>> thanks,
>>>>
>>>> lee franke
>>>>
>>>
>>>
>>
>>
>
>



Nov 17 '05 #7

I am using VS 2003 and the following compiles
namespace TestNGCSharp
{
public class foo {
}

public class foo1 {
public foo propf = new foo();
}

}
In the original posting, propf was declared inside the namespace but
outside a class definition and should (does on my machine) give an
error.
Variable cannot exist free floating in a namespace.

A possibility is that there is a mixup somewhere on parentheses
public class foo {

public class foo1 {
foo propf = new foo();
}

public foo propf;

}

does compile becuase the compiler sees foo1 as an embedded class and
foo as a variable within the foo class - strange but syntactically
correct.

- Check on the parentheses.
- Try with a new file and only the lines from the posting / examples
and see what happens.
hth,
Alan.

Nov 17 '05 #8
Dear Mr. Lee Franke,
VS is using csc to compile C# projects. csc stands for Microsoft Visual C#
..NET Compiler, that's the thing that compiles C# source code. I just wanted
to make a joke, in other language (and using different compiler), your
sample would compile, maybe.
Your sample is not a valid C# code.

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:OR******** ******@TK2MSFTN GP12.phx.gbl...
I'm NOT compiling with csc. I'm compliing thru the VS interface.

Interestingly enought, yours does not compile with teh VS interface.

thanks,

lee
"Lebesgue" <no****@spam.jp > wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Are you sure you are compiling this with csc? :-))
This code can't compile because all members must be declared inside class (that's what their name says)

This is the most similar code to yours which would compile (if using csc, of
course :D)
namespace name
{
public class foo1
{
public foo propf = new foo();
}
}
"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Compiles fine on mine. Are you compiling it as a class library? (mmmm

maybe
that is my problem)

Anyway, I want a class that has a member property another class which has its own public member properties.

When you look at it thru an object browser you see foo1 with a little '+' sign with foo under it with another little '+' sign.

Make sense?

thanks,

lee
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om>
wrote in
message news:eI******** ********@TK2MSF TNGP09.phx.gbl. ..
> Lee,
>
> The code, as posted, does not compile fine. You get a "Expected

class,
> delegate, enum, interface, or struct" error on the line:
>
> public foo propf;
>
>
> As for the desired results, what are you trying to do?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard. caspershouse.co m
>
> "Lee Franke" <le********@fnc .fujitsu.com> wrote in message
> news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
>> It compiles fine. But leave that out for a second, how would you get

the
>> desired results then?
>>
>> thanks,
>>
>> lee franke
>>
>>
>> "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om>

wrote
>> in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
>>> Lee,
>>>
>>> I don't know what you are expecting to see. This code doesn't
>>> compile. The "public foo propf" is outside of the foo1 definition,
>>> and
>>> should throw a compiler error.
>>>
>>>
>>> --
>>> - Nicholas Paldino [.NET/C# MVP]
>>> - mv*@spam.guard. caspershouse.co m
>>>
>>>> namespace name
>>>> {
>>>> public class foo1
>>>> {
>>>> foo propf = new foo();
>>>> }
>>>> public foo propf;
>>>> }
>>>
>>> "Lee Franke" <le********@fnc .fujitsu.com> wrote in message
>>> news:%2******** **********@TK2M SFTNGP11.phx.gb l...
>>>>I can't seem to figure this one out.
>>>>
>>>> Here is my class structure
>>>>
>>>> namespace name
>>>> {
>>>> public class foo
>>>> {
>>>> }
>>>> }
>>>>
>>>> namespace name
>>>> {
>>>> public class foo1
>>>> {
>>>> foo propf = new foo();
>>>> }
>>>> public foo propf;
>>>> }
>>>>
>>>>
>>>> In the object browser 'propf' does not show up as a class. It just
>>>> appears just as a member variable of foo1. In the object browser
if you
>>>> look at the system.System object you see several objects that are
>>>> members variables and you can expand them.
>>>>
>>>> What am I missing?
>>>>
>>>> thanks,
>>>>
>>>> lee franke
>>>>
>>>
>>>
>>
>>
>
>



Nov 17 '05 #9
Lee,

I compiled it as a class library, yes.

You are talking about the property grid, not the object browser (the
object browser is a very specific utility in VS.NET).

To get your class to show the properties of the exposed objects, you
want to adorn the classes that you want to be expanded with the
TypeConverter attribute, indicating the type of the
ExpandableObjec tConverter, like so:
[TypeConverter(t ypeof(Expandabl eObjectConverte r))]
namespace name
{
public class foo
{
}
}

namespace name
{
public class foo1
{
foo propf = new foo();
}
}

Of course, it is meaningless in the above example, because you don't
have any public properties exposing foo, and foo doesn't have any properties
itself. Try this:

namespace name
{
[TypeConverter(t ypeof(Expandabl eObjectConverte r))]
public class foo
{
public int MyProp
{
get
{
return 0;
}
set
{

}
}
}
}

namespace name
{
public class foo1
{
private foo propf = new foo();

public foo Foo
{
get { return propf; }
set { propf = value; }
}
}
}


--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Compiles fine on mine. Are you compiling it as a class library? (mmmm
maybe that is my problem)

Anyway, I want a class that has a member property another class which has
its own public member properties.

When you look at it thru an object browser you see foo1 with a little '+'
sign with foo under it with another little '+' sign.

Make sense?

thanks,

lee
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:eI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

The code, as posted, does not compile fine. You get a "Expected
class, delegate, enum, interface, or struct" error on the line:

public foo propf;
As for the desired results, what are you trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:eZ******** ********@TK2MSF TNGP11.phx.gbl. ..
It compiles fine. But leave that out for a second, how would you get the
desired results then?

thanks,

lee franke
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:OI******** ********@TK2MSF TNGP09.phx.gbl. ..
Lee,

I don't know what you are expecting to see. This code doesn't
compile. The "public foo propf" is outside of the foo1 definition, and
should throw a compiler error.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

> namespace name
> {
> public class foo1
> {
> foo propf = new foo();
> }
> public foo propf;
> }

"Lee Franke" <le********@fnc .fujitsu.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
>I can't seem to figure this one out.
>
> Here is my class structure
>
> namespace name
> {
> public class foo
> {
> }
> }
>
> namespace name
> {
> public class foo1
> {
> foo propf = new foo();
> }
> public foo propf;
> }
>
>
> In the object browser 'propf' does not show up as a class. It just
> appears just as a member variable of foo1. In the object browser if
> you look at the system.System object you see several objects that are
> members variables and you can expand them.
>
> What am I missing?
>
> thanks,
>
> lee franke
>



Nov 17 '05 #10

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

Similar topics

1
2659
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...
9
4995
by: Banaticus Bart | last post by:
I wrote an abstract base class from which I've derived a few other classes. I'd like to create a base class array where each element is an instance of a derived object. I can create a base class pointer which points to an instance of a derived class, but when I pass that base class pointer into a function, it can't access the derived object's public functions. Although, the base class pointer does call the appropriate virtual function...
21
4076
by: Jon Slaughter | last post by:
I have a class that is basicaly duplicated throughout several files with only members names changing according to the class name yet with virtually the exact same coding going on. e.g. class A { std::vector<B*> Bs; public:
21
1979
by: Mark Broadbent | last post by:
Consider the following statements //------- Item i = Basket.Items; //indexer is used to return instance of class Item Basket.Items.Remove(); //method on class item is fired item i = new ("Pear"); Basket.Items.Add(item); //------
5
3433
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS 5), but fails on IIS 6 running on a Win2003 server. The web uses Pages derived from a custom class I wrote (which itself derives from Page) to provide some common functionality. The Page_Load handler the failing webpage starts out like this: ...
8
3522
by: tshad | last post by:
I cannot seem to get the asp:textbox to use classes. Style works fine. I am trying to set the textbox to act like a label in some instance so it doesn't have a border, readonly and the background is grey. I have a class set as: ..table2Label{ border-style:none; background-color:#F6F6F6; }
4
1688
by: Tony Johansson | last post by:
Hello! I have one solution file that consist of three project. One project that build the exe file called A One project that build a user control dll. Here we have a class called B One project that build a class library dll. Here we have a class called C We have one dependency and that is from the user control to the class library because in the constructor for class B in the user control we have a call to
5
1996
by: tony | last post by:
Hello! This is a rather long mail but it's a very interesting one. I hope you read it. I have tried several times to get an answer to this mail but I have not get any answer saying something like this is a bug or that .NET doesn't support what I trying to do. I hope that one that is is microsoft certified read this because this must be a bug.
3
3758
by: Hamilton Woods | last post by:
Diehards, I developed a template matrix class back around 1992 using Borland C++ 4.5 (ancestor of C++ Builder) and haven't touched it until a few days ago. I pulled it from the freezer and thawed it out. I built a console app using Microsoft Visual C++ 6 (VC++) and it worked great. Only one line in the header file had to be commented out. I built a console app using Borland C++ Builder 5. The linker complained of references to...
3
1906
by: TamusJRoyce | last post by:
Hello. This is my first thread here. My problem has probably been came across by a lot of people, but tutorials and things I've seen don't address it (usually too basic). My problem is that I would like to use Abstraction for a "plug-in" like interface to classes. class ThreadHandle { /* stuff here not yet dealing with threads */
0
8822
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
9528
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
9359
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9310
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
8235
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...
0
6072
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4592
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...
2
2774
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2206
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.