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

Home Posts Topics Members FAQ

When I set the location property for a control, stack overflows

I have a Control derived class. When the parent of the control changes the
control's Location property, the stack overflows. I have not found a way to
find out what was on the stack when it does overflow. All I know is that
the program is either stopped due to an exception at the end of Main or has
exited after the Stack Overflow exception. (Both cases are Debug builds
running in the debugger.)

After a lot of trial and error (mostly the latter with a dose of confusion
thrown in), I finally tracked the last statement of mine executed to a line
where, as mentioned, the parent sets the child's location. The location
property is not overridden. I have not subscribed to the child's
LocationChanged event.

I tried full rebuilds in case the executable was corrupt. I tried rebooting
in case Windows was the cause. Neither helped.

Any ideas?
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)
Jul 31 '05 #1
13 2085
Can you post the complete source code for your custom control, as well as
the code that's being used to instantiate the control and add it to the
container, so we can take a look at it?

--
Tim Wilson
..Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:Or******** ******@TK2MSFTN GP09.phx.gbl...
I have a Control derived class. When the parent of the control changes the control's Location property, the stack overflows. I have not found a way to find out what was on the stack when it does overflow. All I know is that
the program is either stopped due to an exception at the end of Main or has exited after the Stack Overflow exception. (Both cases are Debug builds
running in the debugger.)

After a lot of trial and error (mostly the latter with a dose of confusion
thrown in), I finally tracked the last statement of mine executed to a line where, as mentioned, the parent sets the child's location. The location
property is not overridden. I have not subscribed to the child's
LocationChanged event.

I tried full rebuilds in case the executable was corrupt. I tried rebooting in case Windows was the cause. Neither helped.

Any ideas?
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

Jul 31 '05 #2

Will Pittenger wrote:
I have a Control derived class. When the parent of the control changes the
control's Location property, the stack overflows. I have not found a way to
find out what was on the stack when it does overflow. All I know is that
the program is either stopped due to an exception at the end of Main or has
exited after the Stack Overflow exception. (Both cases are Debug builds
running in the debugger.)

After a lot of trial and error (mostly the latter with a dose of confusion
thrown in), I finally tracked the last statement of mine executed to a line
where, as mentioned, the parent sets the child's location. The location
property is not overridden. I have not subscribed to the child's
LocationChanged event.

I tried full rebuilds in case the executable was corrupt. I tried rebooting
in case Windows was the cause. Neither helped.
Do you have a handler in the child for size or location changing? If
you do, and don't check to see if its the same as it was, you will
cause an infinite loop....

The easiest way to find these is to set a breakpoint in a handler and
see how it got there, or to use the debugging facilities to print out
where you are in the methods.
Matt
Any ideas?
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)


Jul 31 '05 #3
Not location. Size, yes, but I checked all that. In fact, I did not know
it was the location until later. Nothing should be dealing with the
location except to set it.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Matt" <ma********@spr ynet.com> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .

Will Pittenger wrote:
I have a Control derived class. When the parent of the control changes
the
control's Location property, the stack overflows. I have not found a way
to
find out what was on the stack when it does overflow. All I know is that
the program is either stopped due to an exception at the end of Main or
has
exited after the Stack Overflow exception. (Both cases are Debug builds
running in the debugger.)

After a lot of trial and error (mostly the latter with a dose of
confusion
thrown in), I finally tracked the last statement of mine executed to a
line
where, as mentioned, the parent sets the child's location. The location
property is not overridden. I have not subscribed to the child's
LocationChanged event.

I tried full rebuilds in case the executable was corrupt. I tried
rebooting
in case Windows was the cause. Neither helped.


Do you have a handler in the child for size or location changing? If
you do, and don't check to see if its the same as it was, you will
cause an infinite loop....

The easiest way to find these is to set a breakpoint in a handler and
see how it got there, or to use the debugging facilities to print out
where you are in the methods.
Matt

Any ideas?
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

