473,791 Members | 2,827 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Name 'SqlDbType' is not declared?

Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome
Nov 18 '05 #1
9 6310
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data.Sql Client.SqlDbTyp e is an enum and you can't use it with the
Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k******** ******@TK2MSFTN GP09.phx.gbl...
Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome


Nov 18 '05 #2
Thanks Martin, but what could the reason be for that error message then?
Because even when removing the import keyword, it keeps getting displayed.

How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data.Sql Client.SqlDbTyp e is an enum and you can't use it with the
Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k******** ******@TK2MSFTN GP09.phx.gbl...
Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncod ing="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome


Nov 18 '05 #3
Here's the line where the error comes:

cmdInsert.Param eters.Add( "@datedebut ", SqlDbType.Small DateTime
).Value=datedeb ut.Text )

Perhaps that'll help?

Jerome wrote:
Thanks Martin, but what could the reason be for that error message then?
Because even when removing the import keyword, it keeps getting displayed.

How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data.Sql Client.SqlDbTyp e is an enum and you can't use it with the
Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k******** ******@TK2MSFTN GP09.phx.gbl...
Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome


Nov 18 '05 #4
You don't need to declare it, just use it:

Dim dbInt As SqlDbType = _
SqlDbType.Int

Have a look at:

http://msdn.microsoft.com/library/en...umerations.asp

Greetings
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:uk******** ******@TK2MSFTN GP10.phx.gbl...
Thanks Martin, but what could the reason be for that error message then?
Because even when removing the import keyword, it keeps getting displayed.

How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data.Sql Client.SqlDbTyp e is an enum and you can't use it with the
Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k******** ******@TK2MSFTN GP09.phx.gbl...
Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncod ing="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome



Nov 18 '05 #5
For this exact error try:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.Parse( datedebut.Text)

Or some other overload of the static Parse method, or the static ParseExact
method on the DateTime structure, depending on the input.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#x******** ******@TK2MSFTN GP11.phx.gbl...
Here's the line where the error comes:

cmdInsert.Param eters.Add( "@datedebut ", SqlDbType.Small DateTime
).Value=datedeb ut.Text )

Perhaps that'll help?

Jerome wrote:
Thanks Martin, but what could the reason be for that error message then?
Because even when removing the import keyword, it keeps getting displayed.
How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data.Sql Client.SqlDbTyp e is an enum and you can't use it with the Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k******** ******@TK2MSFTN GP09.phx.gbl...

Hi,

I keep getting the same compiler error: 'Name 'SqlDbType' is not
declared' and I don't know why?

I've declared the following:

<%@ Page Language="VB" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" %>
<%@ import Namespace="Syst em.Data." %>
<%@ import Namespace="Syst em.Data.Sqlclie nt" %>
<%@ import Namespace="Syst em.Data.SqlDbTy pe" %>

What am I missing?

Any help would be greatly appreciated!

Jerome


Nov 18 '05 #6
Thanks Martin, but now I get the following:

Compiler Error Message: BC30456: 'SqlDbType' is not a member of 'SqlClient'.

I really don't quite get it because: cmdInsert.Param eters.Add(
"@datedebut ", SqlDbType.Small DateTime).Value =datedebut.Text is the
adaptation of an example from an asp.net book! They only difference is
in the example it was SqlDbType.Money that was used...

I'm trying to find out some more.

Martin Dechev wrote:
For this exact error try:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.Parse( datedebut.Text)

Or some other overload of the static Parse method, or the static ParseExact
method on the DateTime structure, depending on the input.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#x******** ******@TK2MSFTN GP11.phx.gbl...
Here's the line where the error comes:

cmdInsert.Par ameters.Add( "@datedebut ", SqlDbType.Small DateTime
).Value=dated ebut.Text )

Perhaps that'll help?

Jerome wrote:

Thanks Martin, but what could the reason be for that error message then?
Because even when removing the import keyword, it keeps getting
displayed.
How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
Jerome,

There is no namespace System.Data.Sql DbType.

System.Data .SqlClient.SqlD bType is an enum and you can't use it with
the
Import keyword.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#k**** **********@TK2M SFTNGP09.phx.gb l...
>Hi,
>
>I keep getting the same compiler error: 'Name 'SqlDbType' is not
>declared ' and I don't know why?
>
>I've declared the following:
>
><%@ Page Language="VB" ContentType="te xt/html"
>ResponseEn coding="iso-8859-1" %>
><%@ import Namespace="Syst em.Data." %>
><%@ import Namespace="Syst em.Data.Sqlclie nt" %>
><%@ import Namespace="Syst em.Data.SqlDbTy pe" %>
>
>What am I missing?
>
>Any help would be greatly appreciated!
>
>Jerome

