473,725 Members | 2,118 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

WithEvents does not work for me in Win98?

This works fine in Win XP but does not work at all in Win 98.
Private WithEvents objIExplorer As InternetExplore r

I have to do it like this to get it to work in Win 98
Dim objIExplorer As InternetExplore r But then I cant see when a user exit my
objIExplorer and than an error will show up when I try to open a link in the
IE window that does not exist...

What can I do about this and way does it not work in win 98?

(This does not work at all with Private WithEvents objIExplorer As
InternetExplore r)
If objIExplorer Is Nothing Then
Set objIExplorer = New InternetExplore r ' ******* Here is where the
Error will show up****
With objIExplorer
.AddressBar = True
.MenuBar = True
.StatusBar = True
.ToolBar = True
.Visible = True
DoEvents
End With
End If

Yours, Jonas
Jul 17 '05 #1
7 4850
"does not work" is insufficient. What is the error message.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"Jonas" <ba*******@hotm ail.com> wrote in message
news:ZY******** ************@ne wsb.telia.net.. .
: This works fine in Win XP but does not work at all in Win 98.
: Private WithEvents objIExplorer As InternetExplore r
:
: I have to do it like this to get it to work in Win 98
: Dim objIExplorer As InternetExplore r But then I cant see when a user exit
my
: objIExplorer and than an error will show up when I try to open a link in
the
: IE window that does not exist...
:
: What can I do about this and way does it not work in win 98?
:
: (This does not work at all with Private WithEvents objIExplorer As
: InternetExplore r)
: If objIExplorer Is Nothing Then
: Set objIExplorer = New InternetExplore r ' ******* Here is where the
: Error will show up****
: With objIExplorer
: .AddressBar = True
: .MenuBar = True
: .StatusBar = True
: .ToolBar = True
: .Visible = True
: DoEvents
: End With
: End If
:
: Yours, Jonas
:
:
Jul 17 '05 #2
This is the error message:

Run-time error '-2147023067 (80070725)':
Automation error

"Randy Birch" <rg************ @mvps.org> skrev i meddelandet
news:wA******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
"does not work" is insufficient. What is the error message.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"Jonas" <ba*******@hotm ail.com> wrote in message
news:ZY******** ************@ne wsb.telia.net.. .
: This works fine in Win XP but does not work at all in Win 98.
: Private WithEvents objIExplorer As InternetExplore r
:
: I have to do it like this to get it to work in Win 98
: Dim objIExplorer As InternetExplore r But then I cant see when a user exit my
: objIExplorer and than an error will show up when I try to open a link in
the
: IE window that does not exist...
:
: What can I do about this and way does it not work in win 98?
:
: (This does not work at all with Private WithEvents objIExplorer As
: InternetExplore r)
: If objIExplorer Is Nothing Then
: Set objIExplorer = New InternetExplore r ' ******* Here is where the
: Error will show up****
: With objIExplorer
: .AddressBar = True
: .MenuBar = True
: .StatusBar = True
: .ToolBar = True
: .Visible = True
: DoEvents
: End With
: End If
:
: Yours, Jonas
:
:

Jul 17 '05 #3
Knowledge Base

PRB: Run-time error -2147023071 (80070721) using WithEventsPSS ID Number:
171456

Article Last Modified on 1/11/2001
--------------------------------------------------------------------------------
The information in this article applies to:
a.. Microsoft Visual Basic Control Creation Edition for Windows 5.0
b.. Microsoft Visual Basic Learning Edition for Windows 5.0
c.. Microsoft Visual Basic Learning Edition for Windows 6.0
d.. Microsoft Visual Basic Professional Edition for Windows 5.0
e.. Microsoft Visual Basic Professional Edition for Windows 6.0
f.. Microsoft Visual Basic Enterprise Edition for Windows 5.0
g.. Microsoft Visual Basic Enterprise Edition for Windows 6.0

--------------------------------------------------------------------------------

This article was previously published under Q171456
SYMPTOMS
When using an ActiveX component that defines events, you may receive the
following error when this component is accessed through DCOM.

Run-time error -2147023071 (80070721)
Automation Error

This error does not occur if the ActiveX component is used locally or if the
client does not instantiate the remote object using the WithEvents
statement.
CAUSE
This problem occurs because you did not set the appropriate identity for the
server.
RESOLUTION
To resolve this problem, refer to the following articles in the Microsoft
Knowledge Base:
267836 HOWTO: Create a DCOM Client/Server with Events by Using Visual Basic

268550 HOWTO: Use Dcomcnfg for a Visual Basic DCOM Client/Server Application

