473,760 Members | 8,623 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Connecting to a DataBase like i did in VB 6

Hi all,

I wrote a cool little database program a while back, in VB6, and im
intending to rewrite it in .net.

I am new(ish) to .net, but an old hand at VB5/6.

In VB i would access the mdb file something like this.

set db=database
set db=opendatabase ("mydb.mdb")
dim rec as recordset
set rec= db.openrecordse t("select name form names")

while rec.eof=false
debug.write(rec !name)
wend
How do i do the same in .net, it seems to want me to set up these pages ets,
but i need to create queries and joins on the fly so data can be accessed as
the user requests.

Ive looked in the help, and followed the tutorials, but i cant seem to be
able to query the db properly, or even connect to it in the way that i want.

Thanks in advance

Chris

Jul 21 '05 #1
9 1132
Use the OleDdDataAdapte r, Connection and Command controls in winforms to
generate the strings that you require for your app. To manipulate these
strings programmaticall y try using the stringbuilder class.

"Chris" <xc*****@lineon e.net> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
Hi all,

I wrote a cool little database program a while back, in VB6, and im
intending to rewrite it in .net.

I am new(ish) to .net, but an old hand at VB5/6.

In VB i would access the mdb file something like this.

set db=database
set db=opendatabase ("mydb.mdb")
dim rec as recordset
set rec= db.openrecordse t("select name form names")

while rec.eof=false
debug.write(rec !name)
wend
How do i do the same in .net, it seems to want me to set up these pages ets, but i need to create queries and joins on the fly so data can be accessed as the user requests.

Ive looked in the help, and followed the tutorials, but i cant seem to be
able to query the db properly, or even connect to it in the way that i want.
Thanks in advance

Chris

Jul 21 '05 #2
Can you give a code example that does teh same as my code below please.
"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Use the OleDdDataAdapte r, Connection and Command controls in winforms to
generate the strings that you require for your app. To manipulate these
strings programmaticall y try using the stringbuilder class.

"Chris" <xc*****@lineon e.net> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
Hi all,

I wrote a cool little database program a while back, in VB6, and im
intending to rewrite it in .net.

I am new(ish) to .net, but an old hand at VB5/6.

In VB i would access the mdb file something like this.

set db=database
set db=opendatabase ("mydb.mdb")
dim rec as recordset
set rec= db.openrecordse t("select name form names")

while rec.eof=false
debug.write(rec !name) rec.movenext wend
How do i do the same in .net, it seems to want me to set up these pages ets,
but i need to create queries and joins on the fly so data can be accessed as
the user requests.

Ive looked in the help, and followed the tutorials, but i cant seem to

be able to query the db properly, or even connect to it in the way that i

want.

Thanks in advance

Chris


Jul 21 '05 #3
Chris,

Without all error checking.
\\\
Dim ds as new dataset
Dim Conn As New OleDbConnection (Microsoft.Jet. OLEDB.4.0;Data
Source="C:\mydb .Mdb")
Dim da As New OleDbDataAdapte r("Select name from names",Conn)
da.Fill(ds)
for each dr as datarow in ds.tables(0).ro ws
console.write(d r("name").ToStr ing)
next
////

I hope this helps?

Cor

I wrote a cool little database program a while back, in VB6, and im
intending to rewrite it in .net.

I am new(ish) to .net, but an old hand at VB5/6.

In VB i would access the mdb file something like this.

set db=database
set db=opendatabase ("mydb.mdb")
dim rec as recordset
set rec= db.openrecordse t("select name form names")

while rec.eof=false
debug.write(rec !name)
wend
How do i do the same in .net, it seems to want me to set up these pages ets, but i need to create queries and joins on the fly so data can be accessed as the user requests.

Ive looked in the help, and followed the tutorials, but i cant seem to be
able to query the db properly, or even connect to it in the way that i want.
Thanks in advance

Chris

Jul 21 '05 #4
Something like this:

Dim mydbConnection As OleDb.OleDbConn ection
mydbConnection. ConnectionStrin g = "c:\mydb.md b"
mydbConnection. Open()

Dim mydbCommand As OleDb.OleDbComm and
mydbCommand.Con nection = mydbConnection
mydbCommand.Com mandText = "SELECT * FROM MyTable"

Dim myreader As oleDB.OleDbData Reader

myreader = mydbCommand.Exe cuteReader

You can now inspect the myreader object the same way as you did with your
recordset.

