473,799 Members | 2,665 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Does anyone see my mistake?

Does anyone see my mistake? I'm trying to load the school dropdownlist when
the user select a state from the state dropdownlist. The states drop down
list loads, but the school drop down list donot.

****Database Object Class.......... ..............

' Methods
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -

Public Function GetStateList() As DataSet
Return RunProcedure( _
"GetState", New IDataParameter( ) {}, "States")
End Function

Public Function GetSchoolByStat eList(ByVal StateID As String) As
DataSet
Dim parameters As SqlParameter() = { _
New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
parameters(0).V alue = StateID
Return RunProcedure( _
"GetSchoolBySta te", New IDataParameter( ) {}, "SchoolByState" )
End Function

****Business Object Class.......... ..............

' Private variables
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
Private Shared myStateID As String

' Methods
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -

Public Shared Function GetStates() As DataSet

Dim tool As New StuLotto.Accoun ts.Data.Account sTool

Return tool.GetStateLi st

End Function

Public Shared Function GetSchoolByStat e() As DataSet

Dim tool As New StuLotto.Accoun ts.Data.Account sTool

Return tool.GetSchoolB yStateList(mySt ateID)

' Properties
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
Public Shared Property StateID() As String
Get
Return myStateID
End Get
Set(ByVal value As String)
myStateID = value
End Set
End Property

End Class

End Function

****.aspx Codebehind page........... ............... .

' Bind the state drop-down combobox
Dim States As New DataSet
States = Accounts.Busine ss.AccountsTool .GetStates
SStateDDL.DataS ource = States
SStateDDL.DataT extField = "Descriptio n"
SStateDDL.DataV alueField = "StateID"
SStateDDL.DataB ind()

' Bind the school by selected state drop-down combobox
Private Sub SStateDDL_Selec tedIndexChanged (ByVal sender As
System.Object, ByVal e As System.EventArg s) Handles
SStateDDL.Selec tedIndexChanged
Dim Schools As New DataSet
Dim Value As String = _
Accounts.Busine ss.AccountsTool .StateID =
SStateDDL.Selec tedItem.Value
Schools = Accounts.Busine ss.AccountsTool .GetSchoolBySta te
SNameDDL.DataSo urce = Schools
SNameDDL.DataTe xtField = "SchoolName "
SNameDDL.DataVa lueField = "SchoolID"
SNameDDL.DataBi nd()
End Sub
Nov 18 '05 #1
9 1059

"Leon" <vn*****@msn.co m> wrote in message
news:OD******** ******@TK2MSFTN GP11.phx.gbl...
Does anyone see my mistake? I'm trying to load the school dropdownlist
when the user select a state from the state dropdownlist. The states drop
down list loads, but the school drop down list donot.

****Database Object Class.......... ..............

' Methods
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -


You are not passing the @StateID parameter into RunProcedure.

Shouldn't this be

Public Function GetSchoolByStat eList(ByVal StateID As String) As
DataSet
Dim parameters As SqlParameter() = { _
New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
parameters(0).V alue = StateID
Return RunProcedure( _
"GetSchoolBySta te", parameters, "SchoolByState" )
End Function

?

David

Nov 18 '05 #2
Thanks for you response!
yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
"SchoolByState" )" you are right do you see any more errors?

"David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...

"Leon" <vn*****@msn.co m> wrote in message
news:OD******** ******@TK2MSFTN GP11.phx.gbl...
Does anyone see my mistake? I'm trying to load the school dropdownlist
when the user select a state from the state dropdownlist. The states drop
down list loads, but the school drop down list donot.

****Database Object Class.......... ..............

' Methods

'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -


You are not passing the @StateID parameter into RunProcedure.

Shouldn't this be

Public Function GetSchoolByStat eList(ByVal StateID As String) As
DataSet
Dim parameters As SqlParameter() = { _
New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
parameters(0).V alue = StateID
Return RunProcedure( _
"GetSchoolBySta te", parameters, "SchoolByState" )
End Function

?

David

Nov 18 '05 #3
Are you able to run this in the debugger?

Jeff

"Leon" <vn*****@msn.co m> wrote in message
news:#1******** ******@TK2MSFTN GP14.phx.gbl...
Thanks for you response!
yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
"SchoolByState" )" you are right do you see any more errors?

"David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...

"Leon" <vn*****@msn.co m> wrote in message
news:OD******** ******@TK2MSFTN GP11.phx.gbl...
Does anyone see my mistake? I'm trying to load the school dropdownlist
when the user select a state from the state dropdownlist. The states drop down list loads, but the school drop down list donot.

****Database Object Class.......... ..............

' Methods

'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


You are not passing the @StateID parameter into RunProcedure.

Shouldn't this be

Public Function GetSchoolByStat eList(ByVal StateID As String) As
DataSet
Dim parameters As SqlParameter() = { _
New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
parameters(0).V alue = StateID
Return RunProcedure( _
"GetSchoolBySta te", parameters, "SchoolByState" )
End Function

?

David


Nov 18 '05 #4
well I'm programming in vs.net 2003. I think I know how to efficiently run
the debugger.

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Are you able to run this in the debugger?

Jeff

"Leon" <vn*****@msn.co m> wrote in message
news:#1******** ******@TK2MSFTN GP14.phx.gbl...
Thanks for you response!
yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
"SchoolByState" )" you are right do you see any more errors?

"David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>
> "Leon" <vn*****@msn.co m> wrote in message
> news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> Does anyone see my mistake? I'm trying to load the school dropdownlist
>> when the user select a state from the state dropdownlist. The states drop >> down list loads, but the school drop down list donot.
>>
>> ****Database Object Class.......... ..............
>>
>> ' Methods
>>
>> '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >> - - -
>>
>
> You are not passing the @StateID parameter into RunProcedure.
>
> Shouldn't this be
>
> Public Function GetSchoolByStat eList(ByVal StateID As String) As
> DataSet
> Dim parameters As SqlParameter() = { _
> New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
> parameters(0).V alue = StateID
> Return RunProcedure( _
> "GetSchoolBySta te", parameters, "SchoolByState" )
> End Function
>
> ?
>
> David
>
>
>



Nov 18 '05 #5
So does it work in the debugger or not? Can you set breakpoints to see the
execution, and view the variables as you expect?

Jeff
"Leon" <vn*****@msn.co m> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
well I'm programming in vs.net 2003. I think I know how to efficiently run
the debugger.

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Are you able to run this in the debugger?

Jeff

"Leon" <vn*****@msn.co m> wrote in message
news:#1******** ******@TK2MSFTN GP14.phx.gbl...
Thanks for you response!
yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
"SchoolByState" )" you are right do you see any more errors?

"David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>
> "Leon" <vn*****@msn.co m> wrote in message
> news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> Does anyone see my mistake? I'm trying to load the school dropdownlist >> when the user select a state from the state dropdownlist. The states

drop
>> down list loads, but the school drop down list donot.
>>
>> ****Database Object Class.......... ..............
>>
>> ' Methods
>>
>>

'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>> - - -
>>
>
> You are not passing the @StateID parameter into RunProcedure.
>
> Shouldn't this be
>
> Public Function GetSchoolByStat eList(ByVal StateID As String) As > DataSet
> Dim parameters As SqlParameter() = { _
> New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
> parameters(0).V alue = StateID
> Return RunProcedure( _
> "GetSchoolBySta te", parameters, "SchoolByState" )
> End Function
>
> ?
>
> David
>
>
>



Nov 18 '05 #6
my get set accessor function is not working, I'm trying to figure-out why?
PLEASE HELP!
"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:ef******** ******@TK2MSFTN GP15.phx.gbl...
So does it work in the debugger or not? Can you set breakpoints to see
the
execution, and view the variables as you expect?

Jeff
"Leon" <vn*****@msn.co m> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
well I'm programming in vs.net 2003. I think I know how to efficiently
run
the debugger.

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
> Are you able to run this in the debugger?
>
> Jeff
>
> "Leon" <vn*****@msn.co m> wrote in message
> news:#1******** ******@TK2MSFTN GP14.phx.gbl...
>> Thanks for you response!
>> yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
>> "SchoolByState" )" you are right do you see any more errors?
>>
>> "David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
>> message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>> >
>> > "Leon" <vn*****@msn.co m> wrote in message
>> > news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> >> Does anyone see my mistake? I'm trying to load the school dropdownlist >> >> when the user select a state from the state dropdownlist. The
>> >> states
> drop
>> >> down list loads, but the school drop down list donot.
>> >>
>> >> ****Database Object Class.......... ..............
>> >>
>> >> ' Methods
>> >>
>> >>
> '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>> >> - - -
>> >>
>> >
>> > You are not passing the @StateID parameter into RunProcedure.
>> >
>> > Shouldn't this be
>> >
>> > Public Function GetSchoolByStat eList(ByVal StateID As String) As >> > DataSet
>> > Dim parameters As SqlParameter() = { _
>> > New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
>> > parameters(0).V alue = StateID
>> > Return RunProcedure( _
>> > "GetSchoolBySta te", parameters, "SchoolByState" )
>> > End Function
>> >
>> > ?
>> >
>> > David
>> >
>> >
>> >
>>
>>
>
>



Nov 18 '05 #7
I can't help unless you answer my questions. I ask specific questions, and
require specific answers.

"Leon" <vn*****@msn.co m> wrote in message
news:ek******** ******@TK2MSFTN GP09.phx.gbl...
my get set accessor function is not working, I'm trying to figure-out why?
PLEASE HELP!
"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:ef******** ******@TK2MSFTN GP15.phx.gbl...
So does it work in the debugger or not? Can you set breakpoints to see
the
execution, and view the variables as you expect?

Jeff
"Leon" <vn*****@msn.co m> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
well I'm programming in vs.net 2003. I think I know how to efficiently
run
the debugger.

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
> Are you able to run this in the debugger?
>
> Jeff
>
> "Leon" <vn*****@msn.co m> wrote in message
> news:#1******** ******@TK2MSFTN GP14.phx.gbl...
>> Thanks for you response!
>> yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
>> "SchoolByState" )" you are right do you see any more errors?
>>
>> "David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in >> message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>> >
>> > "Leon" <vn*****@msn.co m> wrote in message
>> > news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> >> Does anyone see my mistake? I'm trying to load the school

dropdownlist
>> >> when the user select a state from the state dropdownlist. The
>> >> states
> drop
>> >> down list loads, but the school drop down list donot.
>> >>
>> >> ****Database Object Class.......... ..............
>> >>
>> >> ' Methods
>> >>
>> >>
> '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >> >> - - -
>> >>
>> >
>> > You are not passing the @StateID parameter into RunProcedure.
>> >
>> > Shouldn't this be
>> >
>> > Public Function GetSchoolByStat eList(ByVal StateID As
String) As
>> > DataSet
>> > Dim parameters As SqlParameter() = { _
>> > New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
>> > parameters(0).V alue = StateID
>> > Return RunProcedure( _
>> > "GetSchoolBySta te", parameters, "SchoolByState" )
>> > End Function
>> >
>> > ?
>> >
>> > David
>> >
>> >
>> >
>>
>>
>
>



Nov 18 '05 #8
Leon, see my response to your identical post from last night--it's very odd
that your get/set accessor is playing with a *shared* variable, not to
mention that you're then touching that private variable again from within
GetSchoolByStat e. As for efficiently using the debugger, that may be, but
you're sure not giving anybody reason to believe that you're tracing through
the code and setting watchpoints on the value you're losing.

Bill

"Leon" wrote:
my get set accessor function is not working, I'm trying to figure-out why?
PLEASE HELP!
"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:ef******** ******@TK2MSFTN GP15.phx.gbl...
So does it work in the debugger or not? Can you set breakpoints to see
the
execution, and view the variables as you expect?

Jeff
"Leon" <vn*****@msn.co m> wrote in message
news:uH******** ******@TK2MSFTN GP12.phx.gbl...
well I'm programming in vs.net 2003. I think I know how to efficiently
run
the debugger.

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
> Are you able to run this in the debugger?
>
> Jeff
>
> "Leon" <vn*****@msn.co m> wrote in message
> news:#1******** ******@TK2MSFTN GP14.phx.gbl...
>> Thanks for you response!
>> yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
>> "SchoolByState" )" you are right do you see any more errors?
>>
>> "David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
>> message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>> >
>> > "Leon" <vn*****@msn.co m> wrote in message
>> > news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> >> Does anyone see my mistake? I'm trying to load the school

dropdownlist
>> >> when the user select a state from the state dropdownlist. The
>> >> states
> drop
>> >> down list loads, but the school drop down list donot.
>> >>
>> >> ****Database Object Class.......... ..............
>> >>
>> >> ' Methods
>> >>
>> >>
> '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>> >> - - -
>> >>
>> >
>> > You are not passing the @StateID parameter into RunProcedure.
>> >
>> > Shouldn't this be
>> >
>> > Public Function GetSchoolByStat eList(ByVal StateID As String)

As
>> > DataSet
>> > Dim parameters As SqlParameter() = { _
>> > New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
>> > parameters(0).V alue = StateID
>> > Return RunProcedure( _
>> > "GetSchoolBySta te", parameters, "SchoolByState" )
>> > End Function
>> >
>> > ?
>> >
>> > David
>> >
>> >
>> >
>>
>>
>
>



Nov 18 '05 #9
I got it! Thanks for all the help!!!!
"Bill Borg" <Bi******@discu ssions.microsof t.com> wrote in message
news:75******** *************** ***********@mic rosoft.com...
Leon, see my response to your identical post from last night--it's very
odd
that your get/set accessor is playing with a *shared* variable, not to
mention that you're then touching that private variable again from within
GetSchoolByStat e. As for efficiently using the debugger, that may be, but
you're sure not giving anybody reason to believe that you're tracing
through
the code and setting watchpoints on the value you're losing.

Bill

"Leon" wrote:
my get set accessor function is not working, I'm trying to figure-out
why?
PLEASE HELP!
"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:ef******** ******@TK2MSFTN GP15.phx.gbl...
> So does it work in the debugger or not? Can you set breakpoints to see
> the
> execution, and view the variables as you expect?
>
> Jeff
> "Leon" <vn*****@msn.co m> wrote in message
> news:uH******** ******@TK2MSFTN GP12.phx.gbl...
>> well I'm programming in vs.net 2003. I think I know how to efficiently
>> run
>> the debugger.
>>
>> "Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
>> news:%2******** **********@TK2M SFTNGP10.phx.gb l...
>> > Are you able to run this in the debugger?
>> >
>> > Jeff
>> >
>> > "Leon" <vn*****@msn.co m> wrote in message
>> > news:#1******** ******@TK2MSFTN GP14.phx.gbl...
>> >> Thanks for you response!
>> >> yes, "Return RunProcedure( "GetSchoolBySta te", parameters,
>> >> "SchoolByState" )" you are right do you see any more errors?
>> >>
>> >> "David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote
>> >> in
>> >> message news:Oy******** ******@TK2MSFTN GP09.phx.gbl...
>> >> >
>> >> > "Leon" <vn*****@msn.co m> wrote in message
>> >> > news:OD******** ******@TK2MSFTN GP11.phx.gbl...
>> >> >> Does anyone see my mistake? I'm trying to load the school
> dropdownlist
>> >> >> when the user select a state from the state dropdownlist. The
>> >> >> states
>> > drop
>> >> >> down list loads, but the school drop down list donot.
>> >> >>
>> >> >> ****Database Object Class.......... ..............
>> >> >>
>> >> >> ' Methods
>> >> >>
>> >> >>
>> > '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>> > - -
>> >> >> - - -
>> >> >>
>> >> >
>> >> > You are not passing the @StateID parameter into RunProcedure.
>> >> >
>> >> > Shouldn't this be
>> >> >
>> >> > Public Function GetSchoolByStat eList(ByVal StateID As
>> >> > String)
> As
>> >> > DataSet
>> >> > Dim parameters As SqlParameter() = { _
>> >> > New SqlParameter("@ StateID", SqlDbType.VarCh ar, 2)}
>> >> > parameters(0).V alue = StateID
>> >> > Return RunProcedure( _
>> >> > "GetSchoolBySta te", parameters, "SchoolByState" )
>> >> > End Function
>> >> >
>> >> > ?
>> >> >
>> >> > David
>> >> >
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>


Nov 18 '05 #10

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

Similar topics

4
1689
by: Roy Yao | last post by:
Does it mean "(sizeof(int))* (p)" or "sizeof( (int)(*p) )" ? According to my analysis, operator sizeof, (type) and * have the same precedence, and they combine from right to left. Then this expression should equal to "sizeof( (int)(*p) )", but the compiler does NOT think so. Why? Can anyone help me? Thanks. Best regards. Roy
8
2560
by: lawrence | last post by:
I'm learning Javascript. I downloaded a script for study. Please tell me how the variable "loop" can have scope in the first function when it is altered in the second function? It is not defined in global space, therefore it is not a global variable, yes? Even if it was global, how would it get from one function to another? In PHP variables are copied by value. Are they copied by reference in Javascript? <SCRIPT LANGUAGE="JavaScript">
7
2245
by: jan.dostrasil | last post by:
Hello, I'm new to c - so sorry if this is off topic here, please advice at least where should i ask... ;) I have a program in c which is working fine, it reads everything from pipe, modifies output data a bit and writes to stdout. When it is executed without parameters, program works fine. But what if I'd like to pass some extra configuration parameters to my program? 1. c:\> pipetest < file_in > file_out // this works
45
3433
by: salad | last post by:
I'm curious about your opinion on setting relationships. When I designed my first app in Access I'd go to Tools/Relationships and set the relationships. Over time I'd go into the window and see relationship spaghetti....tables/queries all overthe place with lots of relationship lines between here and there. After that first app I didn't do relationships. If I had a query, I defined the relationship. Many of the times when I create a...
34
4478
by: NewToCPP | last post by:
Hi, Why does a C/C++ programs crash? When there is access to a null pointer or some thing like that programs crash, but why do they crash? Thanks.
3
1671
by: Pavel | last post by:
I tried to do very simple operation, at least I thought it will be simple, and it is to use String.Format. But, when formatted string bigger than 255 I got this mistake "Input string was not in a correct format". WHY IS IT SO?
2
1243
by: Terry On Windigo | last post by:
I must have forgotten someting. I did something like this about 4 years ago and got it to work. Now I need to do it again and I get this error message: Technical Information (for support personnel) a.. Error Type: Microsoft JET Database Engine (0x80040E37) The Microsoft Jet database engine cannot find the input table or query 'verify'. Make sure it exists and that its name is spelled correctly.
17
4386
by: seajay | last post by:
Hello, I noticed something strange when I was composing a XHTML document with CSS The following DOCTYPE causes the page to display differently on Fireflox 1.0.6 and Internet Explorer 6 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
13
2285
by: Anonymous | last post by:
On MS site: http://msdn2.microsoft.com/en-us/library/esew7y1w(VS.80).aspx is the following garbled rambling: "You can avoid exporting classes by defining a DLL that defines a class with virtual functions, and functions you can call to instantiate and delete objects of the type. You can then just call virtual functions on the type."
0
9689
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
9550
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
10269
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
10248
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
10032
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
9085
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
5469
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
5597
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2942
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.