473,385 Members | 1,311 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,385 software developers and data experts.

VB.NET Class Generation

Ok, now I am truely going nuts... probably why I didn't use the Class
Builder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite the
bullet and build classes for each of my 'entities' that operate within the
program, ie, passenger, vehicle, etc. Then seperate UI classes that link to
these. (Partially, because eventually several add-ons will be able to reuse
the code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....

Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines of
code... doing not much more than setting and retrieving variables. Which,
if that was the case, would be fine, but I'd also like to set a 'dirty' flag
if any of them are reset, some business logic will be in some fields, etc.

So, is there a 'short-form' for properties, OR, is there a way to 'fake'
properties, that is something to do with the reflection library to simulate
properties, but have them all serviced by only a couple property functions
(ie, use a collection to store the values, and one property service function
to check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and creating
20-30 data class libraries with 20-30 fields each ---- just tell me it isn't
so.


Nov 20 '05 #1
16 4224
Nope, there's really isn't a shorter way.

The only "shortcut" is to expose public fields:

Public Class Passenger
Public FirstName as String
End Class

If you do this, you can treat it like a de facto property. However, this is
frowned upon in OO programming -- you can't insert code to validate the the
property, unless you change the field to a property. But, for a contrary
perspective, check out the "which is faster, Public Field or Property"
thread in microsoft.public.framework.performance.

"Richard Brown" <rb****@easylift.org> wrote in message
news:OK**************@TK2MSFTNGP11.phx.gbl...
Ok, now I am truely going nuts... probably why I didn't use the Class
Builder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite the
bullet and build classes for each of my 'entities' that operate within the
program, ie, passenger, vehicle, etc. Then seperate UI classes that link to these. (Partially, because eventually several add-ons will be able to reuse the code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....

Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines of code... doing not much more than setting and retrieving variables. Which,
if that was the case, would be fine, but I'd also like to set a 'dirty' flag if any of them are reset, some business logic will be in some fields, etc.

So, is there a 'short-form' for properties, OR, is there a way to 'fake'
properties, that is something to do with the reflection library to simulate properties, but have them all serviced by only a couple property functions
(ie, use a collection to store the values, and one property service function to check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and creating 20-30 data class libraries with 20-30 fields each ---- just tell me it isn't so.

Nov 20 '05 #2
Thanks Robert,

Yes, I have looked at the thread in the performance newsgroup, very
interesting and am following it.
I got creative and started looking into the Reflection.Emit library and
dynamic assemblies and such...
Was just wondering if there was a way to use Reflection.Emit to alter an
already defined assembly on the fly, ie, use BuildProperty interfaces to add
dynamic properties to the class I have already created....

I know... I really like pain.... a lot of pain...

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:eB**************@tk2msftngp13.phx.gbl...
Nope, there's really isn't a shorter way.

The only "shortcut" is to expose public fields:

Public Class Passenger
Public FirstName as String
End Class

If you do this, you can treat it like a de facto property. However, this is frowned upon in OO programming -- you can't insert code to validate the the property, unless you change the field to a property. But, for a contrary
perspective, check out the "which is faster, Public Field or Property"
thread in microsoft.public.framework.performance.

"Richard Brown" <rb****@easylift.org> wrote in message
news:OK**************@TK2MSFTNGP11.phx.gbl...
Ok, now I am truely going nuts... probably why I didn't use the Class
Builder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite the
bullet and build classes for each of my 'entities' that operate within the program, ie, passenger, vehicle, etc. Then seperate UI classes that link
to
these. (Partially, because eventually several add-ons will be able to

reuse
the code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....

Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines

of
code... doing not much more than setting and retrieving variables.

Which, if that was the case, would be fine, but I'd also like to set a 'dirty'

flag
if any of them are reset, some business logic will be in some fields, etc.
So, is there a 'short-form' for properties, OR, is there a way to 'fake'
properties, that is something to do with the reflection library to

simulate
properties, but have them all serviced by only a couple property functions (ie, use a collection to store the values, and one property service

function
to check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and

creating
20-30 data class libraries with 20-30 fields each ---- just tell me it

isn't
so.


Nov 20 '05 #3
Hi Richard,

|| I know... I really like pain.... a lot of pain...

LOL.

You mentioned the VB6 Class builder. You can get class builders for .NET,
I'm sure, though I've never used one. Perhaps a Google search?

Another approach is to write your own Property Generator using macros
(Tools/Macros). The full method is to write an Add-In, but a quicker way is to
write a macro which you can assign to a key. Press the key and your code
sticks up a dialogue with a TextBox for Name, Checkboxes for Get/Set,
DirtyBit, etc. Hit Ok and it inserts the Property into the current code module
at the current position.

I'd love to give you a sample but I'm busy right now (zzzz). Perhaps you'd
like to specify what you want. I'll look at it tomorrow and turn over my
findings to you. You can take it from there.

Regards,
Fergus
Nov 20 '05 #4
Ditto on the LOL. <g>

I'm sure there are templates/code generators out there to ease the pain. As
an alternative, you could try writing a macro to automatically insert the
property declarations. Using reflection is _really_ the hard way to go.

If you're concerned about the ugliness of your code, remember that #Region
is your friend.

(I.e.,
#Region " Stupid Property Declarations "
....
#End Region
)

Just remember... was it really any better in VB6?
"Richard Brown" <rb****@easylift.org> wrote in message
news:O0**************@tk2msftngp13.phx.gbl...
Thanks Robert,

Yes, I have looked at the thread in the performance newsgroup, very
interesting and am following it.
I got creative and started looking into the Reflection.Emit library and
dynamic assemblies and such...
Was just wondering if there was a way to use Reflection.Emit to alter an
already defined assembly on the fly, ie, use BuildProperty interfaces to add dynamic properties to the class I have already created....

I know... I really like pain.... a lot of pain...

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:eB**************@tk2msftngp13.phx.gbl...
Nope, there's really isn't a shorter way.

The only "shortcut" is to expose public fields:

Public Class Passenger
Public FirstName as String
End Class

If you do this, you can treat it like a de facto property. However, this
is
frowned upon in OO programming -- you can't insert code to validate the

the
property, unless you change the field to a property. But, for a contrary perspective, check out the "which is faster, Public Field or Property"
thread in microsoft.public.framework.performance.

"Richard Brown" <rb****@easylift.org> wrote in message
news:OK**************@TK2MSFTNGP11.phx.gbl...
Ok, now I am truely going nuts... probably why I didn't use the Class
Builder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite the bullet and build classes for each of my 'entities' that operate within the program, ie, passenger, vehicle, etc. Then seperate UI classes that link
to
these. (Partially, because eventually several add-ons will be able to

reuse
the code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....

Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines of
code... doing not much more than setting and retrieving variables. Which, if that was the case, would be fine, but I'd also like to set a
'dirty' flag
if any of them are reset, some business logic will be in some fields,

etc.
So, is there a 'short-form' for properties, OR, is there a way to
'fake' properties, that is something to do with the reflection library to

simulate
properties, but have them all serviced by only a couple property

functions (ie, use a collection to store the values, and one property service

function
to check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and

creating
20-30 data class libraries with 20-30 fields each ---- just tell me it

isn't
so.



Nov 20 '05 #5
Hi Richard

I'm not sure why you find this so annoying?

But as you do I thought I'd share an idea I had as I get a
bit fed up replicating database structures into object
models. I haven't actually implemented this yet (but I
plan to) so it may not work for some reason I haven't
thought of.

In ADO.NET the dataset class would seem to provide
everything you need. Primarily, it's only connected to
the database whilst the data is being retrieved or updated
so I can't see a problem with having one alive for an
extended period of time. Also if you change the values of
any fields the original values are preserved so you can
provide an Undo facility. IsDirty properties can be
implemented by comparing the old and new values. Finally
all of the database rules such as datatypes, uniqueness
and relationships are part of the dataset so you can use
those as a basis of your validation and if the database
changes so does your application without having to re-
compile it.

Last thing is that the Dataset class is inheritable so you
should be able to derive custom classes to suit your needs
eg add a readonly property for FullName that concatenates
FirstName & " " & LastName.

OK, really last thing is there is a ms supplied console
tool for creating your own strongly typed datasets called
xsd which makes your code nicer.

I guess this is a bit more than you were asking for, sorry
if I've gone off on a bit of a tangent?

Eric
-----Original Message-----
Ok, now I am truely going nuts... probably why I didn't use the ClassBuilder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite thebullet and build classes for each of my 'entities' that operate within theprogram, ie, passenger, vehicle, etc. Then seperate UI classes that link tothese. (Partially, because eventually several add-ons will be able to reusethe code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....
Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines ofcode... doing not much more than setting and retrieving variables. Which,if that was the case, would be fine, but I'd also like to set a 'dirty' flagif any of them are reset, some business logic will be in some fields, etc.
So, is there a 'short-form' for properties, OR, is there a way to 'fake'properties, that is something to do with the reflection library to simulateproperties, but have them all serviced by only a couple property functions(ie, use a collection to store the values, and one property service functionto check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and creating20-30 data class libraries with 20-30 fields each ---- just tell me it isn'tso.


.

Nov 20 '05 #6
Richard,
Instead of Reflection.Emit consider using the System.CodeDom namespace.

Reflection.Emit creates binary assemblies, System.CodeDom creates text
source files.

There is also using Macros and actually inserting text into the current
document.

If I have the 'definitions' in a database/text file/xml file I've been known
to use System.CodeDom to create the skeletons for my class, then modify that
to complete it.

Hope this helps
Jay

"Richard Brown" <rb****@easylift.org> wrote in message
news:O0**************@tk2msftngp13.phx.gbl...
Thanks Robert,

Yes, I have looked at the thread in the performance newsgroup, very
interesting and am following it.
I got creative and started looking into the Reflection.Emit library and
dynamic assemblies and such...
Was just wondering if there was a way to use Reflection.Emit to alter an
already defined assembly on the fly, ie, use BuildProperty interfaces to add dynamic properties to the class I have already created....

I know... I really like pain.... a lot of pain...

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:eB**************@tk2msftngp13.phx.gbl...
Nope, there's really isn't a shorter way.

The only "shortcut" is to expose public fields:

Public Class Passenger
Public FirstName as String
End Class

If you do this, you can treat it like a de facto property. However, this
is
frowned upon in OO programming -- you can't insert code to validate the

the
property, unless you change the field to a property. But, for a contrary perspective, check out the "which is faster, Public Field or Property"
thread in microsoft.public.framework.performance.

"Richard Brown" <rb****@easylift.org> wrote in message
news:OK**************@TK2MSFTNGP11.phx.gbl...
Ok, now I am truely going nuts... probably why I didn't use the Class
Builder in VB6 extensively.

But, being the 'proper programmer' that I should, I'm trying to bite the bullet and build classes for each of my 'entities' that operate within the program, ie, passenger, vehicle, etc. Then seperate UI classes that link
to
these. (Partially, because eventually several add-ons will be able to

reuse
the code in the data classes).

My question is this....

Is there any SHORTER way to define properties in a class than....

Public Class Passenger
Private sFirstName As String

Public Property FirstName As String
Get
FirstName = iFirstName
End Get
Set
iFirstName = FirstName
End Set
End Property
...
End Class

Obviously, with 10-20 fields in the class, you end up with, oh 100 lines of
code... doing not much more than setting and retrieving variables. Which, if that was the case, would be fine, but I'd also like to set a
'dirty' flag
if any of them are reset, some business logic will be in some fields,

etc.
So, is there a 'short-form' for properties, OR, is there a way to
'fake' properties, that is something to do with the reflection library to

simulate
properties, but have them all serviced by only a couple property

functions (ie, use a collection to store the values, and one property service

function
to check them/assign them/perform other logic).

This probably sounds lazy of me, but Im dreading going through and

creating
20-30 data class libraries with 20-30 fields each ---- just tell me it

isn't
so.



Nov 20 '05 #7
Don
Press the key and your code sticks up a dialogue

I'm a long time VB programmer but am brand new to .Net. I'm suprised
that VS doesn't include a 'Property Builder' and would like to create
one for myself. I'll probably wind up doing it as an add-in but I'm
curious about how to open a dialog box from a macro. Is that possible?

Thanks,

Don

On Fri, 5 Sep 2003 06:10:44 +0100, "Fergus Cooney"
<fi******@tesco.net> wrote:
Hi Richard,

|| I know... I really like pain.... a lot of pain...

LOL.

You mentioned the VB6 Class builder. You can get class builders for .NET,
I'm sure, though I've never used one. Perhaps a Google search?

Another approach is to write your own Property Generator using macros
(Tools/Macros). The full method is to write an Add-In, but a quicker way is to
write a macro which you can assign to a key. Press the key and your code
sticks up a dialogue with a TextBox for Name, Checkboxes for Get/Set,
DirtyBit, etc. Hit Ok and it inserts the Property into the current code module
at the current position.

I'd love to give you a sample but I'm busy right now (zzzz). Perhaps you'd
like to specify what you want. I'll look at it tomorrow and turn over my
findings to you. You can take it from there.

Regards,
Fergus


Nov 20 '05 #8
Hi Don,

It certainly is. :-)

You've got access to the simple built-in ones - InputBox()

You can also create your own forms. Although the Macros IDE only gives you
the choice of Add Module, Class or Code File, a Form is a Class so you can
create a form that way. It's easier though, to create the form in the regular
IDE and the use Add an Existing Item.

You'll probably have to add a few References to the project.
System.Drawing wasn't there by default in my setup (v2002).

Regards,
Fergus
Nov 20 '05 #9
Don

Hi Fergus, thanks for your help.

I created a smal test project with a simple dialog box to make sure it
worked. It did.

I then created a test macro and added the dialog box as an 'Existing
Item' and tried calling it the same way that I did in my test project.
When I run the macro (code below) I get a build error on the 2
'DialogResult' lines:

Name 'DialogResult' is not declared.

That looks like the missing 'User Defined Type Declaration' error that
you get in OLD VB when when a Reference is missing.

I found 'DialogResult' in 'Help' but don't see anything that indicates
what Reference is needed. Learning all these Namespaces, assemblies,
components, etc. seems pretty daunting so any tips on navigating this
stuff will be greatly appreciated,

Sub TempMacro1()
Dim dialog As New MyDialog1
Select Case dialog.ShowDialog()
Case DialogResult.OK
'-- the Ok button was pressed
MsgBox(dialog.txtPropName.Text, MsgBoxStyle.Information)
Case DialogResult.Cancel
'-- the Cancel button was pressed
MsgBox("Cancel was pressed.", MsgBoxStyle.Exclamation)
End Select
dialog.Dispose()
End Sub

On Wed, 17 Sep 2003 19:54:40 +0100, "Fergus Cooney"
<fi******@tesco.net> wrote:
Hi Don,

It certainly is. :-)

You've got access to the simple built-in ones - InputBox()

You can also create your own forms. Although the Macros IDE only gives you
the choice of Add Module, Class or Code File, a Form is a Class so you can
create a form that way. It's easier though, to create the form in the regular
IDE and the use Add an Existing Item.

You'll probably have to add a few References to the project.
System.Drawing wasn't there by default in my setup (v2002).

Regards,
Fergus


Nov 20 '05 #10
Hi Don,

If you have the .NET help, look up DialogResult in the index. You'll see
DialogResult enumeration and DialogResult property. The latter is the result
from the Form, which you know about. The enumeration is the one that you are
using in your Case statements and having trouble with.

Click on that the enumeration entry. This will take you to the page giving
that familiar list of Ok, Cancel, etc.The bit you're interested in is at the
bottom where it says Requirements. Under that it says the Namespace that you
need in order to reference the item in question. For DialogResult it's
System.Windows.Forms.

Now you have a choice. You can either give the full name each time you use
DialogResult or you can add an Imports at the top of the code.

Case System.Windows.Forms.DialogResult.Ok
Case System.Windows.Forms.DialogResult.Cancel
or
Imports System.Windows.Forms
: : :
: : :
Case DialogResult.Ok
Case DialogResult.Cancel

I know which I prefer. ;-)

Regards,
Fergus
Nov 20 '05 #11
Cor
Fergus,
Which one?
I use them in a way like one time using no import; more times using,
import.
Except with "mshtml" that I never import anymore.
Cor
Nov 20 '05 #12
Hi Cor,

Same as you, my friend, same as you.

Regards,
Fergus
Nov 20 '05 #13
Don

Howdy Fergus, thanks for sticking with me long enough for this stuff
to begin seeping through my thick, boney skull.

I did have a Reference to System.Windows.Forms but, as you pointed
out, I didn't fully qualify the name\path to DialogResult.

To help solidify this stuff in my brain, I've tried it both with the
Imports statement and the old VB way by dimming an object variable of
type System.Windows.Forms.DialogResult

Dim diagResult As System.Windows.Forms.DialogResult
Select Case dialog.ShowDialog()
Case diagResult.OK
Case diagResult.Cancel

I guess the Imports statement is better. I messed around with Delphi a
couple years ago and remember that it uses a similar method. Instead
of 'Imports' Delphi has a 'Uses' statement. I didn't use Delphi enough
to get really familliar with it but I can see that VB.Net looks a lot
like it.

I just installed .Net a couple days ago but I downloaded the free pdf
book that MS made available when they first released the .Net beta.
"A Programmer’s Introduction to Visual Basic.NET" by Craig Utley. It's
been very helpful and I've seen very little diference between the beta
and the VS,Net 2003 Pro version that I just installed. I have no
problem understanding what I've read in the book but simply
understanding is not knowing.

Thanks again, you've been very helpful.

Don
Redmond, WA
On Thu, 18 Sep 2003 07:55:42 +0100, "Fergus Cooney"
<fi******@tesco.net> wrote:
Hi Don,
the Namespace that you
need in order to reference the item in question. For DialogResult it's
System.Windows.Forms.

Now you have a choice. You can either give the full name each time you use
DialogResult or you can add an Imports at the top of the code.

Case System.Windows.Forms.DialogResult.Ok
Case System.Windows.Forms.DialogResult.Cancel
or
Imports System.Windows.Forms
: : :
: : :
Case DialogResult.Ok
Case DialogResult.Cancel

I know which I prefer. ;-)

Regards,
Fergus


Nov 20 '05 #14
Howdy Don,

|| Dim diagResult As System.....DialogResult
|| Select Case dialog.ShowDialog()
|| Case diagResult.OK
|| Case diagResult.Cancel

That works fine as you found. You could also have used the Form's
DialogResult.

Select Case dialog.ShowDialog()
Case dialog.DialogResult.OK
Case dialog.DialogResult.Cancel

because, like diagResult it has access to its class' contants. but it
looks a bit confusing that way.
|| Delphi has a 'Uses'

And C# has "using" which I prefer over Imports.
|| I just installed .Net a couple days ago ...

Two days in and you're getting into interactive Macros, and then on your
way into Add-In territory. You're an intrepid explorer - I'm proud of you.
:-))

All the best,
Fergus
MVP [Windows Start button, Shutdown dialogue]
Nov 20 '05 #15
Don
On Thu, 18 Sep 2003 22:15:40 +0100, "Fergus Cooney"
<fi******@tesco.net> wrote:
|| I just installed .Net a couple days ago ...

Two days in and you're getting into interactive Macros, and then on your
way into Add-In territory. You're an intrepid explorer - I'm proud of you.
:-))

