473,657 Members | 2,572 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

set focus (Javascript)

I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!

<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">

<script language="JavaS cript">
function doFocus(){

if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>

<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>
Jun 27 '08 #1
11 3919
1. Where do you actually call the DoFocus()?
2. asp:TextBox seems to be not closed properly.

George.

"slinky" <ca************ ***@yahoo.comwr ote in message
news:a7******** *************** ***********@e53 g2000hsa.google groups.com...
I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!

<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">

<script language="JavaS cript">
function doFocus(){

if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>

<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>

Jun 27 '08 #2
You don't need JavaScript...Ju st put

txtUserName.foc us();

in your page_load event.

Matthew Wells
Ma***********@F irstByte.net
"slinky" <ca************ ***@yahoo.comwr ote in message
news:a7******** *************** ***********@e53 g2000hsa.google groups.com...
I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!

<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">

<script language="JavaS cript">
function doFocus(){

if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>

<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>

Jun 27 '08 #3
I used this:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
txtUserName.foc us()
End Sub

But get this: 'focus' is not a member of
'System.Web.UI. webcontrols.Tex tBox'

On Jun 4, 4:08*pm, "Matthew Wells" <Matthew.We...@ FirstByte.net>
wrote:
You don't need JavaScript...Ju st put

txtUserName.foc us();

in your page_load event.

Matthew Wells
Matthew.We...@F irstByte.net

"slinky" <campbellbrian2 ...@yahoo.comwr ote in message

news:a7******** *************** ***********@e53 g2000hsa.google groups.com...
I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? * Thanks!
<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body *MS_POSITIONING ="GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">
<script language="JavaS cript">
function doFocus(){
if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>- Hide quoted text -

- Show quoted text -
Jun 27 '08 #4
That surprised me. When you typed txtUserName., did you get intellisense
for .focus())? I tested it before I repled to you. I am using C#, but that
shouldn't make a difference. Are you using a code-behind page?

"slinky" <ca************ ***@yahoo.comwr ote in message
news:6e******** *************** ***********@y38 g2000hsy.google groups.com...
I used this:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
txtUserName.foc us()
End Sub

But get this: 'focus' is not a member of
'System.Web.UI. webcontrols.Tex tBox'

On Jun 4, 4:08 pm, "Matthew Wells" <Matthew.We...@ FirstByte.net>
wrote:
You don't need JavaScript...Ju st put

txtUserName.foc us();

in your page_load event.

Matthew Wells
Matthew.We...@F irstByte.net

"slinky" <campbellbrian2 ...@yahoo.comwr ote in message

news:a7******** *************** ***********@e53 g2000hsa.google groups.com...
I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!
<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">
<script language="JavaS cript">
function doFocus(){
if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>- Hide quoted text -

- Show quoted text -

Jun 27 '08 #5
Yes I'm using code-behind and the Intellisense did not list ".focus()"

On Jun 5, 9:23*am, "Matthew Wells" <Matthew.We...@ FirstByte.net>
wrote:
That surprised me. *When you typed txtUserName., did you get intellisense
for .focus())? *I tested it before I repled to you. *I am using C#, but that
shouldn't make a difference. *Are you using a code-behind page?

"slinky" <campbellbrian2 ...@yahoo.comwr ote in message

news:6e******** *************** ***********@y38 g2000hsy.google groups.com...
I used this:

* * Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
* * * * txtUserName.foc us()
* * End Sub

But get this: 'focus' is not a member of
'System.Web.UI. webcontrols.Tex tBox'

On Jun 4, 4:08 pm, "Matthew Wells" <Matthew.We...@ FirstByte.net>
wrote:
You don't need JavaScript...Ju st put
txtUserName.foc us();
in your page_load event.
Matthew Wells
Matthew.We...@F irstByte.net
"slinky" <campbellbrian2 ...@yahoo.comwr ote in message
news:a7******** *************** ***********@e53 g2000hsa.google groups.com...
I'm trying to simply set the focus of "txtUserNam e" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!
<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Log in.aspx.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema" content="http://schemas.microso ft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout " bgcolor="#6699f f"
background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool\vignette. gif">
<script language="JavaS cript">
function doFocus(){
if(document.for ms[0].txtUserName)do cument.forms[0].txtUserName.fo cus();
}
</script>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtUserName "
</asp:TextBox>
</form>
</body>
</HTML>- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -
Jun 27 '08 #6
Sorry, should have noted that I'm using VB.net. But no Intellisense
is showing as a .Focus()
This is a weird one. Focus had always been so simple in VB 6.0

On Jun 5, 11:46*am, "Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote:
"Matthew Wells" <Matthew.We...@ FirstByte.netwr ote in message

news:pe******** *************** *******@comcast .com...

[top-posting corrected]
That surprised me. *When you typed txtUserName., did you get intellisense
for .focus())? *I tested it before I repled to you. *I am using C#, but
that shouldn't make a difference. *Are you using a code-behind page?

If you're using C#, .focus() certainly won't work nor will it show in
IntelliSense because C# is case-sensitive...

txtUserName.Foc us() should work, though...

--
Mark Rae
ASP.NET MVPhttp://www.markrae.net
Jun 27 '08 #7
re:
!This is a weird one. Focus had always been so simple in VB 6.0

It is, still, simple.

If you have a textbox named txtUserName in a VB aspx page,
when you go to the code-behind page and create a Sub Page_Load:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s) Handles Me.Load

End Sub

and then type txtUsername inside it, *and place a dot (.) after that*,
you should get a dropdown which includes Focus as one of the options.

The process is the same when you use inline code:

You create :

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s)
End Sub

