473,785 Members | 2,851 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Asynchronous Callback Not Updating Web Page???

TC
Hello,

I am making an asynchronous call to a webservice and trying to update the
web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e)
{
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC
Nov 18 '05 #1
8 3018
if you are calling web service from an ASP.Net page on the server side, you
need wait till the call completes. use IAsynchResult.W aitHandle.WaitO ne()
check this if you need more info..
http://msdn.microsoft.com/library/de...ce09032002.asp

Av.
http://www.avnrao.blogspot.com
"TC" <ge**********@y ahoo.com> wrote in message
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the
web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e)
{
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC

Nov 18 '05 #2
TC
Hey folks,

I need C# assistance for non-blocking, asynch callback from the web page.

I am currently receiving the appropriate values back but the page does not
update.

Does anyone know why?

Regards,

TC
"avnrao" <av*@newsgroups .com> wrote in message
news:O$******** ******@TK2MSFTN GP09.phx.gbl...
if you are calling web service from an ASP.Net page on the server side, you need wait till the call completes. use IAsynchResult.W aitHandle.WaitO ne()
check this if you need more info..
http://msdn.microsoft.com/library/de...ce09032002.asp
Av.
http://www.avnrao.blogspot.com
"TC" <ge**********@y ahoo.com> wrote in message
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e) {
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC


Nov 18 '05 #3
Hello,

ASP.NET application uses request/response architecture, and it may not be
suitable for asynchronous call to a web service. Regarding your code:

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e)
{
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

After BeginWordCount, the response will be write back to client, won't wait
here. You have to use synchronous call here.

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #4
You initiate the call but don't wait for the result. The goal of an
asynchornous call is for example :
- make the call to a web service
- do some work
- get the result (will still wait if not already available)

That way you can do some work in parallel.

If you need the result from the webservice and you have nothing to do in
between making an asynchronous call is useless.

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the
web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e)
{
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC

Nov 18 '05 #5
TC
Actually, the idea would be to free up the GUI so that a user isn't stuck.
That makes an asynch call very useful. Then the user can do whatever work
they wish to and when the webservice returns the appropriate information,
the application can finish the work behind the scenes.

At least this is what I am trying to do.

Todd


"Patrice" <no****@nowhere .com> wrote in message
news:uF******** ******@TK2MSFTN GP09.phx.gbl...
You initiate the call but don't wait for the result. The goal of an
asynchornous call is for example :
- make the call to a web service
- do some work
- get the result (will still wait if not already available)

That way you can do some work in parallel.

If you need the result from the webservice and you have nothing to do in
between making an asynchronous call is useless.

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender, System.EventArg s e) {
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC


Nov 18 '05 #6
"TC" <ge**********@y ahoo.com> wrote in message
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the
web page with the results.

The page is not updating.

Does anybody know why???
Yes. Your page does not exist when your callback is called.
private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}


When this method is called back, the request has already completed, the
response has already been sent to the client, and you are out of luck.

I recommend that you find some sample code which does this and follow that
example. I can recommend it because you're not going to find any such sample
code - the entire idea is contrary to the way that ASP.NET works.

See
http://msdn.microsoft.com/library/de...singstages.asp.
--
John Saunders
John.Saunders at SurfControl.com

Nov 18 '05 #7
Humm. Sorry if I restate something ovbious...

The page the user sees is just some HTML that is rendered by the server side
APSX page. Once the ASPX page is finished the user see client side HTML code
and the page doesn't exist any more server side. You nedd then another HTTP
request to be in touch again with server side code.

I see basically two options :

- you need the webservice call to be completed to have a meaningfull page :
- out of luck, needs to wait the result from the webservice to construct
the final HTML page
- use an IFRAME that calls an ASPX page that calls this webservice. The
user can see a part of the final UI (done by the main ASPX page) but will
have still to wait a bit to see the inner frame content(done be the ASPX
page referenced by the IFRAME). Of course, if the webservice is quite
qucik,, the first optino is probably still the simpler.

- you don't need the webservice call to be completed (will be used sometimes
later)
- you could queue these calls to have them done seperately from the user
page (AFAIK .NET proivides something along these lines was called MSMQ
previously)

Do you recognize a case in which you are ?

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:es******** ******@TK2MSFTN GP11.phx.gbl...
Actually, the idea would be to free up the GUI so that a user isn't stuck.
That makes an asynch call very useful. Then the user can do whatever work
they wish to and when the webservice returns the appropriate information,
the application can finish the work behind the scenes.