"Chris" <xc*****@lineon e.net> wrote in message
news:e5******** ******@tk2msftn gp13.phx.gbl...
Can you give a code example that does teh same as my code below please.
"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Use the OleDdDataAdapte r, Connection and Command controls in winforms to
generate the strings that you require for your app. To manipulate these
strings programmaticall y try using the stringbuilder class.

"Chris" <xc*****@lineon e.net> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
Hi all,

I wrote a cool little database program a while back, in VB6, and im
intending to rewrite it in .net.

I am new(ish) to .net, but an old hand at VB5/6.

In VB i would access the mdb file something like this.

set db=database
set db=opendatabase ("mydb.mdb")
dim rec as recordset
set rec= db.openrecordse t("select name form names")

while rec.eof=false
debug.write(rec !name) rec.movenext wend
How do i do the same in .net, it seems to want me to set up these
pages ets,
but i need to create queries and joins on the fly so data can be

accessed
as
the user requests.

Ive looked in the help, and followed the tutorials, but i cant seem to

be able to query the db properly, or even connect to it in the way that i

want.

Thanks in advance

Chris



Jul 21 '05 #5

Thanks Nick thats great, but how do i get at the data?

eg.

debug.writeline (myreader!name)

just throws an error. AAh i know what i wnnt, but not how to sintax it.

BTW, all the objects need to be new(ed) on the dims.

"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Something like this:

Dim mydbConnection As OleDb.OleDbConn ection
mydbConnection. ConnectionStrin g = "c:\mydb.md b"
mydbConnection. Open()

Dim mydbCommand As OleDb.OleDbComm and
mydbCommand.Con nection = mydbConnection
mydbCommand.Com mandText = "SELECT * FROM MyTable"

Dim myreader As oleDB.OleDbData Reader

myreader = mydbCommand.Exe cuteReader

You can now inspect the myreader object the same way as you did with your
recordset.

"Chris" <xc*****@lineon e.net> wrote in message
news:e5******** ******@tk2msftn gp13.phx.gbl...
Can you give a code example that does teh same as my code below please.
"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Use the OleDdDataAdapte r, Connection and Command controls in winforms to generate the strings that you require for your app. To manipulate these strings programmaticall y try using the stringbuilder class.

"Chris" <xc*****@lineon e.net> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
> Hi all,
>
> I wrote a cool little database program a while back, in VB6, and im
> intending to rewrite it in .net.
>
> I am new(ish) to .net, but an old hand at VB5/6.
>
> In VB i would access the mdb file something like this.
>
> set db=database
> set db=opendatabase ("mydb.mdb")
> dim rec as recordset
> set rec= db.openrecordse t("select name form names")
>
> while rec.eof=false
> debug.write(rec !name)

rec.movenext
> wend
>
>
> How do i do the same in .net, it seems to want me to set up these pages ets,
> but i need to create queries and joins on the fly so data can be

accessed
as
> the user requests.
>
> Ive looked in the help, and followed the tutorials, but i cant seem to
be
> able to query the db properly, or even connect to it in the way that

i want.
>
> Thanks in advance
>
> Chris
>
>
>



Jul 21 '05 #6
Chris,
Use
Do While myreader.Read ' assuming I've got the VB syntax for this
loop
Dim myVar AS string = myreader.GetStr ing(0) ' for a string at the
first field returned
' also see GetOrdinal to lookup the column #
from the name
Dim myInt AS int =
myreader.GetInt 32(myreader.Get Ordinal("myFiel dName"))
Loop

Ron Allen
"Chris" <xc*****@lineon e.net> wrote in message
news:uL******** ******@TK2MSFTN GP09.phx.gbl...

Thanks Nick thats great, but how do i get at the data?

eg.

debug.writeline (myreader!name)

just throws an error. AAh i know what i wnnt, but not how to sintax it.

BTW, all the objects need to be new(ed) on the dims.

"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Something like this:

Dim mydbConnection As OleDb.OleDbConn ection
mydbConnection. ConnectionStrin g = "c:\mydb.md b"
mydbConnection. Open()

Dim mydbCommand As OleDb.OleDbComm and
mydbCommand.Con nection = mydbConnection
mydbCommand.Com mandText = "SELECT * FROM MyTable"

Dim myreader As oleDB.OleDbData Reader

myreader = mydbCommand.Exe cuteReader

You can now inspect the myreader object the same way as you did with your
recordset.

"Chris" <xc*****@lineon e.net> wrote in message
news:e5******** ******@tk2msftn gp13.phx.gbl...
Can you give a code example that does teh same as my code below please.