....and when you write, or select, txtUsername.

you'll get a dropdown which includes Focus as one of the options.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"slinky" <ca************ ***@yahoo.comwr ote in message
news:c5******** *************** ***********@26g 2000hsk.googleg roups.com...
Sorry, should have noted that I'm using VB.net. But no Intellisense
is showing as a .Focus()
This is a weird one. Focus had always been so simple in VB 6.0

On Jun 5, 11:46 am, "Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote:
"Matthew Wells" <Matthew.We...@ FirstByte.netwr ote in message

news:pe******** *************** *******@comcast .com...

[top-posting corrected]
That surprised me. When you typed txtUserName., did you get intellisense
for .focus())? I tested it before I repled to you. I am using C#, but
that shouldn't make a difference. Are you using a code-behind page?

If you're using C#, .focus() certainly won't work nor will it show in
IntelliSense because C# is case-sensitive...

txtUserName.Foc us() should work, though...

--
Mark Rae
ASP.NET MVPhttp://www.markrae.net


Jun 27 '08 #8
I did exactly that, and still no Focus as a choice or accepted
keyword:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArg s) Handles MyBase.Load
txtUserName.
End Sub

I double-checked the spelling, etc.
On Jun 5, 12:33*pm, "Juan T. Llibre" <nomailrepl...@ nowhere.com>
wrote:
re:
!This is a weird one. Focus had always been so simple in VB 6.0

It is, still, simple.

If you have a textbox named txtUserName in a VB aspx page,
when you go to the code-behind page and create a Sub Page_Load:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s) Handles Me.Load

End Sub

and then type txtUsername inside it, *and place a dot (.) after that*,
you should get a dropdown which includes Focus as one of the options.

The process is the same when you use inline code:

You create :

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s)
End Sub

...and when you write, or select, txtUsername.

you'll get a dropdown which includes Focus as one of the options.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========"slinky " <campbellbrian2 ...@yahoo.comwr ote in message

news:c5******** *************** ***********@26g 2000hsk.googleg roups.com...
Sorry, should have noted that I'm using VB.net. * But no Intellisense
is showing as a .Focus()
This is a weird one. Focus had always been so simple in VB 6.0

On Jun 5, 11:46 am, "Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote:
"Matthew Wells" <Matthew.We...@ FirstByte.netwr ote in message
news:pe******** *************** *******@comcast .com...
[top-posting corrected]
That surprised me. When you typed txtUserName., did you get intellisense
for .focus())? I tested it before I repled to you. I am using C#, but
that shouldn't make a difference. Are you using a code-behind page?
If you're using C#, .focus() certainly won't work nor will it show in
IntelliSense because C# is case-sensitive...
txtUserName.Foc us() should work, though...
--
Mark Rae
ASP.NET MVPhttp://www.markrae.net- Hide quoted text -

- Show quoted text -
Jun 27 '08 #9
re:
!I did exactly that, and still no Focus as a choice or accepted keyword:

That's odd.

I just checked with both VS 2005 and VS 2008
....and I get Intellisense for Focus with both.
1. Which version of VS are you using ?

2. Do you actually have a textbox named txtUserName ?

I first tested with the standard "TextBox1" ID suggested by the IDE,
and then created a texbox with the ID "txtUserNam e",
and got the Intellisense dropdown with the Focus option for both.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"slinky" <ca************ ***@yahoo.comwr ote in message
news:1d******** *************** ***********@d1g 2000hsg.googleg roups.com...
I did exactly that, and still no Focus as a choice or accepted keyword:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s) Handles MyBase.Load
txtUserName.
End Sub