Jul 31 '05 #4
Can you post an entire solution containing your custom UserControl, all
supporting custom classes, and a win forms application that demonstrates the
problem at runtime? Ideally if I could have something that I can just unzip,
load into VS, and then hit F5 and watch it blow up then at least I could
start helping after I see the problem. The code that you posted doesn't
compile because it's missing a definition for "memGraphicsDC" . And once I
get it to compile I'll need to be able to reproduce the error. So it's for
these two reasons that it would be nice to have an entire solution (zipped
of course).

--
Tim Wilson
..Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:uL******** ******@tk2msftn gp13.phx.gbl...
The class has just over 3000 lines. (Several nested classes are included.) I am attaching the entire class. If I attempt to simplify the file, the
problem would probably disappear. It would also take me a while to get the code to work again. The class is intended to be a header (like the one in
Explorer). Normally, the header would always be docked. One of the nested classes (colDef) represents one of the columns. It serves as the column's
definition (hence the name) and paints the column inside the header.

Now, I brought colDef up because I built in a way to allow the column to
host a header. This allows for, say a name field, to be split into several fields. (In that case: First Name, Middle Initial, and Last Name.) When
the header is the top level header, it is, as mentioned, docked and there is no problem. When a column hosts the header, it puts the header into
position with the fixChildHeaderP osAndSize member.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in message
news:OF******** ********@TK2MSF TNGP10.phx.gbl. ..
Can you post the complete source code for your custom control, as well as the code that's being used to instantiate the control and add it to the
container, so we can take a look at it?

--
Tim Wilson
.Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:Or******** ******@TK2MSFTN GP09.phx.gbl...
I have a Control derived class. When the parent of the control changes

the
control's Location property, the stack overflows. I have not found a way
to
find out what was on the stack when it does overflow. All I know is

that the program is either stopped due to an exception at the end of Main or

has
exited after the Stack Overflow exception. (Both cases are Debug builds running in the debugger.)

After a lot of trial and error (mostly the latter with a dose of
confusion
thrown in), I finally tracked the last statement of mine executed to a

line
where, as mentioned, the parent sets the child's location. The location property is not overridden. I have not subscribed to the child's
LocationChanged event.

I tried full rebuilds in case the executable was corrupt. I tried

rebooting
in case Windows was the cause. Neither helped.

Any ideas?
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)



Jul 31 '05 #5

Will Pittenger wrote:
Not location. Size, yes, but I checked all that. In fact, I did not know
it was the location until later. Nothing should be dealing with the
location except to set it.


I'd guess one of two possibilities:

1) The window handle is not valid at the time you try to set the
location
2) The size handler is somehow triggering the location reset. Only a
trace can tell you this one. Set a breakpoint in the size handler and
see when it gets called.

Otherwise, I'd post a message to the form to tell it to resize.

Matt

Aug 1 '05 #6
See below.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Matt" <ma********@spr ynet.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
2) The size handler is somehow triggering the location reset. Only a
trace can tell you this one. Set a breakpoint in the size handler and
see when it gets called. I know that now. I just do not understand why moving the control would
cause that stack overflow. It sounds like something after the last point I
see in the debugger.
Otherwise, I'd post a message to the form to tell it to resize.

Aug 1 '05 #7
I have no way to get it onto the server. The text file unzipped was only
101K. That was refused until I zipped it. The solution would be much
larger even zipped. (MS must be skimping there.)

The memGraphicsDC class is nothing special. I was actually about to remove
it due to .NET having everything it was meant to do. Replace the
memGraphicsDC parameters with a Graphics object and replace any references
to memDC.DrawSurfa ce with that Graphics object. In the paint handler, use
the paint event argument handler for the Graphics object.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in message
news:um******** ******@TK2MSFTN GP09.phx.gbl...
Can you post an entire solution containing your custom UserControl, all
supporting custom classes, and a win forms application that demonstrates
the
problem at runtime? Ideally if I could have something that I can just
unzip,
load into VS, and then hit F5 and watch it blow up then at least I could
start helping after I see the problem. The code that you posted doesn't
compile because it's missing a definition for "memGraphicsDC" . And once I
get it to compile I'll need to be able to reproduce the error. So it's for
these two reasons that it would be nice to have an entire solution (zipped
of course).

--
Tim Wilson
.Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:uL******** ******@tk2msftn gp13.phx.gbl...
The class has just over 3000 lines. (Several nested classes are

included.)
I am attaching the entire class. If I attempt to simplify the file, the
problem would probably disappear. It would also take me a while to get

