473,503 Members | 12,516 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New to VB.NET...HELP REQUIRED IMMEDIATELY

Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and available Connection. The connection's current state is Open, Fetching. at System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String method, Int32& localState) at System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior behavior, String method) at System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at System.Data.OleDb.OleDbCommand.ExecuteReader() at bt.index.Page_Load(Object sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56
The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com
Nov 21 '05 #1
8 1475
You are calling ExectueReader on your command object twice. Also, you
didn't show us your connection string in Web.Config, so make sure that it is
correct and then try this:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try
Dim MyConn As New
OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String = "select max(v_id) from visitor"
Dim visitorCmd As New OleDbCommand(strVisitor, MyConn)

MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

Dim vRdr As OleDbDataReader = visitorCmd.ExecuteReader()
If vRdr.HasRows Then
Do While vRdr.Read()
If Not IsDBNull(vRdr(0)) Then
old_visitor = vRdr(0)
End If
Loop
End If

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor.
vRdr.Close()
MyConn.Close()
Catch ex As Exception
Response.Write(ex)
End Try
End If
End Sub
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and
available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at
bt.index.Page_Load(Object sender, EventArgs e) in
d:\inetpub\wwwroot\bt\index.aspx.vb:line 56
The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New
OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com

Nov 21 '05 #2
You are calling ExectueReader on your command object twice. Also, you
didn't show us your connection string in Web.Config, so make sure that it is
correct and then try this:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try
Dim MyConn As New
OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String = "select max(v_id) from visitor"
Dim visitorCmd As New OleDbCommand(strVisitor, MyConn)

MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

Dim vRdr As OleDbDataReader = visitorCmd.ExecuteReader()
If vRdr.HasRows Then
Do While vRdr.Read()
If Not IsDBNull(vRdr(0)) Then
old_visitor = vRdr(0)
End If
Loop
End If

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor.
vRdr.Close()
MyConn.Close()
Catch ex As Exception
Response.Write(ex)
End Try
End If
End Sub
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and
available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at
bt.index.Page_Load(Object sender, EventArgs e) in
d:\inetpub\wwwroot\bt\index.aspx.vb:line 56
The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New
OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com

Nov 21 '05 #3
Scott already answered the crux of your problem - you are using the same
connection for two different commands which you can't do until ADO.NET 2.0

But since your first execution is MAX() - then you should probably opt for
ExecuteScalar instead of Reader. If nothing else it will save you a few
lines of code and make your intent a little clearer.

Also, you should consider using a Finally Block and closing your connection
in the finally - that's the only way youy can make sure it will get closed.

And as always - I have to include my obligatory rant against catching
system.Exception here. Since your not doing anything with your exception
other than writing it out - you probably ought to catch a OleDbException for
the connection.Open and the Execute statements - if you got a StackOverflow
or something else there - well you may want to respond differently. But
that's another story.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at bt.index.Page_Load(Object
sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56

The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New OleDbConnection(ConfigurationSettings.AppSettings( "strConn")) Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com

Nov 21 '05 #4
Scott already answered the crux of your problem - you are using the same
connection for two different commands which you can't do until ADO.NET 2.0

But since your first execution is MAX() - then you should probably opt for
ExecuteScalar instead of Reader. If nothing else it will save you a few
lines of code and make your intent a little clearer.

Also, you should consider using a Finally Block and closing your connection
in the finally - that's the only way youy can make sure it will get closed.

And as always - I have to include my obligatory rant against catching
system.Exception here. Since your not doing anything with your exception
other than writing it out - you probably ought to catch a OleDbException for
the connection.Open and the Execute statements - if you got a StackOverflow
or something else there - well you may want to respond differently. But
that's another story.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at bt.index.Page_Load(Object
sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56

The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New OleDbConnection(ConfigurationSettings.AppSettings( "strConn")) Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com

Nov 21 '05 #5
I don't see him using one connection for 2 different commands. I see him
calling ExecuteReader on the same command twice. There is only one command
object in his code.
"W.G. Ryan eMVP" <Wi*********@gmail.com> wrote in message
news:On**************@TK2MSFTNGP11.phx.gbl...
Scott already answered the crux of your problem - you are using the same
connection for two different commands which you can't do until ADO.NET 2.0