I double-checked the spelling, etc.
On Jun 5, 12:33 pm, "Juan T. Llibre" <nomailrepl...@ nowhere.com>
wrote:
re:
!This is a weird one. Focus had always been so simple in VB 6.0

It is, still, simple.

If you have a textbox named txtUserName in a VB aspx page,
when you go to the code-behind page and create a Sub Page_Load:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s) Handles Me.Load

End Sub

and then type txtUsername inside it, *and place a dot (.) after that*,
you should get a dropdown which includes Focus as one of the options.

The process is the same when you use inline code:

You create :

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s)
End Sub

...and when you write, or select, txtUsername.

you'll get a dropdown which includes Focus as one of the options.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========"slinky " <campbellbrian2 ...@yahoo.comwr ote in message

news:c5******** *************** ***********@26g 2000hsk.googleg roups.com...
Sorry, should have noted that I'm using VB.net. But no Intellisense
is showing as a .Focus()
This is a weird one. Focus had always been so simple in VB 6.0

On Jun 5, 11:46 am, "Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote:
"Matthew Wells" <Matthew.We...@ FirstByte.netwr ote in message
news:pe******** *************** *******@comcast .com...
[top-posting corrected]
That surprised me. When you typed txtUserName., did you get intellisense
for .focus())? I tested it before I repled to you. I am using C#, but
that shouldn't make a difference. Are you using a code-behind page?
If you're using C#, .focus() certainly won't work nor will it show in
IntelliSense because C# is case-sensitive...
txtUserName.Foc us() should work, though...
--
Mark Rae
ASP.NET MVPhttp://www.markrae.net- Hide quoted text -

- Show quoted text -

Jun 27 '08 #10

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

Similar topics

5
28131
by: 'bonehead | last post by:
Greetings, I'm still something of a newbie to html/php/mysql. I have a php/html form with several fields of type "input". If the user enters improper data in a particular field and clicks the Submit button, the php script has to trap it and return a javascript error message box with an OK button. That part I've already got down. But, you know how in Visual Basic you can set the focus on the offending
1
16581
by: Barry Svee | last post by:
I'm struggling with the JavaScript blur event. I have an activex control that I need to interact with when a window loses focus, namely to instruct it to give up control of a barcode scanner so that the application being brought foreward can take control. It has been my observation that when I set the window.onblur function, the window will gain focus and then immediately lose focus (blur) to the first field, button, or whatever that is...
7
9936
by: Phl | last post by:
hi, I can use the following code to set focus to standard html elements but if I try to do the same for a custom element, it seems to complain that it does not support a focus method. Does anyone know what is the problem, if there is a work around? thank you
31
2836
by: Benno Bös | last post by:
If I use the following construct in the frame "main" for a link to an extern site: <A HREF="http://www.any.xy" TARGET="extern"> the Browser is creating the window "extern", loading the page www.any.xy an setting the focus to "extern". But when I go return to "main" without closing "extern", a click to an other link (e.g. www.2nd_any.xy) on "main" does not setting the focus to "extern".
5
2118
by: Rune Runnestø | last post by:
How do I focus the cursor in the input field 'numberField' when accessing this jsp-file (or html-file) ? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled</title> </head>
3
4215
by: Philip Townsend | last post by:
I have an aspx page that contains 2 user controls, each containing a seperate textbox and button. I would like to specify that one of the buttons recieve focus when the page loads. Also, I would like that same button to fire its event when the user presses enter. Can anybody help with this? *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
2
1415
by: Christian Ista | last post by:
Hello, I found that (see below) to give the focus to a control(textbox) on an asp.net page. There is no easiest way to do that ? Thanks, System.Text.StringBuilder sb = new System.Text.StringBuilder(""); sb.Append("<script language=\"JavaScript\">");
3
2814
by: vivela | last post by:
hi, I hope you could help me out on this one,cause I have been trying for 4 days to solve it,but couldn't quite get it right: I have an ASP textbox that should change the value in a dropdownlist. this happens,but the problem is with the validation of the ddl.it has a requiredfieldvalidator,and the error message disapears only if i select a value from the dropdownlist,even though it should also disapear when I write a valid name in the...
4
13445
by: planb | last post by:
Hi, I'd like to have a rollover like effect when a input field has the focus, any idea of how to do this with just CSS (easy enough with javascript)? What I'm thinking of is having a tips box show up next to the input field, but only when the field actually has focus. I was thinking if there's any way to make the focus apply to a
0
8425
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
8845
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...
1
8522
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
8622
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
7355
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
6177
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
4173
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...
1
2745
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1736
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.