269330 HOWTO: Troubleshoot DCOM for Visual Basic Client/Server Applications

Additional query words: -2147023071 (80070721)

Keywords: kberrmsg kbprb KB171456
Technology: kbAudDeveloper kbVB500 kbVB500Search kbVB600 kbVB600Search
kbVBA500Search kbVBSearch kbZNotKeyword2 kbZNotKeyword3 kbZNotKeyword6

--------------------------------------------------------------------------------

Send feedback to Microsoft

© 2003 Microsoft Corporation. All rights reserved.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"Jonas" <ba*******@hotm ail.com> wrote in message
news:2V******** ************@ne wsc.telia.net.. .
: This is the error message:
:
: Run-time error '-2147023067 (80070725)':
: Automation error
:
:
:
: "Randy Birch" <rg************ @mvps.org> skrev i meddelandet
: news:wA******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
: > "does not work" is insufficient. What is the error message.
: >
: > --
: >
: > Randy Birch
: > MVP Visual Basic
: > http://vbnet.mvps.org/
: > Please respond only to the newsgroups so all can benefit.
: >
: > There's no place like 127.0.0.1
: >
: >
: > "Jonas" <ba*******@hotm ail.com> wrote in message
: > news:ZY******** ************@ne wsb.telia.net.. .
: > : This works fine in Win XP but does not work at all in Win 98.
: > : Private WithEvents objIExplorer As InternetExplore r
: > :
: > : I have to do it like this to get it to work in Win 98
: > : Dim objIExplorer As InternetExplore r But then I cant see when a user
: exit
: > my
: > : objIExplorer and than an error will show up when I try to open a link
in
: > the
: > : IE window that does not exist...
: > :
: > : What can I do about this and way does it not work in win 98?
: > :
: > : (This does not work at all with Private WithEvents objIExplorer As
: > : InternetExplore r)
: > : If objIExplorer Is Nothing Then
: > : Set objIExplorer = New InternetExplore r ' ******* Here is where
the
: > : Error will show up****
: > : With objIExplorer
: > : .AddressBar = True
: > : .MenuBar = True
: > : .StatusBar = True
: > : .ToolBar = True
: > : .Visible = True
: > : DoEvents
: > : End With
: > : End If
: > :
: > : Yours, Jonas
: > :
: > :
: >
: >
:
:
Jul 17 '05 #4
Knowledge Base

PRB: WithEvents Does Not Work with Remote AutomationPSS ID Number: 172312

Article Last Modified on 4/18/2003
--------------------------------------------------------------------------------
The information in this article applies to:
a.. Microsoft Visual Basic Control Creation Edition for Windows 5.0
b.. Microsoft Visual Basic Learning Edition for Windows 5.0
c.. Microsoft Visual Basic Professional Edition for Windows 5.0
d.. Microsoft Visual Basic Enterprise Edition for Windows 5.0

--------------------------------------------------------------------------------

This article was previously published under Q172312
SYMPTOMS
When attempting to raise a remote event across Remote Automation, the
following run-time error appears:

-2147467259(8000 4005) , Automation error
CAUSE
Remote Automation does not currently support the use of WithEvents.
RESOLUTION
To support remote events with Visual Basic 5.0, use DCOM instead of Remote
Automation. You can also use callbacks to simulate raising events remotely.
STATUS
This behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
Use the following steps on the server machine:

1.. Start Visual Basic 5.0 and create a new ActiveX EXE project.
2.. From the Project menu, selectProject properties and change the Project
name to "Projtest."
3.. Add a Class Module and change its name to "Testclass. "
4.. In Testclass' Code window, input following code:
Public Event propchange(newv As String)
Private propt As String

Public Sub showfrm()
MsgBox "asdfl"

End Sub

Public Property Get testp() As String
testp = propt
End Property

Public Property Let testp(ByVal vNewValue As String)
propt = vNewValue
RaiseEvent propchange(prop t)
End Property

5.. On the File menu, click "Make ProjTest.exe."
6.. Copy the corresponding .exe, .tlb, and .vbr files to the client
machine.
7.. Start the Automation Manager and the RemAuto Connection Manager to set
necessary server-side configuration for using Projtest.testcl ass for Remote
Automation.
Use the following steps on the client machine:

1.. Run Projtest.exe, which was copied from the Server side in the above
steps.
2.. Start the RemAuto Connection Manager to set necessary Client-side
configuration for using Projtest.testcl ass.
3.. Launch Visual Basic 5.0 and create a new Standard EXE project with a
standard form.
4.. From the Project menu, click References and select the "Projtest" box.
5.. In Form1's Code window, input following code:
Public WithEvents eventp As testclass

