473,406 Members | 2,705 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Control location problem on a form ( C# )

Hi! I posted this question in browser_ctl group as well but got no results.

I have a form with embedded WebBrowser. Upon clicking on a link in the embedded webbrowser that calls JavaScript's window.open() call where I pass different width, height, top, left and other parameters, I open a new form of the same type as the original.

I noticed that the webbrowser in the newly opened form is shifted to the right and bottom leaving gray areas on the left and top of the form. I narrowed down the problem to the Top and Left parameters being pass in the call to window.open().
If I set these parameters = 0, the browser positions itself nicely within the form.
If these parameters != 0 , the browser is shifted to the right and bottom.

I figured that I can adjust the layout etc in the ClientToHostWindow() event which seems to fire. However, I have not been able to reposition the browser. What can I do ? If I do not fix this, I'll have to spend months fixing all 7500+ instances of the window.open() in all web pages. Any samples on how to do it, please?
I am not that great of a C# programmer, so may be somebody can show me
how to adjust the position of webbrowser within the form, please.

I am also open to the idea of taking the browser control and painting it onto a new
location. I am open to whatever works as I am pretty desperate.


Many Thanks in Advance,

--Mike

Expand AllCollapse All
Nov 16 '05 #1
7 6501
Mike,

can you paste the code where you create a new form (after clicking link) and
adding browser control?

It will help me to investigate. I believe this problem can be fixed.

Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:AC**********************************@microsof t.com...
Hi! I posted this question in browser_ctl group as well but got no results.
I have a form with embedded WebBrowser. Upon clicking on a link in the embedded webbrowser that calls JavaScript's window.open() call where I pass
different width, height, top, left and other parameters, I open a new form
of the same type as the original.
I noticed that the webbrowser in the newly opened form is shifted to the right and bottom leaving gray areas on the left and top of the form. I
narrowed down the problem to the Top and Left parameters being pass in the
call to window.open(). If I set these parameters = 0, the browser positions itself nicely within the form. If these parameters != 0 , the browser is shifted to the right and bottom.

I figured that I can adjust the layout etc in the ClientToHostWindow() event which seems to fire. However, I have not been able to reposition the
browser. What can I do ? If I do not fix this, I'll have to spend months
fixing all 7500+ instances of the window.open() in all web pages. Any
samples on how to do it, please? I am not that great of a C# programmer, so may be somebody can show me
how to adjust the position of webbrowser within the form, please.

I am also open to the idea of taking the browser control and painting it onto a new location. I am open to whatever works as I am pretty desperate.


Many Thanks in Advance,

--Mike

Expand AllCollapse All

Nov 16 '05 #2
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and Settings\conmxz\Desktop\TestPage.htm");
}

The test page contains 2 links. 1 is the one that calls window.open() without specifying the Left and Top. As you can see, it works great.
The second is the one giving me all the problem in the world. I am pretty desperate as the alternative is to modify almost 8000 pages.

"Shakir Hussain" wrote:
Mike,

can you paste the code where you create a new form (after clicking link) and
adding browser control?

It will help me to investigate. I believe this problem can be fixed.

Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:AC**********************************@microsof t.com...
Hi! I posted this question in browser_ctl group as well but got no

results.

I have a form with embedded WebBrowser. Upon clicking on a link in the

embedded webbrowser that calls JavaScript's window.open() call where I pass
different width, height, top, left and other parameters, I open a new form
of the same type as the original.

I noticed that the webbrowser in the newly opened form is shifted to the

right and bottom leaving gray areas on the left and top of the form. I
narrowed down the problem to the Top and Left parameters being pass in the
call to window.open().
If I set these parameters = 0, the browser positions itself nicely within

the form.
If these parameters != 0 , the browser is shifted to the right and bottom.

I figured that I can adjust the layout etc in the ClientToHostWindow()

event which seems to fire. However, I have not been able to reposition the
browser. What can I do ? If I do not fix this, I'll have to spend months
fixing all 7500+ instances of the window.open() in all web pages. Any
samples on how to do it, please?
I am not that great of a C# programmer, so may be somebody can show me
how to adjust the position of webbrowser within the form, please.

I am also open to the idea of taking the browser control and painting it

onto a new
location. I am open to whatever works as I am pretty desperate.


Many Thanks in Advance,