But since your first execution is MAX() - then you should probably opt for
ExecuteScalar instead of Reader. If nothing else it will save you a few
lines of code and make your intent a little clearer.

Also, you should consider using a Finally Block and closing your
connection
in the finally - that's the only way youy can make sure it will get
closed.

And as always - I have to include my obligatory rant against catching
system.Exception here. Since your not doing anything with your exception
other than writing it out - you probably ought to catch a OleDbException
for
the connection.Open and the Execute statements - if you got a
StackOverflow
or something else there - well you may want to respond differently. But
that's another story.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and

available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at
bt.index.Page_Load(Object
sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56


The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As

System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New

OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com


Nov 21 '05 #6
I don't see him using one connection for 2 different commands. I see him
calling ExecuteReader on the same command twice. There is only one command
object in his code.
"W.G. Ryan eMVP" <Wi*********@gmail.com> wrote in message
news:On**************@TK2MSFTNGP11.phx.gbl...
Scott already answered the crux of your problem - you are using the same
connection for two different commands which you can't do until ADO.NET 2.0

But since your first execution is MAX() - then you should probably opt for
ExecuteScalar instead of Reader. If nothing else it will save you a few
lines of code and make your intent a little clearer.

Also, you should consider using a Finally Block and closing your
connection
in the finally - that's the only way youy can make sure it will get
closed.

And as always - I have to include my obligatory rant against catching
system.Exception here. Since your not doing anything with your exception
other than writing it out - you probably ought to catch a OleDbException
for
the connection.Open and the Execute statements - if you got a
StackOverflow
or something else there - well you may want to respond differently. But
that's another story.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..

System.InvalidOperationException: ExecuteReader requires an open and

available Connection. The connection's current state is Open, Fetching. at
System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at
System.Data.OleDb.OleDbCommand.ExecuteReader() at
bt.index.Page_Load(Object
sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56


The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As

System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New

OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com


Nov 21 '05 #7
Scott - a DataReader requires an open and available connection and is only
valid in a 'live' context regarding the connection. You can't pass more
than one command over the same connection at one time - even if the command
has the exact same commandtext. The execution of the first command ins't
even finished yet when it's being called again on the same wire. So
technically, there aren't Two different command objects instantiated here,
but there are two commands attempting to be sent with the same connection -
which isn't going to work. You would certainly agree that through Query
Analyzer for instance, it's possible to exectue 2 commands right? Even
though in QA you aren't ever even explicity creating even one SqlCommand
object. Moreover, since the query is using an aggregate function to return
one single value - excecutescalar makes more sense in every regard 1) You
don't need the datareader object in the first place 2) you don't need to
extra code associated with iterating through it.

I do acknowledge that there aren't 2 SqlCommand objects - but my statement
that you're trying to fire two commands over the same connection isn't
incorrect.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"Scott M." <s-***@nospam.nospam> wrote in message
news:OG*************@TK2MSFTNGP14.phx.gbl...
I don't see him using one connection for 2 different commands. I see him
calling ExecuteReader on the same command twice. There is only one command object in his code.
"W.G. Ryan eMVP" <Wi*********@gmail.com> wrote in message
news:On**************@TK2MSFTNGP11.phx.gbl...
Scott already answered the crux of your problem - you are using the same
connection for two different commands which you can't do until ADO.NET 2.0
But since your first execution is MAX() - then you should probably opt for ExecuteScalar instead of Reader. If nothing else it will save you a few
lines of code and make your intent a little clearer.

Also, you should consider using a Finally Block and closing your
connection
in the finally - that's the only way youy can make sure it will get
closed.

And as always - I have to include my obligatory rant against catching
system.Exception here. Since your not doing anything with your exception other than writing it out - you probably ought to catch a OleDbException
for
the connection.Open and the Execute statements - if you got a
StackOverflow
or something else there - well you may want to respond differently. But that's another story.

--
W.G. Ryan, MVP

www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"santosh singh via DotNetMonster.com" <fo***@DotNetMonster.com> wrote in
message news:09******************************@DotNetMonste r.com...
Hi,
I'm new to VB.NET..I'm developing a login page...im getting this error..
System.InvalidOperationException: ExecuteReader requires an open and

available Connection. The connection's current state is Open, Fetching. at System.Data.OleDb.OleDbCommand.ValidateConnectionA ndTransaction(String
method, Int32& localState) at
System.Data.OleDb.OleDbCommand.ExecuteReaderIntern al(CommandBehavior
behavior, String method) at
System.Data.OleDb.OleDbCommand.ExecuteReader(Comma ndBehavior behavior) at System.Data.OleDb.OleDbCommand.ExecuteReader() at
bt.index.Page_Load(Object
sender, EventArgs e) in d:\inetpub\wwwroot\bt\index.aspx.vb:line 56