Private Sub eventp_propchan ge(newv As String)
MsgBox newv
End Sub

Private Sub Form_Load()
Dim a As New testclass
a.showfrm
Set eventp = a
a.testp = "test string"
End Sub

6.. Run the project and check if the Remote Automation connection is
correct, the message box should pop up on the server-side machine.
7.. Click OK to close the message box on the server-side machine.
Result
When the line "Set eventp = a" executes, you will get the following run-
time error:

-2147467259(8000 4005) , Automation error
Expected behavior
A message box should appear on the client-side machine because the server
raised the Propchange event.

NOTE: If both the client and the server are running on the same machine
(with local automation), you will see the expected behavior.
Keywords: kbprb KB172312
Technology: kbAudDeveloper kbVB500 kbVB500Search kbVBA500Search kbVBSearch
kbZNotKeyword2 kbZNotKeyword3 kbZNotKeyword6

--------------------------------------------------------------------------------

Send feedback to Microsoft

© 2003 Microsoft Corporation. All rights reserved.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"Jonas" <ba*******@hotm ail.com> wrote in message
news:2V******** ************@ne wsc.telia.net.. .
: This is the error message:
:
: Run-time error '-2147023067 (80070725)':
: Automation error
:
:
:
: "Randy Birch" <rg************ @mvps.org> skrev i meddelandet
: news:wA******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
: > "does not work" is insufficient. What is the error message.
: >
: > --
: >
: > Randy Birch
: > MVP Visual Basic
: > http://vbnet.mvps.org/
: > Please respond only to the newsgroups so all can benefit.
: >
: > There's no place like 127.0.0.1
: >
: >
: > "Jonas" <ba*******@hotm ail.com> wrote in message
: > news:ZY******** ************@ne wsb.telia.net.. .
: > : This works fine in Win XP but does not work at all in Win 98.
: > : Private WithEvents objIExplorer As InternetExplore r
: > :
: > : I have to do it like this to get it to work in Win 98
: > : Dim objIExplorer As InternetExplore r But then I cant see when a user
: exit
: > my
: > : objIExplorer and than an error will show up when I try to open a link
in
: > the
: > : IE window that does not exist...
: > :
: > : What can I do about this and way does it not work in win 98?
: > :
: > : (This does not work at all with Private WithEvents objIExplorer As
: > : InternetExplore r)
: > : If objIExplorer Is Nothing Then
: > : Set objIExplorer = New InternetExplore r ' ******* Here is where
the
: > : Error will show up****
: > : With objIExplorer
: > : .AddressBar = True
: > : .MenuBar = True
: > : .StatusBar = True
: > : .ToolBar = True
: > : .Visible = True
: > : DoEvents
: > : End With
: > : End If
: > :
: > : Yours, Jonas
: > :
: > :
: >
: >
:
:
Jul 17 '05 #5
*It is Jonas posting as BadOmen*

I don't really get this... I'm a newbe...
I don't have a server as far as I know...

I have installed Visual Studio 6.0 Professional Edition and using Visual
Basic 6 on Win 98.

I am using this:
Private WithEvents objIExplorer As InternetExplore r
To open a Internet explorer window and be able to know when the user exit
that window so I must make a new when an URL is pressed.

Is there a way of making it work?
"Randy Birch" <rg************ @mvps.org> skrev i meddelandet
news:Ec******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
Knowledge Base

PRB: WithEvents Does Not Work with Remote AutomationPSS ID Number: 172312

Article Last Modified on 4/18/2003
-------------------------------------------------------------------------- ------ The information in this article applies to:
a.. Microsoft Visual Basic Control Creation Edition for Windows 5.0
b.. Microsoft Visual Basic Learning Edition for Windows 5.0
c.. Microsoft Visual Basic Professional Edition for Windows 5.0
d.. Microsoft Visual Basic Enterprise Edition for Windows 5.0

-------------------------------------------------------------------------- ------
This article was previously published under Q172312
SYMPTOMS
When attempting to raise a remote event across Remote Automation, the
following run-time error appears:

-2147467259(8000 4005) , Automation error
CAUSE
Remote Automation does not currently support the use of WithEvents.
RESOLUTION
To support remote events with Visual Basic 5.0, use DCOM instead of Remote
Automation. You can also use callbacks to simulate raising events remotely. STATUS
This behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
Use the following steps on the server machine:

1.. Start Visual Basic 5.0 and create a new ActiveX EXE project.
2.. From the Project menu, selectProject properties and change the Project name to "Projtest."
3.. Add a Class Module and change its name to "Testclass. "
4.. In Testclass' Code window, input following code:
Public Event propchange(newv As String)
Private propt As String