--Mike

Expand AllCollapse All


Nov 16 '05 #3
Mike,

I am investigating your code and able to see your problem. Give me some
time. Will bring up a solution hopefully.

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:F2**********************************@microsof t.com...
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and Settings\conmxz\Desktop\TestPage.htm"); }

The test page contains 2 links. 1 is the one that calls window.open() without specifying the Left and Top. As you can see, it works great. The second is the one giving me all the problem in the world. I am pretty desperate as the alternative is to modify almost 8000 pages.
"Shakir Hussain" wrote:
Mike,

can you paste the code where you create a new form (after clicking link) and adding browser control?

It will help me to investigate. I believe this problem can be fixed.

Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:AC**********************************@microsof t.com...
Hi! I posted this question in browser_ctl group as well but got no

results.

I have a form with embedded WebBrowser. Upon clicking on a link in the
embedded webbrowser that calls JavaScript's window.open() call where I pass different width, height, top, left and other parameters, I open a new form of the same type as the original.

I noticed that the webbrowser in the newly opened form is shifted to
the right and bottom leaving gray areas on the left and top of the form. I
narrowed down the problem to the Top and Left parameters being pass in the call to window.open().
If I set these parameters = 0, the browser positions itself nicely
within the form.
If these parameters != 0 , the browser is shifted to the right and
bottom.
I figured that I can adjust the layout etc in the ClientToHostWindow()

event which seems to fire. However, I have not been able to reposition

the browser. What can I do ? If I do not fix this, I'll have to spend months
fixing all 7500+ instances of the window.open() in all web pages. Any
samples on how to do it, please?
I am not that great of a C# programmer, so may be somebody can show me
how to adjust the position of webbrowser within the form, please.

I am also open to the idea of taking the browser control and painting
it onto a new
location. I am open to whatever works as I am pretty desperate.


Many Thanks in Advance,

--Mike

Expand AllCollapse All


Nov 16 '05 #4
Mike,

Iadded two lines of code (dirty way ofcourse) to get the layout properly in
the 2nd case. Replace this function in the sample you gave to me. It works

private void OnDocumentComplete(object pDisp, ref object URL)
{
//Debug.WriteLine("OnDocumentComplete");
try
{
// TODO parse the string and get rid off server
HTMLDocument myDoc =(HTMLDocument) this.webMain.Document;
if(null!=myDoc)
{
string pageTitle = myDoc.title.Trim();
if (pageTitle != string.Empty)
{
this.Text =
pageTitle.Substring(pageTitle.IndexOf("-")+ 1);
}
else
{
this.Text = myDoc.url;
}
}
}
catch
{
this.Text = "PRS";
}

//ADD THESE 2 LINES OF CODE
this.webMain.Dock = System.Windows.Forms.DockStyle.None;
this.webMain.Dock = System.Windows.Forms.DockStyle.Fill;
}

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:F2**********************************@microsof t.com...
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and Settings\conmxz\Desktop\TestPage.htm"); }

The test page contains 2 links. 1 is the one that calls window.open() without specifying the Left and Top. As you can see, it works great. The second is the one giving me all the problem in the world. I am pretty desperate as the alternative is to modify almost 8000 pages.
"Shakir Hussain" wrote:
Mike,

can you paste the code where you create a new form (after clicking link) and adding browser control?

It will help me to investigate. I believe this problem can be fixed.

Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:AC**********************************@microsof t.com...
Hi! I posted this question in browser_ctl group as well but got no

results.

I have a form with embedded WebBrowser. Upon clicking on a link in the
embedded webbrowser that calls JavaScript's window.open() call where I pass different width, height, top, left and other parameters, I open a new form of the same type as the original.

I noticed that the webbrowser in the newly opened form is shifted to
the right and bottom leaving gray areas on the left and top of the form. I
narrowed down the problem to the Top and Left parameters being pass in the call to window.open().
If I set these parameters = 0, the browser positions itself nicely
within the form.
If these parameters != 0 , the browser is shifted to the right and
bottom.
I figured that I can adjust the layout etc in the ClientToHostWindow()

event which seems to fire. However, I have not been able to reposition

the browser. What can I do ? If I do not fix this, I'll have to spend months
fixing all 7500+ instances of the window.open() in all web pages. Any
samples on how to do it, please?
I am not that great of a C# programmer, so may be somebody can show me
how to adjust the position of webbrowser within the form, please.