All the best,
Fergus
MVP [Windows Start button, Shutdown dialogue]


I lied. I installed it last Friday so it's been almost a week now. <g>

Thanks again,

Don
Redmond, WA

Nov 20 '05 #16
LOL
Nov 20 '05 #17

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

Similar topics

8
by: Max M | last post by:
Yesterday there was an article on Slashdot: http://books.slashdot.org/article.pl?sid=03/09/04/1415210&mode=flat&tid=108&tid=126&tid=156 It is about automatic code generation. I got interrested...
0
by: Rasmus Fogh | last post by:
Someone raised the question of automatic code generation a few weeks back. And yes, we (CCPN) are using automatic Python code generation in a major way. Basically we are making data models in...
4
by: clintonG | last post by:
I'd like to know about application(s) or the name by which the following process is referred which would allow a business analyst to enter the following statements which when submitted would result...
16
by: christopher diggins | last post by:
It appears that the following is not considered a class: template<typename T> class C { }; ? So officially is this considered: a class, a template, a class template, or a template class? I...
4
by: peter | last post by:
How to create a class dynamicaly at run-time? Some documentations in MSDN say that it is feasible using the class "TypeBuilder",but I don't know how to do. Is there anyone who can help me? Sample...
4
by: Nikolay Petrov | last post by:
I am searching for an idea how to optimize some of my code. Let's say I have a class, which exposes some properties: Class Dummy1 Private m_sValue1 As String Private m_sValue2 As String...
1
by: Tyler Carver | last post by:
I have created a web reference in a 2005 web project and need to change out the generated complex class with the business oject that we have already created. In a library project there is a code...
1
by: Mani Jayadevan | last post by:
Sevket, Were you able to resolve the issue? I am facing the same problem. If you have already resolved it please let me know how you did it? Thanks Mani EggHeadCafe - .NET Developer...
6
beacon
by: beacon | last post by:
Hi everybody, I asked my professor for some practice problems to work on over the summer to prep me for Data Structures this fall and he gave me Conway's Game of Life to recreate. I haven't had...
13
by: Tony Johansson | last post by:
Hello! I read in a book and here is a question and the answer that I'm not satisfied with. When should you use the StringBuilder class instead of the String class. 1.When building a string from...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
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...

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.