473,403 Members | 2,183 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

set focus (Javascript)

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

<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">

<script language="JavaScript">
function doFocus(){

if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</script>

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

George.

"slinky" <ca***************@yahoo.comwrote in message
news:a7**********************************@e53g2000 hsa.googlegroups.com...
I'm trying to simply set the focus of "txtUserName" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!

<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">

<script language="JavaScript">
function doFocus(){

if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</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...Just put

txtUserName.focus();

in your page_load event.

Matthew Wells
Ma***********@FirstByte.net
"slinky" <ca***************@yahoo.comwrote in message
news:a7**********************************@e53g2000 hsa.googlegroups.com...
I'm trying to simply set the focus of "txtUserName" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!

<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">

<script language="JavaScript">
function doFocus(){

if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</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.EventArgs) Handles MyBase.Load
txtUserName.focus()
End Sub

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

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

txtUserName.focus();

in your page_load event.

Matthew Wells
Matthew.We...@FirstByte.net

"slinky" <campbellbrian2...@yahoo.comwrote in message

news:a7**********************************@e53g2000 hsa.googlegroups.com...
I'm trying to simply set the focus of "txtUserName" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? * Thanks!
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body *MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">
<script language="JavaScript">
function doFocus(){
if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</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.comwrote in message
news:6e**********************************@y38g2000 hsy.googlegroups.com...
I used this:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
txtUserName.focus()
End Sub

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

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

txtUserName.focus();

in your page_load event.

Matthew Wells
Matthew.We...@FirstByte.net

"slinky" <campbellbrian2...@yahoo.comwrote in message

news:a7**********************************@e53g2000 hsa.googlegroups.com...
I'm trying to simply set the focus of "txtUserName" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">
<script language="JavaScript">
function doFocus(){
if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</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.comwrote in message

news:6e**********************************@y38g2000 hsy.googlegroups.com...
I used this:

* * Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
* * * * txtUserName.focus()
* * End Sub

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

On Jun 4, 4:08 pm, "Matthew Wells" <Matthew.We...@FirstByte.net>
wrote:
You don't need JavaScript...Just put
txtUserName.focus();
in your page_load event.
Matthew Wells
Matthew.We...@FirstByte.net
"slinky" <campbellbrian2...@yahoo.comwrote in message
news:a7**********************************@e53g2000 hsa.googlegroups.com...
I'm trying to simply set the focus of "txtUserName" upon opening this
login form. I put in some Javascript but it is not working. Any
ideas? Thanks!
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="Login.aspx.vb"
Inherits="Forsyth.HR_ReportingTool.UI.Login" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Login</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/
intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#6699ff"
background="file:///C:\Inetpub\wwwroot\HR_ReportingTool\vignette.gif">
<script language="JavaScript">
function doFocus(){
if(document.forms[0].txtUserName)document.forms[0].txtUserName.focus();
}
</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
"Matthew Wells" <Ma***********@FirstByte.netwrote 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.Focus() should work, though...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jun 27 '08 #7
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...@markNOSPAMrae.netwrote:
"Matthew Wells" <Matthew.We...@FirstByte.netwrote 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.Focus() should work, though...

--
Mark Rae
ASP.NET MVPhttp://www.markrae.net
Jun 27 '08 #8
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.EventArgs) 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.EventArgs)
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.comwrote in message
news:c5**********************************@26g2000h sk.googlegroups.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...@markNOSPAMrae.netwrote:
"Matthew Wells" <Matthew.We...@FirstByte.netwrote 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.Focus() should work, though...

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


Jun 27 '08 #9
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.EventArgs) 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.EventArgs) 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.EventArgs)
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.comwrote in message

news:c5**********************************@26g2000h sk.googlegroups.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...@markNOSPAMrae.netwrote:
"Matthew Wells" <Matthew.We...@FirstByte.netwrote 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.Focus() should work, though...
--
Mark Rae
ASP.NET MVPhttp://www.markrae.net- Hide quoted text -

- Show quoted text -
Jun 27 '08 #10
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 "txtUserName",
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.comwrote in message
news:1d**********************************@d1g2000h sg.googlegroups.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.EventArgs) 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.EventArgs) 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.EventArgs)
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.comwrote in message

news:c5**********************************@26g2000h sk.googlegroups.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...@markNOSPAMrae.netwrote:
"Matthew Wells" <Matthew.We...@FirstByte.netwrote 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.Focus() should work, though...
--
Mark Rae
ASP.NET MVPhttp://www.markrae.net- Hide quoted text -

- Show quoted text -

Jun 27 '08 #11
VS 2003 Version 7.1.6030
.net framework 1.1 Version 1.1.4322 SP1

yes definitely have a textbox on my .aspx named txtUserName

On Jun 5, 1:38*pm, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
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 "txtUserName",
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" <campbellbrian2...@yahoo.comwrote in message

news:1d**********************************@d1g2000h sg.googlegroups.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.EventArgs) 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.EventArgs) 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.EventArgs)
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.comwrote in message
news:c5**********************************@26g2000h sk.googlegroups.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...@markNOSPAMrae.netwrote:
"Matthew Wells" <Matthew.We...@FirstByte.netwrote 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.Focus() should work, though...
--
Mark Rae
ASP.NET MVPhttp://www.markrae.net-Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -
Jun 27 '08 #12

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

Similar topics

5
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...
1
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...
7
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...
31
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...
5
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>...
3
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...
2
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...
3
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....
4
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...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.