The code in .aspx.vb page is
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As

System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
Try

Dim MyConn As OleDbConnection = New

OleDbConnection(ConfigurationSettings.AppSettings( "strConn"))
Dim strVisitor As String
Dim visitorCmd As OleDbCommand
Dim vRdr As OleDbDataReader
strVisitor = "select max(v_id) from visitor"
visitorCmd = New OleDbCommand(strVisitor, MyConn)
MyConn.Open()
Dim old_visitor As Integer
Dim new_visitor As Integer

vRdr = visitorCmd.ExecuteReader()
While vRdr.Read()
If Not IsDBNull(visitorCmd.ExecuteReader()) Then
old_visitor = vRdr.Item(0)
End If
End While

new_visitor = old_visitor + 1
lblvisitor.Text = new_visitor
MyConn.Close()

Catch ex As Exception
Response.Write(ex)
End Try

End If
End Sub

Your help will be much appreciated

--
Message posted via http://www.dotnetmonster.com



Nov 21 '05 #8
Bill,

Sorry
I do acknowledge that there aren't 2 SqlCommand objects - but my statement
that you're trying to fire two commands over the same connection isn't
incorrect.


However not the problem

:-))))))

Cor
Nov 21 '05 #9

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

Similar topics

0
3380
by: abcd | last post by:
kutthaense Secretary Djetvedehald H. Rumsfeld legai predicted eventual vicmadhlary in Iraq mariyu Afghmadhlaistmadhla, kaani jetvedehly after "a ljetvedehg, hard slog," mariyu vede legai pressed...
9
3449
by: Martin | last post by:
Hello, I'm new with triggers and I can not find any good example on how to do the following: I have two tables WO and PM with the following fields: WO.WONUM, VARCHAR(10) WO.PMNUM,...
7
1326
by: Swilson513 | last post by:
I'm trying to make what should be a simple DB, but have done got myself confused. I'm trying to keep track of the contents of several kits that use common components. Each component has a unique...
1
1812
by: Stephen | last post by:
Was wondering if someone could please help me with an array I'd like to create in an asp.net page. I have to design an array which stores the values of addresses manually entered into textboxes...
2
2627
by: siliconpiNOSPAM | last post by:
Hi, I'm writing a program that should accept the following parameters: XMLfile (required) Logfile (required) /A (append flag, optional) /D 123 (delay value, optional, but # should follow /D...
6
9358
by: paul | last post by:
HI! How do we send a variable from an Iframe page back to its parent? I have a script that calculates the iframe's window size but I need to know how to send that value back to its parent so I...
13
4898
by: ern | last post by:
I'm using strtok( ) to capture lines of input. After I call "splitCommand", I call strtok( ) again to get the next line. Strtok( ) returns NULL (but there is more in the file...). That didn't...
9
2481
by: weidongtom | last post by:
Hi, I've written the code that follows, and I use the function add_word(), it seems to work fine *before* increase_arrays() is called that uses realloc() to allocate more memory to words. But...
0
1467
by: Frank Gallagher | last post by:
July 8 2008 Governments are far more corrupt than anyone would believe other than the members of Charter Democracy Force www.cdf.name who have a prodigious amount of irrefutable evidence and are...
4
3409
by: blurboy | last post by:
Mdi Container - frmMdiContainer Child Form - frmChildForm however in my frmChildForm, i have a button to open another form - frmSpecial. In order to open frmSpecial in the frmMdiContainer (like...
0
7212
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
7364
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...
1
7017
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...
0
5604
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,...
1
5026
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...
0
4696
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...
0
3186
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...
1
751
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
405
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...

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.