I am also open to the idea of taking the browser control and painting
it onto a new
location. I am open to whatever works as I am pretty desperate.


Many Thanks in Advance,

--Mike

Expand AllCollapse All


Nov 16 '05 #5
hahaha,

Thx for the offer man. Any way try out the solution i gave you. It works
fine in my machine, with just 2 lines of code.

//attaching the previous post

I added two lines of code (dirty way ofcourse) to get the layout properly in
the 2nd case. Replace this function in the sample you gave to me. It works

private void OnDocumentComplete(object pDisp, ref object URL)
{
//Debug.WriteLine("OnDocumentComplete");
try
{
// TODO parse the string and get rid off server
HTMLDocument myDoc =(HTMLDocument) this.webMain.Document;
if(null!=myDoc)
{
string pageTitle = myDoc.title.Trim();
if (pageTitle != string.Empty)
{
this.Text =
pageTitle.Substring(pageTitle.IndexOf("-")+ 1);
}
else
{
this.Text = myDoc.url;
}
}
}
catch
{
this.Text = "PRS";
}

//ADD THESE 2 LINES OF CODE
this.webMain.Dock = System.Windows.Forms.DockStyle.None;
this.webMain.Dock = System.Windows.Forms.DockStyle.Fill;
}

--
Shak
(Houston)


"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:A1**********************************@microsof t.com...
Free pizza if you solve the problem!

"Shakir Hussain" wrote:
Mike,

I am investigating your code and able to see your problem. Give me some
time. Will bring up a solution hopefully.

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:F2**********************************@microsof t.com...
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and

Settings\conmxz\Desktop\TestPage.htm");
}

The test page contains 2 links. 1 is the one that calls window.open()

without specifying the Left and Top. As you can see, it works great.
The second is the one giving me all the problem in the world. I am pretty
desperate as the alternative is to modify almost 8000 pages.

"Shakir Hussain" wrote:

> Mike,
>
> can you paste the code where you create a new form (after clicking
link) and
> adding browser control?
>
> It will help me to investigate. I believe this problem can be fixed.
>
> Shak
> (Houston)
>
>
> "Mike" <Mi**@discussions.microsoft.com> wrote in message
> news:AC**********************************@microsof t.com...
> > Hi! I posted this question in browser_ctl group as well but got no
> results.
> >
> > I have a form with embedded WebBrowser. Upon clicking on a link
in the
> embedded webbrowser that calls JavaScript's window.open() call where
I pass
> different width, height, top, left and other parameters, I open a
new form
> of the same type as the original.
> >
> > I noticed that the webbrowser in the newly opened form is shifted
to the
> right and bottom leaving gray areas on the left and top of the form.
I > narrowed down the problem to the Top and Left parameters being pass in the
> call to window.open().
> > If I set these parameters = 0, the browser positions itself nicely

within
> the form.
> > If these parameters != 0 , the browser is shifted to the right and

bottom.
> >
> > I figured that I can adjust the layout etc in the
ClientToHostWindow() > event which seems to fire. However, I have not been able to reposition the
> browser. What can I do ? If I do not fix this, I'll have to spend
months > fixing all 7500+ instances of the window.open() in all web pages. Any > samples on how to do it, please?
> > I am not that great of a C# programmer, so may be somebody can show me > > how to adjust the position of webbrowser within the form, please.
> >
> > I am also open to the idea of taking the browser control and

painting it
> onto a new
> > location. I am open to whatever works as I am pretty desperate.
> >
> >
> >
> >
> > Many Thanks in Advance,
> >
> > --Mike
> >
> >
> >
> > Expand AllCollapse All
>
>
>


Nov 16 '05 #6
Wow! Thank you very much !!!
You are a genious!

I insist you email me your name and address to mi*****@mailinator.com

I'll treat you with pizza as promissed.

G-d bless,

--Mike Z....
"Shakir Hussain" wrote:
Mike,

Iadded two lines of code (dirty way ofcourse) to get the layout properly in
the 2nd case. Replace this function in the sample you gave to me. It works