the
code to work again. The class is intended to be a header (like the one
in
Explorer). Normally, the header would always be docked. One of the

nested
classes (colDef) represents one of the columns. It serves as the
column's
definition (hence the name) and paints the column inside the header.

Now, I brought colDef up because I built in a way to allow the column to
host a header. This allows for, say a name field, to be split into

several
fields. (In that case: First Name, Middle Initial, and Last Name.) When
the header is the top level header, it is, as mentioned, docked and there

is
no problem. When a column hosts the header, it puts the header into
position with the fixChildHeaderP osAndSize member.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in
message
news:OF******** ********@TK2MSF TNGP10.phx.gbl. ..
> Can you post the complete source code for your custom control, as well as > the code that's being used to instantiate the control and add it to the
> container, so we can take a look at it?
>
> --
> Tim Wilson
> .Net Compact Framework MVP
>
> "Will Pittenger" <se***********@ see.signature.n et> wrote in message
> news:Or******** ******@TK2MSFTN GP09.phx.gbl...
>> I have a Control derived class. When the parent of the control
>> changes
> the
>> control's Location property, the stack overflows. I have not found a way > to
>> find out what was on the stack when it does overflow. All I know is that >> the program is either stopped due to an exception at the end of Main
>> or
> has
>> exited after the Stack Overflow exception. (Both cases are Debug builds >> running in the debugger.)
>>
>> After a lot of trial and error (mostly the latter with a dose of
>> confusion
>> thrown in), I finally tracked the last statement of mine executed to a
> line
>> where, as mentioned, the parent sets the child's location. The location >> property is not overridden. I have not subscribed to the child's
>> LocationChanged event.
>>
>> I tried full rebuilds in case the executable was corrupt. I tried
> rebooting
>> in case Windows was the cause. Neither helped.
>>
>> Any ideas?
>> ----------
>> Will Pittenger
>> E-Mail: mailto:will.pit tenger1 at gmail.com
>> All mail filtered by Qurb (www.qurb.com)
>>
>>
>
>



Aug 1 '05 #8
Just shoot the zip over to the following email account and I can pick it up
from there. The email address is, of course, mangled.
dllhell [remove] AT hotmail [dot] com

--
Tim Wilson
..Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:e6******** ******@TK2MSFTN GP15.phx.gbl...
I have no way to get it onto the server. The text file unzipped was only
101K. That was refused until I zipped it. The solution would be much
larger even zipped. (MS must be skimping there.)

The memGraphicsDC class is nothing special. I was actually about to remove it due to .NET having everything it was meant to do. Replace the
memGraphicsDC parameters with a Graphics object and replace any references
to memDC.DrawSurfa ce with that Graphics object. In the paint handler, use
the paint event argument handler for the Graphics object.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in message
news:um******** ******@TK2MSFTN GP09.phx.gbl...
Can you post an entire solution containing your custom UserControl, all
supporting custom classes, and a win forms application that demonstrates
the
problem at runtime? Ideally if I could have something that I can just
unzip,
load into VS, and then hit F5 and watch it blow up then at least I could
start helping after I see the problem. The code that you posted doesn't
compile because it's missing a definition for "memGraphicsDC" . And once I get it to compile I'll need to be able to reproduce the error. So it's for these two reasons that it would be nice to have an entire solution (zipped of course).

--
Tim Wilson
.Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:uL******** ******@tk2msftn gp13.phx.gbl...
The class has just over 3000 lines. (Several nested classes are

included.)
I am attaching the entire class. If I attempt to simplify the file, the problem would probably disappear. It would also take me a while to get

the
code to work again. The class is intended to be a header (like the one
in
Explorer). Normally, the header would always be docked. One of the

nested
classes (colDef) represents one of the columns. It serves as the
column's
definition (hence the name) and paints the column inside the header.

Now, I brought colDef up because I built in a way to allow the column to host a header. This allows for, say a name field, to be split into