"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> Use the OleDdDataAdapte r, Connection and Command controls in winforms
to
> generate the strings that you require for your app. To manipulate
these > strings programmaticall y try using the stringbuilder class.
>
> "Chris" <xc*****@lineon e.net> wrote in message
> news:OS******** ******@tk2msftn gp13.phx.gbl...
> > Hi all,
> >
> > I wrote a cool little database program a while back, in VB6, and
im > > intending to rewrite it in .net.
> >
> > I am new(ish) to .net, but an old hand at VB5/6.
> >
> > In VB i would access the mdb file something like this.
> >
> > set db=database
> > set db=opendatabase ("mydb.mdb")
> > dim rec as recordset
> > set rec= db.openrecordse t("select name form names")
> >
> > while rec.eof=false
> > debug.write(rec !name)
rec.movenext
> > wend
> >
> >
> > How do i do the same in .net, it seems to want me to set up these

pages
> ets,
> > but i need to create queries and joins on the fly so data can be
accessed
> as
> > the user requests.
> >
> > Ive looked in the help, and followed the tutorials, but i cant

seem to be
> > able to query the db properly, or even connect to it in the way
that
i > want.
> >
> > Thanks in advance
> >
> > Chris
> >
> >
> >
>
>



Jul 21 '05 #7
Sorry ron but that does nothing but throw erreors.

I think i am missing a consecpt here, or .NET has taken DB programing and
made it so trikey that no one can use it propperly.

All i wnat is this translated into .NET, ive just complied it and got it
running in VB6, took me 5mins. In fact it took me less time to write that
code than it did to write this message. Unlike 2+ days for .NET to do the
same thing and still no joy.

here is excatly what i wnat converted, i need the VAR names to remain if
possible.
db.mdb has one table (Users) with 2 collums, (Name, Password)
///
dim DB as Database ' i wnat to use the db everywher in the program so i
only want to open it once.

sub main()

set DB = opendatabase("C :\db.mdb") 'open DB

dim qry as string = "Select * from users;" 'set query
dim usr as recordset 'create an empty
record set

set usr = db.openrecordse t(qry) ' populate record set

while usr.eof = false ' loop unless
end of record set is reached
debug.writeline (usr!Name) 'dump name from
current record
debug.writeline (usr!Password) 'dump password from
current record
usr.movenext 'move to
next record
end while.

end sub
///

how can this be so diffacult in .NET !!!



"Ron Allen" <rallen@_nospam _src-us.com> wrote in message
news:ex******** ******@TK2MSFTN GP09.phx.gbl...
Chris,
Use
Do While myreader.Read ' assuming I've got the VB syntax for this
loop
Dim myVar AS string = myreader.GetStr ing(0) ' for a string at the first field returned
' also see GetOrdinal to lookup the column #
from the name
Dim myInt AS int =
myreader.GetInt 32(myreader.Get Ordinal("myFiel dName"))
Loop

Ron Allen
"Chris" <xc*****@lineon e.net> wrote in message
news:uL******** ******@TK2MSFTN GP09.phx.gbl...

Thanks Nick thats great, but how do i get at the data?

eg.

debug.writeline (myreader!name)

just throws an error. AAh i know what i wnnt, but not how to sintax it.

BTW, all the objects need to be new(ed) on the dims.

"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Something like this:

Dim mydbConnection As OleDb.OleDbConn ection
mydbConnection. ConnectionStrin g = "c:\mydb.md b"
mydbConnection. Open()

Dim mydbCommand As OleDb.OleDbComm and
mydbCommand.Con nection = mydbConnection
mydbCommand.Com mandText = "SELECT * FROM MyTable"

Dim myreader As oleDB.OleDbData Reader

myreader = mydbCommand.Exe cuteReader

You can now inspect the myreader object the same way as you did with your recordset.

"Chris" <xc*****@lineon e.net> wrote in message
news:e5******** ******@tk2msftn gp13.phx.gbl...
> Can you give a code example that does teh same as my code below please. >
>
> "Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
> news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > Use the OleDdDataAdapte r, Connection and Command controls in winforms to
> > generate the strings that you require for your app. To manipulate