private void OnDocumentComplete(object pDisp, ref object URL)
{
//Debug.WriteLine("OnDocumentComplete");
try
{
// TODO parse the string and get rid off server
HTMLDocument myDoc =(HTMLDocument) this.webMain.Document;
if(null!=myDoc)
{
string pageTitle = myDoc.title.Trim();
if (pageTitle != string.Empty)
{
this.Text =
pageTitle.Substring(pageTitle.IndexOf("-")+ 1);
}
else
{
this.Text = myDoc.url;
}
}
}
catch
{
this.Text = "PRS";
}

//ADD THESE 2 LINES OF CODE
this.webMain.Dock = System.Windows.Forms.DockStyle.None;
this.webMain.Dock = System.Windows.Forms.DockStyle.Fill;
}

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:F2**********************************@microsof t.com...
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and

Settings\conmxz\Desktop\TestPage.htm");
}

The test page contains 2 links. 1 is the one that calls window.open()

without specifying the Left and Top. As you can see, it works great.
The second is the one giving me all the problem in the world. I am pretty

desperate as the alternative is to modify almost 8000 pages.

"Shakir Hussain" wrote:
Mike,

can you paste the code where you create a new form (after clicking link) and adding browser control?

It will help me to investigate. I believe this problem can be fixed.

Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:AC**********************************@microsof t.com...
> Hi! I posted this question in browser_ctl group as well but got no
results.
>
> I have a form with embedded WebBrowser. Upon clicking on a link in the embedded webbrowser that calls JavaScript's window.open() call where I pass different width, height, top, left and other parameters, I open a new form of the same type as the original.
>
> I noticed that the webbrowser in the newly opened form is shifted to the right and bottom leaving gray areas on the left and top of the form. I
narrowed down the problem to the Top and Left parameters being pass in the call to window.open().
> If I set these parameters = 0, the browser positions itself nicely within the form.
> If these parameters != 0 , the browser is shifted to the right and bottom. >
> I figured that I can adjust the layout etc in the ClientToHostWindow()
event which seems to fire. However, I have not been able to reposition the browser. What can I do ? If I do not fix this, I'll have to spend months
fixing all 7500+ instances of the window.open() in all web pages. Any
samples on how to do it, please?
> I am not that great of a C# programmer, so may be somebody can show me
> how to adjust the position of webbrowser within the form, please.
>
> I am also open to the idea of taking the browser control and painting it onto a new
> location. I am open to whatever works as I am pretty desperate.
>
>
>
>
> Many Thanks in Advance,
>
> --Mike
>
>
>
> Expand AllCollapse All


Nov 16 '05 #7
Mike,

I am glad that your problem is fixed. As i mentioned, its a dirty solution.
I will investigate your code more today and will figure out a better
solution.

Things i observed, after adding that two lines

a) When i press the 2nd link multiple times (pretty fast, which is a rare
case)
your form hangs with the new code.

I have mailed you couple of minutes ago from my office email :)

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:DD**********************************@microsof t.com...
Wow! Thank you very much !!!
You are a genious!

I insist you email me your name and address to mi*****@mailinator.com

I'll treat you with pizza as promissed.

G-d bless,

--Mike Z....
"Shakir Hussain" wrote:
Mike,

Iadded two lines of code (dirty way ofcourse) to get the layout properly in the 2nd case. Replace this function in the sample you gave to me. It works
private void OnDocumentComplete(object pDisp, ref object URL)
{
//Debug.WriteLine("OnDocumentComplete");
try
{
// TODO parse the string and get rid off server
HTMLDocument myDoc =(HTMLDocument) this.webMain.Document;
if(null!=myDoc)
{
string pageTitle = myDoc.title.Trim();
if (pageTitle != string.Empty)
{
this.Text =
pageTitle.Substring(pageTitle.IndexOf("-")+ 1);
}
else
{
this.Text = myDoc.url;
}
}
}
catch
{
this.Text = "PRS";
}

//ADD THESE 2 LINES OF CODE
this.webMain.Dock = System.Windows.Forms.DockStyle.None;
this.webMain.Dock = System.Windows.Forms.DockStyle.Fill;
}

--
Shak
(Houston)
"Mike" <Mi**@discussions.microsoft.com> wrote in message
news:F2**********************************@microsof t.com...
Hi! Thank you for taking a look. Please navigate to

http://users.adelphia.net/~mikezat/m...pplication.zip