several
fields. (In that case: First Name, Middle Initial, and Last Name.) When the header is the top level header, it is, as mentioned, docked and there
is
no problem. When a column hosts the header, it puts the header into
position with the fixChildHeaderP osAndSize member.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in
message
news:OF******** ********@TK2MSF TNGP10.phx.gbl. ..
> Can you post the complete source code for your custom control, as
well as
> the code that's being used to instantiate the control and add it to
the > container, so we can take a look at it?
>
> --
> Tim Wilson
> .Net Compact Framework MVP
>
> "Will Pittenger" <se***********@ see.signature.n et> wrote in message
> news:Or******** ******@TK2MSFTN GP09.phx.gbl...
>> I have a Control derived class. When the parent of the control
>> changes
> the
>> control's Location property, the stack overflows. I have not found a way
> to
>> find out what was on the stack when it does overflow. All I know is

that
>> the program is either stopped due to an exception at the end of Main
>> or
> has
>> exited after the Stack Overflow exception. (Both cases are Debug

builds
>> running in the debugger.)
>>
>> After a lot of trial and error (mostly the latter with a dose of
>> confusion
>> thrown in), I finally tracked the last statement of mine executed to

a > line
>> where, as mentioned, the parent sets the child's location. The

location
>> property is not overridden. I have not subscribed to the child's
>> LocationChanged event.
>>
>> I tried full rebuilds in case the executable was corrupt. I tried
> rebooting
>> in case Windows was the cause. Neither helped.
>>
>> Any ideas?
>> ----------
>> Will Pittenger
>> E-Mail: mailto:will.pit tenger1 at gmail.com
>> All mail filtered by Qurb (www.qurb.com)
>>
>>
>
>



Aug 1 '05 #9
You're "memGraphic sDC" class had a good number of method calls that needed
to be translated, using best guess, too. It wasn't as simple as just
swapping out "memGraphic sDC" with Graphics. I also got a few exceptions, all
resource related, when I finally got it to compile and run. Some of the main
reasons why a complete example that just unzips and repros the issue is a
good idea. The issue turns out to be that you were referencing the Size
property from within the "getter" of the Size property definition. So it
just keeps calling itself which eventually results in a stack overflow.
You'll need to change the code to call to the base as shown below.

// Old
public new System.Drawing. Size Size
{
get
{
return Size;
}
set
{
...
}
}

// New
public new System.Drawing. Size Size
{
get
{
return base.Size;
}
set
{
...
}
}

--
Tim Wilson
..Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Actually, I thought up a better way overnight. The form that instantiates
the header (rather than another control for now) is quite small. I have
difficulty believing you need much more. This class would probably help as it would create the header within a header that triggered the problem. That was the header inside the Name column. The main header is docked and does
not appear to have an issue with its location property.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in message
news:up******** ******@TK2MSFTN GP10.phx.gbl...
Just shoot the zip over to the following email account and I can pick it
up
from there. The email address is, of course, mangled.
dllhell [remove] AT hotmail [dot] com

--
Tim Wilson
.Net Compact Framework MVP

"Will Pittenger" <se***********@ see.signature.n et> wrote in message
news:e6******** ******@TK2MSFTN GP15.phx.gbl...
I have no way to get it onto the server. The text file unzipped was only 101K. That was refused until I zipped it. The solution would be much
larger even zipped. (MS must be skimping there.)

The memGraphicsDC class is nothing special. I was actually about to

remove
it due to .NET having everything it was meant to do. Replace the
memGraphicsDC parameters with a Graphics object and replace any
references
to memDC.DrawSurfa ce with that Graphics object. In the paint handler,
use
the paint event argument handler for the Graphics object.
----------
Will Pittenger
E-Mail: mailto:will.pit tenger1 at gmail.com
All mail filtered by Qurb (www.qurb.com)

"Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in
message
news:um******** ******@TK2MSFTN GP09.phx.gbl...
> Can you post an entire solution containing your custom UserControl, all > supporting custom classes, and a win forms application that
> demonstrates
> the
> problem at runtime? Ideally if I could have something that I can just
> unzip,
> load into VS, and then hit F5 and watch it blow up then at least I
> could
> start helping after I see the problem. The code that you posted doesn't > compile because it's missing a definition for "memGraphicsDC" . And once
I
> get it to compile I'll need to be able to reproduce the error. So
it's for
> these two reasons that it would be nice to have an entire solution