Public Sub showfrm()
MsgBox "asdfl"

End Sub

Public Property Get testp() As String
testp = propt
End Property

Public Property Let testp(ByVal vNewValue As String)
propt = vNewValue
RaiseEvent propchange(prop t)
End Property

5.. On the File menu, click "Make ProjTest.exe."
6.. Copy the corresponding .exe, .tlb, and .vbr files to the client
machine.
7.. Start the Automation Manager and the RemAuto Connection Manager to set necessary server-side configuration for using Projtest.testcl ass for Remote Automation.
Use the following steps on the client machine:

1.. Run Projtest.exe, which was copied from the Server side in the above
steps.
2.. Start the RemAuto Connection Manager to set necessary Client-side
configuration for using Projtest.testcl ass.
3.. Launch Visual Basic 5.0 and create a new Standard EXE project with a
standard form.
4.. From the Project menu, click References and select the "Projtest" box. 5.. In Form1's Code window, input following code:
Public WithEvents eventp As testclass

Private Sub eventp_propchan ge(newv As String)
MsgBox newv
End Sub

Private Sub Form_Load()
Dim a As New testclass
a.showfrm
Set eventp = a
a.testp = "test string"
End Sub

6.. Run the project and check if the Remote Automation connection is
correct, the message box should pop up on the server-side machine.
7.. Click OK to close the message box on the server-side machine.
Result
When the line "Set eventp = a" executes, you will get the following run-
time error:

-2147467259(8000 4005) , Automation error
Expected behavior
A message box should appear on the client-side machine because the server
raised the Propchange event.

NOTE: If both the client and the server are running on the same machine
(with local automation), you will see the expected behavior.
Keywords: kbprb KB172312
Technology: kbAudDeveloper kbVB500 kbVB500Search kbVBA500Search kbVBSearch
kbZNotKeyword2 kbZNotKeyword3 kbZNotKeyword6

-------------------------------------------------------------------------- ------
Send feedback to Microsoft

© 2003 Microsoft Corporation. All rights reserved.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"Jonas" <ba*******@hotm ail.com> wrote in message
news:2V******** ************@ne wsc.telia.net.. .
: This is the error message:
:
: Run-time error '-2147023067 (80070725)':
: Automation error
:
:
:
: "Randy Birch" <rg************ @mvps.org> skrev i meddelandet
: news:wA******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
: > "does not work" is insufficient. What is the error message.
: >
: > --
: >
: > Randy Birch
: > MVP Visual Basic
: > http://vbnet.mvps.org/
: > Please respond only to the newsgroups so all can benefit.
: >
: > There's no place like 127.0.0.1
: >
: >
: > "Jonas" <ba*******@hotm ail.com> wrote in message
: > news:ZY******** ************@ne wsb.telia.net.. .
: > : This works fine in Win XP but does not work at all in Win 98.
: > : Private WithEvents objIExplorer As InternetExplore r
: > :
: > : I have to do it like this to get it to work in Win 98
: > : Dim objIExplorer As InternetExplore r But then I cant see when a user
: exit
: > my
: > : objIExplorer and than an error will show up when I try to open a link in
: > the
: > : IE window that does not exist...
: > :
: > : What can I do about this and way does it not work in win 98?
: > :
: > : (This does not work at all with Private WithEvents objIExplorer As
: > : InternetExplore r)
: > : If objIExplorer Is Nothing Then
: > : Set objIExplorer = New InternetExplore r ' ******* Here is where
the
: > : Error will show up****
: > : With objIExplorer
: > : .AddressBar = True
: > : .MenuBar = True
: > : .StatusBar = True
: > : .ToolBar = True
: > : .Visible = True
: > : DoEvents
: > : End With
: > : End If
: > :
: > : Yours, Jonas
: > :
: > :
: >
: >
:
:

Jul 17 '05 #6
What that's basically saying is open your dcom config app and ensure dcom is
set up to allow this.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"BadOmen" <ba*******@hotm ail.com> wrote in message
news:j%******** ************@ne wsc.telia.net.. .
: *It is Jonas posting as BadOmen*
:
: I don't really get this... I'm a newbe...
: I don't have a server as far as I know...
:
: I have installed Visual Studio 6.0 Professional Edition and using Visual
: Basic 6 on Win 98.
:
: I am using this:
: Private WithEvents objIExplorer As InternetExplore r
: To open a Internet explorer window and be able to know when the user exit
: that window so I must make a new when an URL is pressed.
:
: Is there a way of making it work?
Jul 17 '05 #7