Inside, you'll find the entire C# solution as well as the TestPage.htm
Open the solution and change the url in the form load event to
wherever you place the html file:

private void PRSPopupForm_Load(object sender, System.EventArgs e)
{
this.Browser_Navigate(@"C:\Documents and

Settings\conmxz\Desktop\TestPage.htm");
}

The test page contains 2 links. 1 is the one that calls window.open()

without specifying the Left and Top. As you can see, it works great.
The second is the one giving me all the problem in the world. I am pretty
desperate as the alternative is to modify almost 8000 pages.

"Shakir Hussain" wrote:

> Mike,
>
> can you paste the code where you create a new form (after clicking
link) and
> adding browser control?
>
> It will help me to investigate. I believe this problem can be fixed.
>
> Shak
> (Houston)
>
>
> "Mike" <Mi**@discussions.microsoft.com> wrote in message
> news:AC**********************************@microsof t.com...
> > Hi! I posted this question in browser_ctl group as well but got no
> results.
> >
> > I have a form with embedded WebBrowser. Upon clicking on a link
in the
> embedded webbrowser that calls JavaScript's window.open() call where
I pass
> different width, height, top, left and other parameters, I open a
new form
> of the same type as the original.
> >
> > I noticed that the webbrowser in the newly opened form is shifted
to the
> right and bottom leaving gray areas on the left and top of the form.
I > narrowed down the problem to the Top and Left parameters being pass in the
> call to window.open().
> > If I set these parameters = 0, the browser positions itself nicely

within
> the form.
> > If these parameters != 0 , the browser is shifted to the right and

bottom.
> >
> > I figured that I can adjust the layout etc in the
ClientToHostWindow() > event which seems to fire. However, I have not been able to reposition the
> browser. What can I do ? If I do not fix this, I'll have to spend
months > fixing all 7500+ instances of the window.open() in all web pages. Any > samples on how to do it, please?
> > I am not that great of a C# programmer, so may be somebody can show me > > how to adjust the position of webbrowser within the form, please.
> >
> > I am also open to the idea of taking the browser control and

painting it
> onto a new
> > location. I am open to whatever works as I am pretty desperate.
> >
> >
> >
> >
> > Many Thanks in Advance,
> >
> > --Mike
> >
> >
> >
> > Expand AllCollapse All
>
>
>


Nov 16 '05 #8

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

Similar topics

0
by: Duncan Mole | last post by:
Hi, I have created a control which draws a title bar and provides a drop down menu for a Smart Device Application. It seemed to work fine until I came to add an event handler to act on Paint...
7
by: BradC | last post by:
(VB.NET 2002, Windows app). I'm going to be provided a two-letter string like "BV" or "TP" that represents a location. I then need to perform some actions on several form controls that have...
3
by: Charles Law | last post by:
Sorry for reposting this question, but I did not get a single answer last time, and I'm sure you guys must have some thoughts on the matter. I have a user control which can be dragged and dropped...
9
by: Charles Law | last post by:
I have a form on which user controls are placed at runtime. When a control is added to the form a handler is added for an event that a high-level object raises, which must be handled by the new...
0
by: Matthew | last post by:
All, I have searched google and the newsgroups but can't find anything the same as what I am experiencing (though I may have missed something). I have controls (textboxes) within UserControls...
4
by: gsb58 | last post by:
Hi! On a form I have a calendar. The form is rezised to 1024x768 (Don't worry - this is a training case) when loaded. Now I want to center the calendar on the form so that its edges are...
3
by: Mike Jakes | last post by:
I hope that someone can offer a little advice on this one - I've searched the group but can't find an answer. I think that I'm doing something really stupid or missing something trivial, but see...
0
by: Brian Henry | last post by:
Ok I've never implemented a snap location before so I dont really know what im doing wrong here... anyways, I am making a custom slider control that takes dates as its values instead of integers......
3
by: steve | last post by:
Hi All I have textboxes within a TableLayoutpanel and I want to be able to position an independant control adjacent to a selected textbox This independent control allows selection of text to...
1
by: =?Utf-8?B?UmF5IE1pdGNoZWxs?= | last post by:
Hello, I have a control that is inside a GroupBox, and that GroupBox is inside another group box. I would like to find the location of the control relative to the form itself. When I examine...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...
0
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...
0
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...
0
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,...

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.