(zipped
> of course).
>
> --
> Tim Wilson
> .Net Compact Framework MVP
>
> "Will Pittenger" <se***********@ see.signature.n et> wrote in message
> news:uL******** ******@tk2msftn gp13.phx.gbl...
>> The class has just over 3000 lines. (Several nested classes are
> included.)
>> I am attaching the entire class. If I attempt to simplify the file,

the
>> problem would probably disappear. It would also take me a while to
>> get
> the
>> code to work again. The class is intended to be a header (like the
>> one
>> in
>> Explorer). Normally, the header would always be docked. One of the
> nested
>> classes (colDef) represents one of the columns. It serves as the
>> column's
>> definition (hence the name) and paints the column inside the header.
>>
>> Now, I brought colDef up because I built in a way to allow the
column to
>> host a header. This allows for, say a name field, to be split into
> several
>> fields. (In that case: First Name, Middle Initial, and Last Name.)

When
>> the header is the top level header, it is, as mentioned, docked and

there
> is
>> no problem. When a column hosts the header, it puts the header into
>> position with the fixChildHeaderP osAndSize member.
>> ----------
>> Will Pittenger
>> E-Mail: mailto:will.pit tenger1 at gmail.com
>> All mail filtered by Qurb (www.qurb.com)
>>
>> "Tim Wilson" <TIM(UNDERSCORE )WILSON(AT)ROGE RS(PERIOD)COM> wrote in
>> message
>> news:OF******** ********@TK2MSF TNGP10.phx.gbl. ..
>> > Can you post the complete source code for your custom control, as

well
> as
>> > the code that's being used to instantiate the control and add it
to the
>> > container, so we can take a look at it?
>> >
>> > --
>> > Tim Wilson
>> > .Net Compact Framework MVP
>> >
>> > "Will Pittenger" <se***********@ see.signature.n et> wrote in
message >> > news:Or******** ******@TK2MSFTN GP09.phx.gbl...
>> >> I have a Control derived class. When the parent of the control
>> >> changes
>> > the
>> >> control's Location property, the stack overflows. I have not found a
> way
>> > to
>> >> find out what was on the stack when it does overflow. All I know
>> >> is
> that
>> >> the program is either stopped due to an exception at the end of
>> >> Main
>> >> or
>> > has
>> >> exited after the Stack Overflow exception. (Both cases are Debug
> builds
>> >> running in the debugger.)
>> >>
>> >> After a lot of trial and error (mostly the latter with a dose of
>> >> confusion
>> >> thrown in), I finally tracked the last statement of mine executed
>> >> to

a
>> > line
>> >> where, as mentioned, the parent sets the child's location. The
> location
>> >> property is not overridden. I have not subscribed to the child's
>> >> LocationChanged event.
>> >>
>> >> I tried full rebuilds in case the executable was corrupt. I

tried >> > rebooting
>> >> in case Windows was the cause. Neither helped.
>> >>
>> >> Any ideas?
>> >> ----------
>> >> Will Pittenger
>> >> E-Mail: mailto:will.pit tenger1 at gmail.com
>> >> All mail filtered by Qurb (www.qurb.com)
>> >>
>> >>
>> >
>> >
>>
>>
>>
>>
>
>



Aug 1 '05 #10

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

Similar topics

15
7740
by: Andrew | last post by:
Last night I was reading about implementing my own stack. The example given pushes items on and off the stack at the start and end of each procedure (ie. in a std module). What's not so clear is how this would work with class objects. In this case do you have to push the object on the stack at the start of every public procedure etc. in the class and pop it off at the end? I can't see how else you can know which object is active - or...
13
1186
by: Will Pittenger | last post by:
I have a Control derived class. When the parent of the control changes the control's Location property, the stack overflows. I have not found a way to find out what was on the stack when it does overflow. All I know is that the program is either stopped due to an exception at the end of Main or has exited after the Stack Overflow exception. (Both cases are Debug builds running in the debugger.) After a lot of trial and error (mostly...
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,...
1
9339
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
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...
0
6081
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
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?
1
3322
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
2
2804
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.