At least this is what I am trying to do.

Todd


"Patrice" <no****@nowhere .com> wrote in message
news:uF******** ******@TK2MSFTN GP09.phx.gbl...
You initiate the call but don't wait for the result. The goal of an
asynchornous call is for example :
- make the call to a web service
- do some work
- get the result (will still wait if not already available)

That way you can do some work in parallel.

If you need the result from the webservice and you have nothing to do in
between making an asynchronous call is useless.

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

I am making an asynchronous call to a webservice and trying to update the web page with the results.

The page is not updating.

Does anybody know why???

Below is my code:

public class ASPNetSuperhero : System.Web.UI.P age
{
protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
protected System.Web.UI.W ebControls.Text Box txtMessage;
protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;

private localhost.ASPNe tSuperheroServi ce GetWordCount;
protected System.Web.UI.W ebControls.Labe l lblWordCount;
private AsyncCallback MyWordCountCall back;

private void Page_Load(objec t sender, System.EventArg s e)
{
// Put user code to initialize the page here
}

#region Web Form Designer generated code
override protected void OnInit(EventArg s e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeCompo nent();
base.OnInit(e);
}

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.btnStartFi leSearch.Click += new
System.EventHan dler(this.btnSt artFileSearch_C lick);
this.Load += new System.EventHan dler(this.Page_ Load);

}
#endregion

private void btnStartFileSea rch_Click(objec t sender,
System.EventArg s
e) {
MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
/* Create new instance of the webservice that provides
the required functionality*/
GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
}

private void WordCountCallba ck(IAsyncResult Result)
{
// Call the webservice method in order to get current word count
this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
}
}
Regards,

TC



Nov 18 '05 #8
TC
Hey Folks,

Thanks for the help!

Basically, because what I wish to do is contrary to the way in which ASP
works, I'm just gonna wait for the response to return.

Thanks Again,

TC

"Patrice" <no****@nowhere .com> wrote in message
news:eu******** ******@TK2MSFTN GP12.phx.gbl...
Humm. Sorry if I restate something ovbious...

The page the user sees is just some HTML that is rendered by the server side APSX page. Once the ASPX page is finished the user see client side HTML code and the page doesn't exist any more server side. You nedd then another HTTP request to be in touch again with server side code.

I see basically two options :

- you need the webservice call to be completed to have a meaningfull page : - out of luck, needs to wait the result from the webservice to construct the final HTML page
- use an IFRAME that calls an ASPX page that calls this webservice. The user can see a part of the final UI (done by the main ASPX page) but will
have still to wait a bit to see the inner frame content(done be the ASPX
page referenced by the IFRAME). Of course, if the webservice is quite
qucik,, the first optino is probably still the simpler.

- you don't need the webservice call to be completed (will be used sometimes later)
- you could queue these calls to have them done seperately from the user page (AFAIK .NET proivides something along these lines was called MSMQ
previously)

Do you recognize a case in which you are ?

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:es******** ******@TK2MSFTN GP11.phx.gbl...
Actually, the idea would be to free up the GUI so that a user isn't stuck. That makes an asynch call very useful. Then the user can do whatever work they wish to and when the webservice returns the appropriate information, the application can finish the work behind the scenes.

At least this is what I am trying to do.

Todd


"Patrice" <no****@nowhere .com> wrote in message
news:uF******** ******@TK2MSFTN GP09.phx.gbl...
You initiate the call but don't wait for the result. The goal of an
asynchornous call is for example :
- make the call to a web service
- do some work
- get the result (will still wait if not already available)

That way you can do some work in parallel.

If you need the result from the webservice and you have nothing to do in between making an asynchronous call is useless.