"Randy Birch" <rg************ @mvps.org> skrev i meddelandet
news:0b******** ***********@new s04.bloor.is.ne t.cable.rogers. com...
What that's basically saying is open your dcom config app and ensure dcom is set up to allow this.

I don't know of a dcom config app... What is that...and what is dcom...

I'm really new to this... =)

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.

There's no place like 127.0.0.1
"BadOmen" <ba*******@hotm ail.com> wrote in message
news:j%******** ************@ne wsc.telia.net.. .
: *It is Jonas posting as BadOmen*
:
: I don't really get this... I'm a newbe...
: I don't have a server as far as I know...
:
: I have installed Visual Studio 6.0 Professional Edition and using Visual : Basic 6 on Win 98.
:
: I am using this:
: Private WithEvents objIExplorer As InternetExplore r
: To open a Internet explorer window and be able to know when the user exit : that window so I must make a new when an URL is pressed.
:
: Is there a way of making it work?

Jul 17 '05 #8

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

Similar topics

2
4058
by: Jakob Bengtsson | last post by:
Hi, I have a form (which cannot be serialized). In the form's code I declare an object like this (never mind the object nor class name, it's for illustration only): Private WithEvents eventPublisher as EventPublisherClass
1
3014
by: Rob Smeets | last post by:
Hi you Gurus, I would like your help with my 'challenge' ;-) Any help or advice would be greatly appriciated!! I've created a Class wich retrieves FTP files. In that Class there are several events telling me the filetransfer succeeded or Failed. I have to get a hole range of files so making it serial would take a lot of time. (BTW MGET commands doesn't work for me) So i would like to start multiple gets at the same time and at the...
0
1601
by: Macadair | last post by:
I develop mid-range multi-user applications for a large site. Currently Win98 and Office97 are the standards used however we are slowly moving to WinXP. Due to the site upgrade cost, we are staying with Office97 for a little longer. This means we will have Win98 and WinXP PC's running Access97. When I compile an Access97 application on a Win98 PC, the resultant .mde functions correctly on both Win98 and WinXP PC's running Access97....
8
2592
by: mheden | last post by:
Hello all, I'm using an Access 97 front-end with a SQL Server 2000 back-end. One particular bit of code runs a stored procedure to obtain a rowcount from one of the back-end tables. This works fine on one PC, but not on another. For the life of me, I can't see why it fails to work in the 'faulty' environment. This is the code:-
5
9859
by: Bradley Grant | last post by:
I am trying to write a program to access a device through USB port, there is some Visual Basic program examples that work with the device, but I am trying to write a program using C#, no luck yet, but the problem may lie with the following code that was written in Visual Basic, and I was wondering what the C# equivalent of WithEvents is? Any help/ideas would be appreciated. 'Declare an object variable to hold the device collection.
4
2336
by: Brian Lowe | last post by:
I have several aspx pages that include a couple of asp:placeholder controls, an example is myPage.aspx. The page inherits from a custom class 'myClass' which inherits System.Web.UI.Page which lets me ad my own properties and methods to a bunch of pages in my app. I want code in myClass to set the contents of the placeholders in myPage. If I insert the mark-up <asp:placeholder id="myPlaceholder" runat="server"
8
3188
by: Bob Day | last post by:
Using VS 2003, VB.NET, MSDE If an event is raised in a class that was NOT instantiated with the WithEvents key word, is that event effectively ignored? Or, another way to phrase the question, for a class that raises events, can you sometimes instantiate using WithEvents when you want to catch the raised event, and sometimes instantiate it without the key work WithEvents, when you don't want to catch the rasied event?
0
995
by: sexy-trousers | last post by:
Is there a specific OS requirement for a win forms client written in VB.Net utilizing .net 1.1 that uses WSE2? Is the requirement to simply have .net 1.1. installed on the platform? i.e. the stated requirements for the WSE 2.0 SP3 download don't list Win98 or NT4 SP6a - which the .net 1.1 framework does support. So the question is will my WSE2 Winforms client calling my Web Service run on a Win98 or NT4 box?
3
1662
by: Vemund Halvorsen | last post by:
Hi, Im having some trouble getting Addhandler to work. Using withevents everything is working fine. But with AddHandler I get no callback. The code below works fin if I declare _tcp as a private class member (etc. Dim WithEvents mTcp as New MyTCP). Classes/modules; module Main, class MyCtrl and class MyTcp. Any tips why using AddHandler dont work?
0
8752
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
9401
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
9257
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
9176
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
9113
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
8097
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
6011
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
4519
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
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.