Nov 18 '05 #7
Sorry, it was my mistake, SqlDbType is in fact in the System.Data namespace,
not in System.Data.Sql Client.

If datedebut.Text is "27/04/2004 15:30:00" the following should work:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.ParseE xact(datedebut. Text, _
"dd/MM/yyyy HH:mm:ss", _
System.Globaliz ation.DateTimeF ormatInfo.Invar iantInfo)

Greetings
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:Oe******** ******@TK2MSFTN GP12.phx.gbl...
Thanks Martin, but now I get the following:

Compiler Error Message: BC30456: 'SqlDbType' is not a member of 'SqlClient'.
I really don't quite get it because: cmdInsert.Param eters.Add(
"@datedebut ", SqlDbType.Small DateTime).Value =datedebut.Text is the
adaptation of an example from an asp.net book! They only difference is
in the example it was SqlDbType.Money that was used...

I'm trying to find out some more.

Martin Dechev wrote:
For this exact error try:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.Parse( datedebut.Text)

Or some other overload of the static Parse method, or the static ParseExact method on the DateTime structure, depending on the input.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#x******** ******@TK2MSFTN GP11.phx.gbl...
Here's the line where the error comes:

cmdInsert.Par ameters.Add( "@datedebut ", SqlDbType.Small DateTime
).Value=dated ebut.Text )

Perhaps that'll help?

Jerome wrote:
Thanks Martin, but what could the reason be for that error message then?Because even when removing the import keyword, it keeps getting


displayed.
How do I declare that SqlDbType?

Thanks.
Martin Dechev wrote:
>Jerome,
>
>There is no namespace System.Data.Sql DbType.
>
>System.Data .SqlClient.SqlD bType is an enum and you can't use it with


the
>Import keyword.
>
>Hope this helps
>Martin
>"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
>news:#k**** **********@TK2M SFTNGP09.phx.gb l...
>
>
>>Hi,
>>
>>I keep getting the same compiler error: 'Name 'SqlDbType' is not
>>declared ' and I don't know why?
>>
>>I've declared the following:
>>
>><%@ Page Language="VB" ContentType="te xt/html"
>>ResponseEn coding="iso-8859-1" %>
>><%@ import Namespace="Syst em.Data." %>
>><%@ import Namespace="Syst em.Data.Sqlclie nt" %>
>><%@ import Namespace="Syst em.Data.SqlDbTy pe" %>
>>
>>What am I missing?
>>
>>Any help would be greatly appreciated!
>>
>>Jerome
>
>
>


Nov 18 '05 #8

"Martin Dechev" <de*******@hotm ail.com> wrote in message
news:uK******** ******@TK2MSFTN GP09.phx.gbl...
Sorry, it was my mistake, SqlDbType is in fact in the System.Data namespace, not in System.Data.Sql Client.

If datedebut.Text is "27/04/2004 15:30:00" the following should work:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.ParseE xact(datedebut. Text, _
"dd/MM/yyyy HH:mm:ss", _
System.Globaliz ation.DateTimeF ormatInfo.Invar iantInfo)
And I should stop copy-pasting wrong code....

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql DbType.SmallDat eTime).Value = _
DateTime.ParseE xact(datedebut. Text, _
"dd/MM/yyyy HH:mm:ss", _
System.Globaliz ation.DateTimeF ormatInfo.Invar iantInfo)

Greetings
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:Oe******** ******@TK2MSFTN GP12.phx.gbl...
Thanks Martin, but now I get the following:

Compiler Error Message: BC30456: 'SqlDbType' is not a member of

'SqlClient'.

I really don't quite get it because: cmdInsert.Param eters.Add(
"@datedebut ", SqlDbType.Small DateTime).Value =datedebut.Text is the
adaptation of an example from an asp.net book! They only difference is
in the example it was SqlDbType.Money that was used...

I'm trying to find out some more.

Martin Dechev wrote:
For this exact error try:

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.Parse( datedebut.Text)