these
> > strings programmaticall y try using the stringbuilder class.
> >
> > "Chris" <xc*****@lineon e.net> wrote in message
> > news:OS******** ******@tk2msftn gp13.phx.gbl...
> > > Hi all,
> > >
> > > I wrote a cool little database program a while back, in VB6, and im > > > intending to rewrite it in .net.
> > >
> > > I am new(ish) to .net, but an old hand at VB5/6.
> > >
> > > In VB i would access the mdb file something like this.
> > >
> > > set db=database
> > > set db=opendatabase ("mydb.mdb")
> > > dim rec as recordset
> > > set rec= db.openrecordse t("select name form names")
> > >
> > > while rec.eof=false
> > > debug.write(rec !name)
> rec.movenext
> > > wend
> > >
> > >
> > > How do i do the same in .net, it seems to want me to set up these pages
> > ets,
> > > but i need to create queries and joins on the fly so data can be
> accessed
> > as
> > > the user requests.
> > >
> > > Ive looked in the help, and followed the tutorials, but i cant

seem
to
> be
> > > able to query the db properly, or even connect to it in the way

that
i
> > want.
> > >
> > > Thanks in advance
> > >
> > > Chris
> > >
> > >
> > >
> >
> >
>
>



Jul 21 '05 #8
Chris,
It doesn't seem that difficult to me. In C# I'd write

void main() // or some other function called at startup.
{
string connStr = @"Provider=Micr osoft.Jet.OLEDB .4.0;Data
Source=C:\db.md b;Mode=Share Deny None;";
OleDbConnection db = new OleDbConnection (connStr)
OleDbCommand cmd = new OleDbCommand("S elect Name, Password FROM Users",
db);
_db.Open();
OleDbDataReader rdr = cmd.ExecuteRead er();
while (rdr.Read())
{
System.Diagnost ics.Debug.Write Line(rdr.GetStr ing(0));
System.Diagnost ics.Debug.Write Line(rdr.GetStr ing(1));
}
_db.Close(); // close the connection
}

Note that to use the db variable in other modules you will have to make it
public and specific to the module and pass the class it is in to those
programs. Also make sure that your main doesn't just return after writing
these as that will cause the program to exit. I do this by having my own
class for doing database manipulation. I pass in an open connection or a
database name/server nam (filename for OleDb) and then do all the
manipulation there.

You may want to visit microsoft.publi c.dotnet.framew ork.adonet as that
is dedicated to ADO.NET questions.

Also the book by David Sceppa "ADO.NET Core Reference" is quite good and
has a lot of examples in both C# and VB.NET

Ron Allen

"Chris" <xc*****@lineon e.net> wrote in message
news:u$******** ******@TK2MSFTN GP11.phx.gbl...
Sorry ron but that does nothing but throw erreors.

I think i am missing a consecpt here, or .NET has taken DB programing and
made it so trikey that no one can use it propperly.

All i wnat is this translated into .NET, ive just complied it and got it
running in VB6, took me 5mins. In fact it took me less time to write that
code than it did to write this message. Unlike 2+ days for .NET to do the
same thing and still no joy.

here is excatly what i wnat converted, i need the VAR names to remain if
possible.
db.mdb has one table (Users) with 2 collums, (Name, Password)
///
dim DB as Database ' i wnat to use the db everywher in the program so i
only want to open it once.

sub main()

set DB = opendatabase("C :\db.mdb") 'open DB

dim qry as string = "Select * from users;" 'set query
dim usr as recordset 'create an empty record set

set usr = db.openrecordse t(qry) ' populate record set

while usr.eof = false ' loop unless end of record set is reached
debug.writeline (usr!Name) 'dump name from
current record
debug.writeline (usr!Password) 'dump password from
current record
usr.movenext 'move to
next record
end while.

end sub
///

how can this be so diffacult in .NET !!!



"Ron Allen" <rallen@_nospam _src-us.com> wrote in message
news:ex******** ******@TK2MSFTN GP09.phx.gbl...
Chris,
Use
Do While myreader.Read ' assuming I've got the VB syntax for this
loop
Dim myVar AS string = myreader.GetStr ing(0) ' for a string at

the
first field returned
' also see GetOrdinal to lookup the column #
from the name
Dim myInt AS int =
myreader.GetInt 32(myreader.Get Ordinal("myFiel dName"))
Loop

Ron Allen
"Chris" <xc*****@lineon e.net> wrote in message
news:uL******** ******@TK2MSFTN GP09.phx.gbl...

Thanks Nick thats great, but how do i get at the data?

eg.

debug.writeline (myreader!name)

just throws an error. AAh i know what i wnnt, but not how to sintax it.
BTW, all the objects need to be new(ed) on the dims.

"Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
> Something like this:
>
> Dim mydbConnection As OleDb.OleDbConn ection
> mydbConnection. ConnectionStrin g = "c:\mydb.md b"
> mydbConnection. Open()
>
> Dim mydbCommand As OleDb.OleDbComm and
> mydbCommand.Con nection = mydbConnection
> mydbCommand.Com mandText = "SELECT * FROM MyTable"
>
> Dim myreader As oleDB.OleDbData Reader
>
> myreader = mydbCommand.Exe cuteReader
>
> You can now inspect the myreader object the same way as you did with

your
> recordset.
>
> "Chris" <xc*****@lineon e.net> wrote in message
> news:e5******** ******@tk2msftn gp13.phx.gbl...
> > Can you give a code example that does teh same as my code below

please.
> >
> >
> > "Nick Wilton" <nickDOTwiltonA ThtzDOTbiz> wrote in message
> > news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > > Use the OleDdDataAdapte r, Connection and Command controls in

winforms
> to
> > > generate the strings that you require for your app. To manipulate these
> > > strings programmaticall y try using the stringbuilder class.
> > >
> > > "Chris" <xc*****@lineon e.net> wrote in message
> > > news:OS******** ******@tk2msftn gp13.phx.gbl...
> > > > Hi all,
> > > >
> > > > I wrote a cool little database program a while back, in VB6, and
im
> > > > intending to rewrite it in .net.
> > > >
> > > > I am new(ish) to .net, but an old hand at VB5/6.
> > > >
> > > > In VB i would access the mdb file something like this.
> > > >
> > > > set db=database
> > > > set db=opendatabase ("mydb.mdb")
> > > > dim rec as recordset
> > > > set rec= db.openrecordse t("select name form names")
> > > >
> > > > while rec.eof=false
> > > > debug.write(rec !name)
> > rec.movenext
> > > > wend
> > > >
> > > >
> > > > How do i do the same in .net, it seems to want me to set up these > pages
> > > ets,
> > > > but i need to create queries and joins on the fly so data can
be > > accessed
> > > as
> > > > the user requests.
> > > >
> > > > Ive looked in the help, and followed the tutorials, but i cant

seem
to
> > be
> > > > able to query the db properly, or even connect to it in the

way that
i
> > > want.
> > > >
> > > > Thanks in advance
> > > >
> > > > Chris
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Jul 21 '05 #9
Chris,

I am really stumbled, I made a sample exactly as yours however now in VBNet
way and you even did not look to it.

Cor
Jul 21 '05 #10

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

Similar topics

4
5494
by: John Morgan | last post by:
I have Enterprise Manager on my local machine. For the last twelve months it has been connecting without problem to my online SQL Server database provided by my ISP. Three weeks ago the ISP applied some sort of extra security arrangements to their SQL Server to allow access only through port 1433. they have told me to configure an alias using Network Client and to register this alias in the usual way using my Enterprise Manager. My...
12
2790
by: Ann Marinas | last post by:
Hi all, I would like to ask for some help regarding separating the asp.net webserver and the sql server. I have created an asp.net application for a certain company. Initially, we installed both the iis and sql server in a single machine. Not too long ago, the machine had some hardware problems, and management has decided to purchase new servers, for both asp.net and sql server.
5
7595
by: nielsgron | last post by:
Hi, I have created a database on DB2 8.1 and 8.2 for Windows using the codeset "Big5" with the command: db2 CREATE DATABASE TWBIG5 USING CODESET BIG5 TERRITORY TW When I try to connect to the database using the DB2 Universal Type 4 JDBC drivers v2.6 I get an error: "com.ibm.db2.jcc.b.DisconnectException: encoding not supported!!
0
1547
by: =?Utf-8?B?R2lkaQ==?= | last post by:
Hi, I've my win32 application which connecting to my sql database. till now i used MSDE as my database and now i want to upgrade to sql express 2005. after the upgrade i tried to connect to the database and couldn't. i keep getting an error which saying that database doesn't exists or access is denied. is there something diffrent between connecting to MSDE and connecting to sql express 2005 ? here with my connection string.
3
1446
by: Sebouh | last post by:
Hi guys. I'm completely new to databases, so i wanna ask you if this is achievable. I've been learning how to connect to an MS SQL database file with java. I've finally learned the basics, connecting and manipulating... but here's what i wanna do. I don't want to connect to a server to change the database content. I want to have the database file inside the application folder and manipulate it directly from there, without logging on to some...
0
9521
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
9945
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
9765
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
8768
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
7324
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
6599
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5361
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2733
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.