Patrice
"TC" <ge**********@y ahoo.com> a écrit dans le message de
news:uN******** ******@TK2MSFTN GP10.phx.gbl...
> Hello,
>
> I am making an asynchronous call to a webservice and trying to update
the
> web page with the results.
>
> The page is not updating.
>
> Does anybody know why???
>
> Below is my code:
>
> public class ASPNetSuperhero : System.Web.UI.P age
> {
> protected System.Web.UI.W ebControls.Drop DownList drplstFilePaths ;
> protected System.Web.UI.W ebControls.Text Box txtMessage;
> protected System.Web.UI.W ebControls.Butt on btnStartFileSea rch;
>
> private localhost.ASPNe tSuperheroServi ce GetWordCount;
> protected System.Web.UI.W ebControls.Labe l lblWordCount;
> private AsyncCallback MyWordCountCall back;
>
> private void Page_Load(objec t sender, System.EventArg s e)
> {
> // Put user code to initialize the page here
> }
>
> #region Web Form Designer generated code
> override protected void OnInit(EventArg s e)
> {
> //
> // CODEGEN: This call is required by the ASP.NET Web Form

Designer. > //
> InitializeCompo nent();
> base.OnInit(e);
> }
>
> /// <summary>
> /// Required method for Designer support - do not modify
> /// the contents of this method with the code editor.
> /// </summary>
> private void InitializeCompo nent()
> {
> this.btnStartFi leSearch.Click += new
> System.EventHan dler(this.btnSt artFileSearch_C lick);
> this.Load += new System.EventHan dler(this.Page_ Load);
>
> }
> #endregion
>
> private void btnStartFileSea rch_Click(objec t sender,

System.EventArg s
e)
> {
> MyWordCountCall back = new AsyncCallback(W ordCountCallbac k);
> /* Create new instance of the webservice that provides
> the required functionality*/
> GetWordCount=ne w localhost.ASPNe tSuperheroServi ce();
> GetWordCount.Be ginWordCount(My WordCountCallba ck,GetWordCount );
> }
>
> private void WordCountCallba ck(IAsyncResult Result)
> {
> // Call the webservice method in order to get current word count
> this.txtMessage .Text=GetWordCo unt.EndWordCoun t(Result);
> }
> }
>
>
> Regards,
>
> TC
>
>



Nov 18 '05 #9

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

Similar topics

1
2098
by: Sai Kit Tong | last post by:
I have to interface managed application with my legacy dll. I have employed the wrapper approach but I have to deal with the asynchronous callback from the legacy dll, which likely goes through a thread other than the initial calling thread. I got the idea from MSDN and other responses from this group by using the delegate. However, for garabage collection issue, I need to pin the delegate. Since my callback is asynchronous, I have been...
4
1567
by: Chris | last post by:
Hello, With asynchronous programming : Why does the callback-function (running in a worker thread) may not update the state of a control on the main-form ? The docs say that you must use a MethodInvoker instead as in following example :
2
1589
by: Ingo Schasiepen | last post by:
Hi there, i'm evaluating if c# is suited to replace a script language. Most of the elements of this language can be replaced with a c#-library, but it also has some realtime-like elements. E.g., in this language, the following code is possible: { Int32 i=0; OnEvent ( ... ) {
1
2841
by: Natalia DeBow | last post by:
Hi, I am working on a Windows-based client-server application. I am involved in the development of the remote client modules. I am using asynchronous delegates to obtain information from remote server and display this info on the UI. From doing some research, I know that the way my implementation works today is not thread-safe, because essentially my worker thread updates the UI, which is BAD. So, here I am trying to figure out how...
1
1279
by: strout | last post by:
I am using ASP.net as web service client. I call BeginInvoke in a proxy and use a callback function to process the result. However, the callback function is not the same thread of the web page. I end up doing nothing, even though the callback function( updating the web page ) is called. I found lots of example use windows form raise event. When I try to create
0
960
by: niphylosoft | last post by:
I've throughly searched this group but I couldn't find the answer to forcing a page refresh. I'm using a my web service on a web page, but when my private void GetResult(IAsyncResult result) is invoked, any change to the web page (such as updating a label) isn't visible (since the client does not receive an updated page from the server unless requesting it). Popping a message box on the browser does work however.
7
9716
by: Siv | last post by:
Hi, I have a stored procedure that I want to execute and then wait in a loop showing a timer whilst it completes and then carry on once I get notification that it has completed. The main reason for this being to stop the user thinking the application has frozen when in fact it is just waiting for a long SP to complete. Another reason for doing it like this is that I also have had a problem in the past where the SP takes longer than the...
2
4112
by: archana | last post by:
Hi all, I am processing asynchronous web request with setting timeout using RegisterWaitForSingleObject. On beginwebrequest i am sending address of one callback which i want to execute when asynchronous web request complete. My doubt is if timeout error occured while processing asynchronous webrquest, will call back i set on beginwebreqest gets executed or not.
0
1757
by: Bishoy George | last post by:
Hi, I have a asp.net 2.0 web application. I want to implement the asynchronous model through http handler in web.config ------------------------------------------------------------------------------------------------------------------------- My web.config file: ---------------------
0
9480
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
10092
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
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8974
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
7500
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
6740
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
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2880
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.