Or some other overload of the static Parse method, or the static ParseExact method on the DateTime structure, depending on the input.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#x******** ******@TK2MSFTN GP11.phx.gbl...

>Here's the line where the error comes:
>
>cmdInsert.Par ameters.Add( "@datedebut ", SqlDbType.Small DateTime
>).Value=dated ebut.Text )
>
>Perhaps that'll help?
>
>Jerome wrote:
>
>
>>Thanks Martin, but what could the reason be for that error message then?>>Because even when removing the import keyword, it keeps getting

displayed.

>>How do I declare that SqlDbType?
>>
>>Thanks.
>>
>>
>>Martin Dechev wrote:
>>
>>
>>>Jerome,
>>>
>>>There is no namespace System.Data.Sql DbType.
>>>
>>>System.Data .SqlClient.SqlD bType is an enum and you can't use it with

the

>>>Import keyword.
>>>
>>>Hope this helps
>>>Martin
>>>"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
>>>news:#k**** **********@TK2M SFTNGP09.phx.gb l...
>>>
>>>
>>>>Hi,
>>>>
>>>>I keep getting the same compiler error: 'Name 'SqlDbType' is not
>>>>declared ' and I don't know why?
>>>>
>>>>I've declared the following:
>>>>
>>>><%@ Page Language="VB" ContentType="te xt/html"
>>>>ResponseEn coding="iso-8859-1" %>
>>>><%@ import Namespace="Syst em.Data." %>
>>>><%@ import Namespace="Syst em.Data.Sqlclie nt" %>
>>>><%@ import Namespace="Syst em.Data.SqlDbTy pe" %>
>>>>
>>>>What am I missing?
>>>>
>>>>Any help would be greatly appreciated!
>>>>
>>>>Jerome
>>>
>>>
>>>


Nov 18 '05 #9
Thanks, now it works!

Always these troubles with the dates ... ;)

Martin Dechev wrote:
"Martin Dechev" <de*******@hotm ail.com> wrote in message
news:uK******** ******@TK2MSFTN GP09.phx.gbl...
Sorry, it was my mistake, SqlDbType is in fact in the System.Data


namespace,
not in System.Data.Sql Client.

If datedebut.Text is "27/04/2004 15:30:00" the following should work:

cmdInsert.Par ameters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.ParseE xact(datedebut. Text, _
"dd/MM/yyyy HH:mm:ss", _
System.Globaliz ation.DateTimeF ormatInfo.Invar iantInfo)

And I should stop copy-pasting wrong code....

cmdInsert.Param eters.Add( _
"@datedebut ", _
System.Data.Sql DbType.SmallDat eTime).Value = _
DateTime.ParseE xact(datedebut. Text, _
"dd/MM/yyyy HH:mm:ss", _
System.Globaliz ation.DateTimeF ormatInfo.Invar iantInfo)

Greetings
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:Oe****** ********@TK2MSF TNGP12.phx.gbl. ..
Thanks Martin, but now I get the following:

Compiler Error Message: BC30456: 'SqlDbType' is not a member of


'SqlClient' .
I really don't quite get it because: cmdInsert.Param eters.Add(
"@datedebut" , SqlDbType.Small DateTime).Value =datedebut.Text is the
adaptation of an example from an asp.net book! They only difference is
in the example it was SqlDbType.Money that was used...

I'm trying to find out some more.

Martin Dechev wrote:
For this exact error try:

cmdInsert.P arameters.Add( _
"@datedebut ", _
System.Data.Sql Client.SqlDbTyp e.SmallDateTime ).Value = _
DateTime.Parse( datedebut.Text)

Or some other overload of the static Parse method, or the static


ParseExact
method on the DateTime structure, depending on the input.

Hope this helps
Martin
"Jerome" <jh***@no.mnhn. spam.lu> wrote in message
news:#x**** **********@TK2M SFTNGP11.phx.gb l...
>Here's the line where the error comes:
>
>cmdInsert. Parameters.Add( "@datedebut ", SqlDbType.Small DateTime
>).Value=da tedebut.Text )
>
>Perhaps that'll help?
>
>Jerome wrote:
>
>
>
>>Thanks Martin, but what could the reason be for that error message


then?
>>Because even when removing the import keyword, it keeps getting

displayed .
>>How do I declare that SqlDbType?
>>
>>Thanks.
>>
>>
>>Martin Dechev wrote:
>>
>>
>>
>>>Jerome ,
>>>
>>>There is no namespace System.Data.Sql DbType.
>>>
>>>System.D ata.SqlClient.S qlDbType is an enum and you can't use it with

the
>>>Import keyword.
>>>
>>>Hope this helps
>>>Martin
>>>"Jerom e" <jh***@no.mnhn. spam.lu> wrote in message
>>>news:#k* *************@T K2MSFTNGP09.phx .gbl...
>>>
>>>
>>>
>>>>Hi,
>>>>
>>>>I keep getting the same compiler error: 'Name 'SqlDbType' is not
>>>>declare d' and I don't know why?
>>>>
>>>>I've declared the following:
>>>>
>>>><%@ Page Language="VB" ContentType="te xt/html"
>>>>Respons eEncoding="iso-8859-1" %>
>>>><%@ import Namespace="Syst em.Data." %>
>>>><%@ import Namespace="Syst em.Data.Sqlclie nt" %>
>>>><%@ import Namespace="Syst em.Data.SqlDbTy pe" %>
>>>>
>>>>What am I missing?
>>>>
>>>>Any help would be greatly appreciated!
>>>>
>>>>Jerom e
>>>
>>>
>>>

Nov 18 '05 #10

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

Similar topics

1
3665
by: studen77 | last post by:
Thanks to anyone in advance who can help :) Ok, I know this is a far stretch, but what I'm trying to do is to cast a System.object as one of the SqlDbType enumerations (SqlDbType.Int, -.NVarchar, etc.) Is this anyway possible? Through inheritance, or anything?
4
16985
by: Todd Perkins | last post by:
Hello all, surprisingly enough, this is my first newsgroup post, I usually rely on google. So I hope I have enough info contained. Thank you in advance for any help! Problem: I am getting this error when I try to pull up my edit page to display the current database information in the form, and then edit it on click:
5
3207
by: Kevin R | last post by:
I'm trying to update a sql database. It's modified Oledb code from an example that did work with an access database. How can I tweak my code to make it work? Thanks in advance. Kevin ====== Code error:
1
2650
by: Rob Richardson | last post by:
Greetings! I have a SQL Server stored procedure that takes one parameter, named @key. I am trying to run that stored procedure from a VB app. When I create a Parameter object and give it the name "key", I get an error message that says "key is not a parameter for procedure sp_get_active_holdings". When I name the parameter "@key", I get a message that says "Procedure 'sp_get_active_holdings' expects parameter '@key', which was not...
2
1320
by: John Kotuby | last post by:
Hi All, I am trying to move my experience with VB6 and ADO over to VB.NET. I am having difficulty with assigning values to SQL parameters. In classic ADO a value could be assigned to a parameter by referring to it with the index as the parameter name in quotes. Here is some code to illustrate the problem. Dim parameters As SqlParameter() = { _ New SqlParameter("@DocRef", SqlDbType.VarChar, 30), _ New SqlParameter("@EdiDocID",...
1
3081
by: patrick | last post by:
I have tried using 2 type systems to get this to compile but it still gets the same error: Public MustInherit Class _Applications Private _AppID As System.Decimal Private _AppPosition As System.Decimal Private _AppCompany As System.Decimal Private _AppWhen As System.DateTime Private _AppType As System.String Private _AppNotes As System.String
1
2509
by: John Kotuby | last post by:
Hi all, I am working on porting an application from VB6 to VB.NET 2003 and am running into some problems. When declaring and populating the parameters for a SQL Stored Procedure by using the SQLParameter() collection and trying to reference a particular parameter by name rather than index I get a Type Conversion error. But when declaring a SqlClient.SqlCommand object and then adding the parameters to the command object parameters...
4
29398
by: Chris Bordeman | last post by:
I have a DataColumn, want to derive the DbType. I can do column.GetType() but that's a system type, not a db type. How do I convert it to the corresponding type? Thanks much! Chris B.
2
1488
markmcgookin
by: markmcgookin | last post by:
Hi Folks, I'm writing a VB app in .Net 2003, and I am getting a squiggley blue line error on mouse over (Yes that is a technical term) saying "SqlDbType is not declared" when I mouse over the following cmdInsert.Parameters.Add(New SqlCeParameter("@p1", SqlDbType.NText))
0
10426
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10207
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...
0
9993
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
9029
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
7537
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
5558
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4109
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
3713
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2913
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.